:root {
  --black: #050505;
  --charcoal: #101010;
  --panel: #181818;
  --panel-2: #222;
  --white: #fff;
  --soft: #d7d7d7;
  --muted: #979797;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e42020;
  --red-text: #ff4d4d;
  --red-dark: #9f1010;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Montserrat, Roboto, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 3.3rem;
  height: 3.3rem;
  object-fit: contain;
}

.brand span {
  line-height: 1;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.desktop-nav a,
.nav-group > button {
  border: 0;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.7rem 0.65rem;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.nav-group > button:hover {
  color: var(--white);
}

.mobile-nav {
  display: none;
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
}

.nav-group {
  position: relative;
  padding-bottom: 0.4rem;
  margin-bottom: -0.4rem;
}

.nav-menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 15rem;
  display: none;
  padding: 0.45rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.nav-menu a {
  display: block;
  border-radius: 4px;
}

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

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: block;
}

.hero {
  position: relative;
  min-height: min(780px, 86vh);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 6vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
}

.page-online-fitness-coaching .hero-media img {
  transform: scaleX(-1);
}

.page-index .hero-media,
.page-weight-loss-coaching .hero-media,
.page-results .hero-media,
.page-contact .hero-media,
.page-wesley-chapel-online-fitness-coach .hero-media,
.page-lutz-online-fitness-coach .hero-media,
.page-land-o-lakes-online-fitness-coach .hero-media {
  background:
    radial-gradient(circle at 72% 34%, rgba(228, 32, 32, 0.42), transparent 30%),
    linear-gradient(90deg, #000 0%, #090909 52%, #190202 100%);
}

.page-index .hero-media img,
.page-weight-loss-coaching .hero-media img,
.page-results .hero-media img,
.page-contact .hero-media img,
.page-wesley-chapel-online-fitness-coach .hero-media img,
.page-lutz-online-fitness-coach .hero-media img,
.page-land-o-lakes-online-fitness-coach .hero-media img {
  width: min(58vw, 920px);
  height: 100%;
  margin-left: auto;
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(78px);
}

.page-weight-loss-coaching .hero-media img {
  width: min(48vw, 820px);
  height: min(68vh, 560px);
  margin: clamp(5.8rem, 10vh, 7rem) clamp(2rem, 6vw, 7rem) 0 auto;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.9;
  transform: none;
}

.page-workout-programs .hero-media {
  background:
    radial-gradient(circle at 74% 38%, rgba(228, 32, 32, 0.3), transparent 30%),
    linear-gradient(90deg, #000 0%, #090909 54%, #1b0505 100%);
}

.page-workout-programs .hero-media img {
  width: min(50vw, 900px);
  height: min(70vh, 580px);
  margin: clamp(5.4rem, 10vh, 6.8rem) clamp(1.5rem, 4vw, 4.5rem) 0 auto;
  object-fit: cover;
  object-position: 56% center;
  opacity: 0.92;
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.page-workout-programs .hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.86) 38%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 78% 38%, rgba(228, 32, 32, 0.12), transparent 36%);
}

.page-plans .hero {
  min-height: min(650px, 76vh);
}

.page-plans .hero-media {
  background:
    radial-gradient(circle at 78% 40%, rgba(228, 32, 32, 0.34), transparent 31%),
    linear-gradient(90deg, #000 0%, #0a0a0a 56%, #1b0303 100%);
}

.page-plans .hero-media img {
  width: min(48vw, 760px);
  height: 82%;
  margin: clamp(5.4rem, 9vh, 6.6rem) clamp(2rem, 6vw, 6rem) 0 auto;
  object-fit: contain;
  object-position: right center;
  opacity: 0.96;
  transform: none;
}

.page-plans .hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.8) 42%, rgba(0, 0, 0, 0.12) 72%),
    radial-gradient(circle at 76% 42%, rgba(228, 32, 32, 0.1), transparent 36%);
}

.page-blog .hero {
  min-height: 440px;
  align-items: end;
}

.page-blog .hero-media {
  background:
    radial-gradient(circle at 78% 38%, rgba(228, 32, 32, 0.38), transparent 28%),
    linear-gradient(90deg, #000 0%, #0d0d0d 58%, #1b0303 100%);
}

.page-blog .hero-media img {
  width: min(46vw, 680px);
  height: 92%;
  margin-left: auto;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.95;
}

.page-blog h1 {
  max-width: 9ch;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.08) 72%),
    radial-gradient(circle at 82% 35%, rgba(228, 32, 32, 0.14), transparent 36%);
}

.hero::after {
  z-index: -1;
  background: linear-gradient(0deg, var(--black), transparent 38%);
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red-text);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Montserrat, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 7.4vw, 6.6rem);
  line-height: 0.86;
}

.page-index h1 {
  max-width: 14ch;
}

.page-results h1 {
  max-width: 16ch;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.9;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  line-height: 0.95;
}

p {
  color: var(--soft);
}

.hero p:not(.eyebrow) {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.85rem 1.05rem;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 4px;
  font-weight: 950;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.content-grid,
.band,
.fit-section,
.split-section,
.faq-section,
.related,
.contact-panel,
.blog-grid,
.final-cta,
.app-showcase,
.article-body,
.trust-section {
  width: min(1160px, calc(100% - 2rem));
  margin: clamp(3.2rem, 7vw, 6.5rem) auto;
}

.article-body {
  width: min(860px, calc(100% - 2rem));
  display: grid;
  gap: 1.25rem;
}

.article-body section {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.legal-body {
  padding: clamp(1.4rem, 4vw, 3rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.article-body h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.legal-body h2 {
  margin-top: clamp(1.6rem, 4vw, 3rem);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.6rem 0 1.4rem;
  padding-left: 1.3rem;
  color: var(--muted);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-body li::marker {
  color: var(--red);
}

.app-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(228, 32, 32, 0.22), transparent 36%),
    var(--charcoal);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.app-showcase img {
  width: 100%;
  justify-self: end;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.55));
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.25rem, 4vw, 2.7rem);
  background:
    linear-gradient(135deg, rgba(228, 32, 32, 0.2), transparent 34%),
    var(--panel);
  border: 1px solid var(--line);
}

.fit-section h2 {
  max-width: 16ch;
}

.fit-section p {
  max-width: 42rem;
}

.fit-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-section li {
  position: relative;
  min-height: 4.2rem;
  padding: 0.85rem 0.95rem 0.85rem 2.25rem;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--soft);
  font-weight: 800;
}

.fit-section li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.15rem;
  width: 0.58rem;
  height: 0.58rem;
  background: var(--red);
  border-radius: 50%;
}

.kit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.kit-list span,
.related a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5rem 0.7rem;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.content-grid article {
  min-height: 14rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--panel);
}

.content-grid article:nth-child(4n + 2),
.content-grid article:nth-child(4n + 3) {
  background: var(--panel-2);
}

.band {
  padding: clamp(1.3rem, 4vw, 2.8rem);
  background:
    linear-gradient(180deg, rgba(228, 32, 32, 0.15), transparent 45%),
    var(--charcoal);
  border: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.card-grid,
.pricing-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.price-card,
.blog-card,
.trust-grid article {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.15rem;
}

.trust-section {
  padding: clamp(1.3rem, 4vw, 2.8rem);
  background: var(--panel);
  border: 1px solid var(--line);
}

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

.trust-grid a,
.content-grid a,
.article-body a,
.faq-item a,
.app-showcase a {
  color: var(--red-text);
  font-weight: 900;
}

.card h3::before {
  content: "✔ ";
  color: var(--red-text);
  font-family: Montserrat, Roboto, Arial, sans-serif;
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  gap: 0.9rem;
  min-height: 4rem;
  padding: 0.85rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.steps li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
}

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

.price-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), var(--shadow);
}

.badge {
  width: fit-content;
  padding: 0.25rem 0.55rem;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Montserrat, sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.price span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: Montserrat, Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.95rem 1rem;
}

.faq-item h3 {
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--soft);
}

.related {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.related div {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.related a:hover {
  background: var(--red);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

form,
.contact-panel aside {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
  background: var(--black);
  color: var(--white);
  font: inherit;
}

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

.blog-card h2 {
  font-size: 1.75rem;
}

.blog-card a {
  text-decoration-color: var(--red);
}

.final-cta {
  padding: clamp(1.5rem, 5vw, 3.2rem);
  background:
    linear-gradient(120deg, rgba(228, 32, 32, 0.3), transparent 46%),
    var(--charcoal);
  border: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 900px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    padding: 0.65rem 1rem;
    background: rgba(5, 5, 5, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  .brand img {
    width: 2.9rem;
    height: 2.9rem;
  }

  .brand span {
    font-size: 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .mobile-nav > summary {
    display: grid;
    gap: 0.28rem;
    width: 3rem;
    height: 3rem;
    place-content: center;
    background: var(--red);
    border-radius: 4px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav > summary::-webkit-details-marker,
  .mobile-nav-group > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav > summary span {
    display: block;
    width: 1.28rem;
    height: 0.16rem;
    background: var(--white);
    border-radius: 999px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 16, 16, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-menu-panel a,
  .mobile-nav-group > summary {
    min-height: 3rem;
    display: flex;
    align-items: center;
    padding: 0.8rem 0.9rem;
    background: var(--black);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav-group > summary {
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-nav-group > summary::after {
    content: "+";
    color: var(--red-text);
    font-size: 1.1rem;
  }

  .mobile-nav-group[open] > summary::after {
    content: "-";
  }

  .mobile-nav-group div {
    display: grid;
    gap: 0.4rem;
    padding: 0.45rem 0 0.15rem 0.75rem;
  }

  .mobile-nav-cta {
    background: var(--red) !important;
    border-color: var(--red) !important;
  }

  .content-grid,
  .split-section,
  .contact-panel,
  .app-showcase,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .pricing-grid,
  .blog-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    max-width: 15ch;
  }

  .page-weight-loss-coaching .hero-media img {
    width: min(82vw, 560px);
    height: 46%;
    margin: 4.5rem 0 0 auto;
    object-fit: cover;
    object-position: 60% center;
    opacity: 0.55;
    transform: none;
  }

  .page-workout-programs .hero-media img {
    width: min(86vw, 620px);
    height: 50%;
    margin: 4.5rem 0 0 auto;
    object-position: 58% center;
    opacity: 0.48;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  }

  .page-plans .hero {
    min-height: 600px;
  }

  .page-plans .hero-media img {
    width: min(76vw, 520px);
    height: 44%;
    margin: 4.4rem 0 0 auto;
    object-fit: contain;
    object-position: right top;
    opacity: 0.54;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.55rem 0.8rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand img {
    width: 2.65rem;
    height: 2.65rem;
  }

  .hero {
    min-height: 610px;
    align-items: end;
    padding: 4rem 1rem 3rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.94) 62%),
      radial-gradient(circle at 70% 20%, rgba(228, 32, 32, 0.18), transparent 38%);
  }

  .hero-media img {
    opacity: 0.78;
  }

  .page-index .hero-media img,
  .page-weight-loss-coaching .hero-media img,
  .page-results .hero-media img,
  .page-contact .hero-media img,
  .page-wesley-chapel-online-fitness-coach .hero-media img,
  .page-lutz-online-fitness-coach .hero-media img,
  .page-land-o-lakes-online-fitness-coach .hero-media img,
  .page-blog .hero-media img {
    width: 100%;
    height: 56%;
    object-position: center top;
    transform: translateY(30px);
  }

  .page-weight-loss-coaching .hero-media img {
    width: 100%;
    height: 48%;
    margin: 4rem 0 0;
    object-position: 64% center;
    opacity: 0.5;
    transform: none;
  }

  .page-workout-programs .hero-media img {
    width: 100%;
    height: 48%;
    margin: 4rem 0 0;
    object-position: 62% center;
    opacity: 0.42;
  }

  .page-plans .hero {
    min-height: 560px;
  }

  .page-plans .hero-media img {
    width: 100%;
    height: 42%;
    margin: 4rem 0 0;
    object-position: center top;
    opacity: 0.48;
  }

  .page-blog .hero {
    min-height: 500px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
    max-width: 12ch;
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.65rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 0.6rem;
  }

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

  .content-grid,
  .band,
  .fit-section,
  .split-section,
  .faq-section,
  .related,
  .contact-panel,
  .blog-grid,
  .final-cta,
  .app-showcase,
  .article-body,
  .trust-section {
    width: min(100% - 1rem, 1160px);
    margin: 2.5rem auto;
  }

  .app-showcase,
  .band,
  .fit-section,
  .trust-section,
  .final-cta {
    padding: 1rem;
  }

  .fit-section ul {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .pricing-grid,
  .blog-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .content-grid article {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
