/* ==========================================================================
   Wellness Club 365 — shared stylesheet
   Figma artboard: 1600px. Display sizes are clamp(min, figma/16 vw, figma px).
   Columns are percentages of the 1452px content box.
   Breakpoints: 1200 (nav → hamburger, grids reflow), 900 (split sections stack), 600 (phone).
   ========================================================================== */

@font-face {
  font-family: 'La Segar';
  src: url('../fonts/LaSegar-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* colour */
  --c-primary: #154d5d;
  --c-accent: #6dbfd7;
  --c-light: #c8f2fc;
  --c-light-2: #e0f8fd;
  --c-text: #737373;
  --c-text-2: #808080;
  --c-ink: #1b262a;
  --c-border: #c1c1c1;
  --c-step: #feffb2;
  --c-white: #fff;
  --c-line: rgba(21, 77, 93, 0.2);

  /* type */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-accent: 'La Segar', var(--font-serif);

  --fs-h1: clamp(46px, 6.2042vw, 99.267px);
  --fs-h2: clamp(32px, 4.0625vw, 65px);
  --fs-h2-sm: clamp(30px, 3.4375vw, 55px);
  --fs-h3: clamp(24px, 2.3294vw, 37.27px);
  --fs-h4: clamp(22px, 1.9181vw, 30.69px);
  --fs-h5: clamp(19px, 1.6681vw, 26.69px);
  --fs-lead: clamp(17px, 1.5625vw, 25px);
  --fs-body: clamp(15px, 1.0625vw, 17px);
  --fs-quote: clamp(16px, 1.3125vw, 21px);
  --fs-btn: clamp(16px, 1.3181vw, 21.09px);
  --fs-nav: clamp(14px, 1.0625vw, 17px);
  --fs-card-sub: clamp(14px, 0.9926vw, 15.881px);
  --fs-card-body: clamp(13px, 0.9217vw, 14.747px);

  /* layout */
  --gutter: max(16px, min(4.625vw, 74px));
  --container: 1452px;
  --topbar-h: 23px;
  --header-h: clamp(64px, 6.1875vw, 99px);

  /* buttons */
  --btn-h: clamp(46px, 3.6908vw, 59.052px);
  --btn-w: clamp(150px, 12.3244vw, 197.191px);
  --btn-radius: clamp(8px, 0.6591vw, 10.545px);
  --btn-pad-x: clamp(16px, 1.5313vw, 24.5px); /* browser Poppins is ~7% wider than Figma's; keeps outline buttons at Figma widths */
  --btn-gap: clamp(8px, 0.6591vw, 10.545px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; } /* in-page links (#best-sellers, #faqs …) glide; anchors clear the sticky header via [id] scroll-margin */
}
body {
  margin: 0;
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, iframe { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--c-primary);
}
h1 { font-size: var(--fs-h1); line-height: 0.949; letter-spacing: -0.04em; } /* Figma 71.2% of Playfair's 1.333 natural line height */
h2 { font-size: var(--fs-h2); line-height: 1.07; letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); line-height: 0.949; }
h4 { font-size: var(--fs-h4); line-height: 1.173; font-weight: 700; }
h5 { font-size: var(--fs-h5); line-height: 1.349; font-weight: 500; }
h6 { font-size: var(--fs-body); font-family: var(--font-sans); font-weight: 600; }

em.accent, .accent-italic { font-style: italic; color: var(--c-accent); }
.capitalize { text-transform: capitalize; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  min-height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border: 1.054px solid transparent;
  border-radius: var(--btn-radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-btn);
  line-height: 1.5;
  color: var(--c-primary);
  text-align: center;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn img { flex: none; }
.btn--fixed { width: var(--btn-w); padding-inline: 0; }
.btn--light { background: var(--c-light); }
.btn--light:hover { background: #b3ebf8; }
.btn--accent { background: var(--c-accent); color: var(--c-white); }
.btn--accent:hover { background: #5ab2cc; }
.btn--outline {
  border-color: var(--c-primary);
  filter: drop-shadow(0 10.545px 12.654px rgba(0, 0, 0, 0.07)) drop-shadow(0 1.054px 1.054px rgba(0, 0, 0, 0.04));
  background: transparent;
}
.btn--outline:hover { background: var(--c-light); }
.btn--pill {
  min-height: 0;
  padding: 12px 32px;
  border: 1.5px solid var(--c-primary);
  border-radius: 100px;
  font-size: var(--fs-quote);
}
.btn--pill:hover { background: var(--c-light); }
.btn .icon-phone { width: clamp(16px, 1.25vw, 20px); height: auto; }
.btn .icon-drip { width: clamp(20px, 1.6344vw, 26.15px); height: auto; }
.btn .icon-cal { width: clamp(14px, 1.0625vw, 17px); height: auto; }

/* ---------- Top bar ---------- */
.topbar {
  height: var(--topbar-h);
  background: var(--c-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.topbar p {
  font-weight: 500;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 24px;
  letter-spacing: -0.2px;
  color: var(--c-primary);
  white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-white);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(21, 77, 93, 0.08); }
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-h);
}
.site-nav { display: contents; }
.nav { display: flex; align-items: center; }
.nav a {
  position: relative;
  font-weight: 500;
  font-size: var(--fs-nav);
  line-height: 1.5;
  color: var(--c-primary);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav a:hover { color: var(--c-accent); }
.nav a[aria-current="page"] { color: var(--c-accent); }
.nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-accent);
}
.nav--left { gap: clamp(20px, 2.78vw, 44.5px); margin-right: auto; }
.nav--right { gap: clamp(20px, 3.06vw, 49px); }
.header-cta { margin-left: clamp(24px, 5.6875vw, 91px); }
.logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: clamp(6px, 0.875vw, 14px);
  width: clamp(84px, 9.3125vw, 149px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 32.2%;
  overflow: hidden;
}
.logo img {
  position: absolute;
  left: -13.54%;
  top: -9.38%;
  width: 127.08%;
  height: 127.08%;
  max-width: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 20px 10px 0;
  border: 0;
  background: none;
  color: var(--c-primary);
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle:focus:not(:focus-visible) { outline: none; }
.nav-toggle:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; border-radius: 4px; }
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-light);
  color: #000;
  padding-top: 38px;
  padding-bottom: 29.8px;
}
.footer-inner { width: min(1360px, 100% - 2 * max(16px, min(7.5vw, 120px))); margin-inline: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 33.824% 34.559% 1fr auto;
  align-items: start;
}
.footer-logo {
  position: relative;
  display: block;
  width: 131px;
  aspect-ratio: 1;
  margin-left: 2px;
  border-radius: 36.6%;
  overflow: hidden;
}
.footer-logo img { position: absolute; left: -13.54%; top: -9.38%; width: 127.08%; height: 127.08%; max-width: none; }
.footer-phone { margin-top: 18px; }
.footer-phone::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  margin-bottom: 5px;
  border-radius: 2px;
  background: var(--c-accent);
}
.footer-phone a { font-weight: 600; font-size: 20px; line-height: 1.5; }
.footer-phone p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: rgba(0, 0, 0, 0.6); }
.footer-label {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.96px;
  color: rgba(0, 0, 0, 0.5);
}
.footer-col { padding-top: 32px; }
.footer-links {
  display: grid;
  grid-template-columns: 42.55% auto;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  row-gap: 9.5px;
  justify-content: start;
}
.footer-links a { font-weight: 500; font-size: 15px; line-height: 1.5; }
.footer-links a:hover, .footer-contact a:hover, .footer-legal a:hover { color: var(--c-primary); text-decoration: underline; }
.footer-links a[aria-current="page"] { color: var(--c-primary); }
.footer-contact li + li { margin-top: 9.5px; }
.footer-contact li { font-size: 15px; line-height: 1.5; }
.footer-contact .strong { font-weight: 500; }
@media (max-width: 900px) {
  .footer-contact li { font-weight: 500; } /* phone and email read as one pair on small screens */
}
.chat-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 107px;
  height: 107px;
  margin-top: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--c-accent);
  transition: transform .2s ease;
}
.chat-button:hover { transform: scale(1.05); }
.chat-button img { width: 47.966px; height: 47.966px; }
.footer-disclaimer {
  margin-top: 50.6px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 300;
  font-size: 10px;
  line-height: 1.8;
  color: var(--c-text);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44.4px;
  padding-top: 19px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
}
.footer-legal { font-weight: 500; white-space: pre; }

/* ---------- Shared components ---------- */

/* media box: img fills a ratio-locked box without letting content resize it */
.media { position: relative; overflow: hidden; }
.media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* split: two columns, vertically centred */
.split { display: grid; align-items: center; }

/* section heading */
.section-title { text-align: center; }

/* numbered step list */
.steps { counter-reset: step; }
.step + .step { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(0, 0, 0, 0.2); }
.step-head { display: flex; align-items: center; gap: 15px; }
.step-num {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(32px, 2.375vw, 38px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--c-step);
  font-weight: 500;
  font-size: clamp(17px, 1.3125vw, 21px);
  line-height: 1;
  color: var(--c-primary);
}
.step-head h5 { white-space: nowrap; }
.step p { margin-top: 17px; max-width: 702px; }

/* service card */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.418vw, 22.688px);
  padding: clamp(16px, 1.7016vw, 27.225px);
  border: 1.134px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(12px, 1.1344vw, 18.15px);
  background: var(--c-white);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.card--featured {
  background: linear-gradient(to bottom, var(--c-light), var(--c-white));
  filter: drop-shadow(0 9.075px 13.612px rgba(232, 184, 79, 0.15));
}
.card:not(.card--featured):hover {
  transform: translateY(-4px);
  border-color: var(--c-light);
  box-shadow: 0 14px 30px rgba(21, 77, 93, 0.12);
}
.card:not(.card--featured):hover .card-btn { background: var(--c-light); }
.card-media { aspect-ratio: 288.13 / 290.4; border-radius: clamp(6px, 0.5672vw, 9.075px); background: var(--c-white); }
.card-body { display: flex; flex-direction: column; gap: clamp(8px, 0.8508vw, 13.612px); }
.card-head { display: flex; flex-direction: column; gap: clamp(10px, 1.625vw, 26px); }
.card-head h4 { font-variant-numeric: lining-nums; }
.card-sub { font-weight: 600; font-size: var(--fs-card-sub); line-height: 1.4; color: var(--c-accent); }
.card-text { max-width: 86%; font-size: var(--fs-card-body); line-height: 1.5; }
.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: clamp(10px, 0.8508vw, 13.612px) clamp(12px, 1.1344vw, 18.15px);
  border: 1.134px solid var(--c-primary);
  border-radius: clamp(6px, 0.5672vw, 9.075px);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-card-sub);
  line-height: normal;
  color: var(--c-primary);
  white-space: nowrap;
  transition: background-color .2s ease;
}
.card--featured .card-btn { border-color: transparent; background: var(--c-light); }
.card-btn::after { content: ''; position: absolute; inset: 0; border-radius: inherit; } /* whole card clickable */

/* sliding carousel: JS sets data-pos on each slide; each page places the positions */
.carousel-track { position: relative; overflow: hidden; touch-action: pan-y; }
.carousel-track > * {
  position: absolute;
  top: 0;
  transition: left .6s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1);
}
.carousel-track > .is-jump { transition: none; }
.carousel-track img { -webkit-user-drag: none; user-select: none; }
@media (prefers-reduced-motion: reduce) { .carousel-track > * { transition: none; } }

/* round carousel arrow */
.arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: none;
  transform: translateY(-50%);
}
.arrow--soft {
  width: clamp(40px, 3.1vw, 49.6px);
  height: clamp(40px, 3.1vw, 49.6px);
  border: 0.8px solid #ccdfe3;
  border-radius: 50%;
  background: var(--c-light);
}
.arrow--soft img { width: 8px; height: 14px; }
.arrow--solid img { width: clamp(30px, 2.1618vw, 34.59px); height: auto; }
.arrow--solid.arrow--next img { transform: rotate(90deg); }
.arrow--solid.arrow--prev img { transform: rotate(90deg) scaleY(-1); }
.arrow:hover { filter: brightness(0.95); }

/* benefit mini card */
.benefit {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.8542vw, 13.667px);
  min-height: clamp(100px, 7.25vw, 116px);
  padding: clamp(12px, 1.0678vw, 17.084px);
  border: 0.854px solid var(--c-border);
  border-radius: clamp(14px, 1.2813vw, 20.501px);
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: clamp(40px, 2.9897vw, 47.835px);
  aspect-ratio: 1;
  border-radius: clamp(10px, 0.8542vw, 13.667px);
  background: var(--c-light);
}
.benefit-icon img { width: 50%; height: auto; }
.benefit p { font-family: var(--font-ui); font-weight: 600; font-size: clamp(12.5px, 0.8542vw, 13.667px); line-height: normal; }

/* testimonial card */
.t-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(360px, 26.1875vw, 419px);
  padding: 15px clamp(18px, 1.875vw, 30px) 26px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 20px;
  background: var(--c-white);
}
.t-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-left: calc(8px - clamp(18px, 1.875vw, 30px)); }
.t-quote { width: clamp(40px, 3.125vw, 50px); height: auto; }
.t-google { width: clamp(32px, 2.4375vw, 39px); height: auto; margin-top: 11px; margin-right: calc(33px - clamp(18px, 1.875vw, 30px)); }
.t-text { margin-top: 33px; font-size: var(--fs-quote); line-height: 1.5; text-align: left; }
.t-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 24px; }
.t-name { font-weight: 600; font-size: clamp(16px, 1.125vw, 18px); line-height: 1.5; color: var(--c-primary); white-space: pre; }
.t-stars { width: 106px; height: 18px; margin-top: 11px; }
.t-more {
  margin-bottom: 7px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(15px, 1.125vw, 18px);
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-position: from-font;
}

/* location chip */
.chip {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.625vw, 10px);
  min-width: 0;
  height: clamp(38px, 2.75vw, 44px);
  padding-inline: clamp(10px, 0.875vw, 14px);
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  background: var(--c-white);
  font-weight: 500;
  font-size: clamp(12px, 0.875vw, 14px);
  line-height: 1.5;
  color: var(--c-primary);
  white-space: nowrap;
}
.chip img { flex: none; width: 16px; height: 16px; }

/* ==========================================================================
   Homepage (scoped under .page-home)
   ========================================================================== */

/* ---------- Hero ---------- */
.page-home .hero {
  position: relative;
  aspect-ratio: 1600 / 760; /* grows past this only if content needs more room */
  background: linear-gradient(123.64deg, #fff 0.78%, var(--c-light) 111.51%);
  overflow: hidden;
  isolation: isolate;
}
.page-home .hero-media { position: absolute; inset: 0; z-index: -1; }
.page-home .hero-stage {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1600 / 760;
  isolation: isolate;
}
.page-home .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-home .hero-pattern {
  position: absolute;
  left: 39.375%;
  top: 0;
  width: 60.625%;
  height: 100%;
  overflow: hidden;
  mix-blend-mode: soft-light;
}
.page-home .hero-pattern img { position: absolute; left: 0; top: -11.58%; width: 106.7%; height: 136.19%; max-width: none; }
.page-home .hero-people { position: absolute; left: 40.525%; top: 0; width: 53.711%; height: 100%; max-width: none; }
.page-home .hero-content {
  padding-top: clamp(40px, 5.375vw, 86px);
  padding-bottom: clamp(48px, 6.375vw, 102px);
}
.page-home .hero-text { width: 30.854%; }
.page-home .hero h1 { width: 93.527%; }
.page-home .hero h1 span { display: block; }
.page-home .hero-lead {
  margin-top: clamp(14px, 1.4125vw, 22.6px);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.page-home .hero-actions { display: flex; flex-wrap: wrap; gap: clamp(12px, 1.1875vw, 19px); margin-top: clamp(20px, 1.9938vw, 31.9px); }
.page-home .hero-rating {
  display: flex;
  align-items: center;
  margin-top: clamp(18px, 1.9125vw, 30.6px);
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 24px;
  letter-spacing: -0.2px;
  color: var(--c-ink);
}
.page-home .hero-rating img { width: clamp(130px, 10vw, 160px); height: auto; margin-inline: 10px 14px; }
.page-home .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 13.26px;
  min-height: clamp(44px, 3.375vw, 54px);
  margin-top: clamp(24px, 2.5625vw, 41px);
  padding: 6px 20px 6px 15.9px;
  border-radius: 22px;
  background: rgba(200, 242, 252, 0.48);
  font-size: clamp(16px, 1.3125vw, 21px);
  line-height: 1.5;
  color: var(--c-primary);
  white-space: nowrap;
}
.page-home .hero-pill img { width: clamp(17px, 1.3026vw, 20.841px); height: auto; }

/* ---------- Features strip ---------- */
.page-home .features {
  display: grid;
  grid-template-columns: 31.8125% 35.875% 32.3125%;
  border-bottom: 1px solid var(--c-line);
}
.page-home .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 4.5625vw, 73px) 16px clamp(40px, 4.5938vw, 73.5px);
  text-align: center;
}
.page-home .feature + .feature { border-left: 1px solid var(--c-line); }
.page-home .feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(96px, 8.625vw, 138px);
  aspect-ratio: 1;
  background: url('../images/icons/feature-ring.svg') center / 100% 100% no-repeat;
}
.page-home .feature-icon--full { background: none; }
.page-home .feature-icon img { height: auto; }
.page-home .feature-icon--car img { width: 57.97%; }
.page-home .feature-icon--tele img { width: 42.97%; }
.page-home .feature-icon--full img { width: 100%; }
.page-home .feature h3 { margin-top: clamp(20px, 2.25vw, 36px); }
.page-home .feature p { margin-top: clamp(12px, 1.4125vw, 22.6px); }

/* ---------- Wellness made simple ---------- */
.page-home .intro { padding-block: clamp(32px, 3.125vw, 50px) clamp(48px, 4.875vw, 78px); }
.page-home .intro .split { grid-template-columns: 50.826% 43.044%; column-gap: 5.579%; }
.page-home .intro-media { aspect-ratio: 738 / 491; border-radius: clamp(20px, 2.25vw, 36px); }
.page-home .intro-media img { object-position: 50% 57.9%; }
.page-home .intro-text p { margin-top: clamp(16px, 1.5vw, 24px); }
.page-home .intro-text .btn { margin-top: clamp(24px, 2.5vw, 40px); }

/* ---------- Services ---------- */
.page-home .services {
  position: relative;
  padding-block: clamp(56px, 5.75vw, 92px) clamp(64px, 7.3125vw, 117px);
  background: url('../images/services-bg.jpg') center / cover no-repeat;
}
.page-home .services h2 { line-height: 0.949; letter-spacing: -0.02em; }
.page-home .services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.875%;
  margin-top: clamp(40px, 5.3125vw, 85px);
}
.page-home .card-media--mobile-iv img { object-position: 34.55% 50%; }

/* ---------- Newsletter ---------- */
.newsletter { padding-top: clamp(48px, 5.5vw, 88px); }
.nl-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(32px, 3.5625vw, 57px) clamp(20px, 2.3125vw, 37px) clamp(32px, 3.3125vw, 53px);
  border-radius: clamp(20px, 1.875vw, 30px);
}
.nl-layer { position: absolute; inset: 0; z-index: -1; }
.nl-layer--img { width: 100%; height: 100%; object-fit: cover; }
.nl-layer--burn { background: var(--c-light); mix-blend-mode: color-burn; }
.nl-layer--fade { background: linear-gradient(235.96deg, rgba(200, 242, 252, 0) 0.511%, rgba(224, 248, 253, 0) 35.265%, #fff 82.332%); }
.nl-bag { position: absolute; z-index: -1; left: 61.95%; top: 2.01%; width: 38.8%; height: auto; max-width: none; }
.nl-content { position: relative; z-index: 0; width: 48%; }
.nl-content h2 { white-space: nowrap; }
.nl-highlight {
  position: relative;
  color: var(--c-accent);
  padding-right: 0.06em;
  white-space: nowrap;
}
/* the highlight sits behind the text, so the line above keeps its descenders (the "g" in "Mailing") */
.nl-highlight::before { content: ''; position: absolute; inset: 12.2% 0 1.5%; z-index: -1; background: var(--c-light); }
.nl-highlight, .nl-dollar { line-height: 1; }
.nl-dollar { font-family: var(--font-accent); }
.nl-sub { margin-top: clamp(14px, 1.4594vw, 23.35px); color: var(--c-text-2); }
.nl-form { margin-top: clamp(24px, 2.2813vw, 36.5px); }
.nl-row { width: 93.85%; } /* 620px of the 660px column */
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nl-row + .nl-row { margin-top: 16px; }
.nl-field label { display: block; font-weight: 600; font-size: 14px; line-height: 1.5; color: var(--c-accent); }
.nl-field label small { font-size: 11px; }
.nl-field input {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.33);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.29);
  color: var(--c-ink);
  font-size: 15px;
}
.nl-field input:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; }
.nl-checks { width: max-content; max-width: 100%; margin-top: 40px; white-space: nowrap; }
.nl-check {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  color: var(--c-text-2);
  cursor: pointer;
}
.nl-check + .nl-check { margin-top: 21.5px; }
.nl-check input {
  flex: none;
  appearance: none;
  -webkit-appearance: none;
  width: 0.72em;
  height: 0.72em;
  margin: 0 0.12em 0 0.04em;
  border: 1px solid var(--c-text-2);
  border-radius: 1px;
  background: transparent;
  transform: translateY(0.06em);
  cursor: pointer;
}
.nl-check input:checked {
  border-color: var(--c-primary);
  background: var(--c-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.3 2.3 4.7-5' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}
.nl-check input:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.nl-form .btn { margin-top: 40.5px; border: 0; }
.nl-error { width: 93.85%; margin-top: 24px; padding: 12px 16px; border-left: 3px solid #c0392b; border-radius: 8px; background: #fdecea; font-weight: 500; font-size: 14px; line-height: 1.5; color: #8e2a20; }
.nl-error + .btn { margin-top: 24px; }

/* ---------- Happy patients ---------- */
.page-home .patients { padding-top: clamp(48px, 5.5vw, 88px); }
.page-home .patients-intro { width: 80.51%; margin: clamp(16px, 1.5281vw, 24.45px) auto 0; text-align: center; }
.page-home .patients-intro strong { font-weight: 700; color: var(--c-accent); }
.page-home .patients-carousel { position: relative; margin-top: clamp(28px, 2.875vw, 46px); }
.page-home .patients-track { aspect-ratio: 1452 / 429; }
.page-home .patients-track > * { height: 100%; border-radius: 20px; }
/* slides move between a wide centre slot and narrow side slots; keep each photo's faces in frame in both */
.page-home .patients-media--stretch img { object-position: 45% 40%; }
.page-home .patients-media--couch img { object-position: 58% 35%; }
.page-home .patients-media--couple img { object-position: 50% 0; }
.page-home .patients-track > [data-pos="0"] { left: 0; width: 23.967%; }
.page-home .patients-track > [data-pos="1"] { left: 25.344%; width: 49.311%; }
.page-home .patients-track > [data-pos="2"] { left: 76.033%; width: 23.967%; }
.page-home .patients-track > [data-pos="prev"] { left: -25.344%; width: 23.967%; }
.page-home .patients-track > [data-pos="next"] { left: 101.377%; width: 23.967%; }
.page-home .patients-carousel .arrow--prev { left: -1.722%; }
.page-home .patients-carousel .arrow--next { right: -1.694%; }

/* ---------- How it works ---------- */
.page-home .how { padding-top: clamp(64px, 7.375vw, 118px); }
.page-home .how .split { grid-template-columns: 54.132% 40.84%; column-gap: 5.028%; }
.page-home .how-intro { margin-top: clamp(16px, 1.5281vw, 24.45px); }
.page-home .how .steps { margin-top: clamp(28px, 2.6875vw, 43px); max-width: 702px; }
.page-home .how-media { position: relative; }
.page-home .how-media .media { aspect-ratio: 593 / 691; border-radius: 20px; }
.page-home .how-media .media img { object-position: 75.27% 50%; }
/* Figma: centred 462px box, both lines on one line each */
.page-home .callout {
  position: absolute;
  left: 50%;
  bottom: 5.35%;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 10px 21px;
  border-radius: 15px;
  background: rgba(200, 242, 252, 0.94);
  color: var(--c-primary);
  font-size: clamp(12px, 1.0625vw, 17px);
  white-space: nowrap;
  transform: translateX(-50%);
}
.page-home .callout strong { display: block; font-weight: 600; color: var(--c-accent); }
.page-home .callout a { display: flex; align-items: center; gap: 8px; }
.page-home .callout img { flex: none; width: 20px; height: auto; }

/* ---------- IV therapy benefits ---------- */
.page-home .benefits { padding-top: clamp(64px, 7.375vw, 118px); }
.page-home .benefits .split { grid-template-columns: 49.174% 47.521%; column-gap: 3.305%; }
.page-home .benefits-media { aspect-ratio: 714 / 470; border-radius: 25px; background: var(--c-light-2); }
.page-home .benefits-text p { margin-top: clamp(20px, 2.4688vw, 39.5px); }
.page-home .benefits-text .btn { margin-top: clamp(24px, 2.5938vw, 41.5px); }
.page-home .benefits-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.584%;
  margin-top: clamp(40px, 4.9375vw, 79px);
}

/* ---------- Testimonials ---------- */
.testimonials { padding-block: clamp(64px, 7.4375vw, 119px) clamp(48px, 4.5vw, 72px); }
.t-carousel { position: relative; margin-top: clamp(40px, 4.9656vw, 79.45px); padding-inline: 2.41%; }
.t-track > * { height: 100%; }
.t-track > [data-pos="0"] { left: 0; width: 32.272%; }
.t-track > [data-pos="1"] { left: 33.864%; width: 32.272%; }
.t-track > [data-pos="2"] { left: 67.728%; width: 32.272%; }
.t-track > [data-pos="prev"] { left: -33.864%; width: 32.272%; }
.t-track > [data-pos="next"] { left: 101.592%; width: 32.272%; }
.t-carousel .arrow--prev { left: -0.895%; }
.t-carousel .arrow--next { right: -0.909%; }
.testimonials-cta { display: flex; justify-content: center; margin-top: clamp(40px, 4.3125vw, 69px); }

/* ---------- Instagram ---------- */
.insta {
  padding-block: clamp(40px, 3.8031vw, 60.85px) clamp(36px, 3.1781vw, 50.85px);
  background: rgba(236, 236, 236, 0.36);
  text-align: center;
}
.insta h2 { font-size: var(--fs-h2-sm); line-height: normal; letter-spacing: 0; }
.insta-sub { width: 83.75%; margin: 12px auto 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.949%;
  width: 94.353%;
  margin: clamp(32px, 3.3125vw, 53px) auto 0;
}
.insta-post { position: relative; display: block; aspect-ratio: 439 / 492; border-radius: 22.888px; }
.insta-post .insta-icon { position: absolute; inset: auto; height: auto; object-fit: contain; }
.insta-post--1 .insta-icon { top: 5.39%; right: 4.8%; width: 11.1%; }
.insta-post--2 .insta-icon { top: 7.57%; right: 5.12%; width: 12.07%; }
.insta-post--3 .insta-icon { top: 5.91%; right: 5.06%; width: 12.07%; }
.insta-post > img:first-child { transition: transform .4s ease; }
.insta-post:hover > img:first-child { transform: scale(1.03); }
.insta .btn--pill { margin-top: clamp(32px, 3.3125vw, 53px); }

/* ---------- Service areas ---------- */
.areas { padding-block: clamp(56px, 6.3125vw, 101px) clamp(48px, 4.375vw, 70px); }
.areas .split { grid-template-columns: 55.716% 42.218%; column-gap: 2.066%; align-items: stretch; }
.areas-text > p { padding: 0 11.5% 29.5px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.2); } /* Figma: text 716 wide, line 809 */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 33px;
  padding: clamp(14px, 1.5938vw, 25.5px) clamp(14px, 1.5vw, 24px);
  border: 1px solid var(--c-accent);
  border-radius: 16px;
  background: var(--c-white);
}
.map { border-radius: 26px; background: var(--c-light-2); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  /* header → hamburger */
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: calc(-1 * var(--gutter));
    right: calc(-1 * var(--gutter));
    display: none;
    padding: calc(var(--header-h) * 0.35 + 24px) var(--gutter) 28px;
    background: var(--c-white);
    box-shadow: 0 16px 24px rgba(21, 77, 93, 0.1);
  }
  .site-header.is-open .site-nav { display: block; }
  .site-nav .nav { flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .site-nav .nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(21, 77, 93, 0.1);
    font-size: 17px;
  }
  .site-nav .nav a[aria-current="page"]::after { left: 0; right: auto; bottom: 10px; width: 32px; }

  /* order: logo (left) … Call Now, menu button (right) */
  .logo {
    position: relative; /* stays the containing block for its cropped img */
    left: auto;
    top: auto;
    order: 1;
    align-self: flex-start;
    margin-top: clamp(6px, 0.875vw, 14px);
    transform: none;
  }
  .header-cta { order: 2; margin-left: auto; }
  .nav-toggle { order: 3; margin-left: 8px; padding: 10px 0 10px 10px; width: 40px; }

  /* footer: chat becomes a floating button */
  .footer-top { grid-template-columns: 33.824% 34.559% 1fr; }
  .chat-button { position: fixed; z-index: 40; right: 16px; bottom: 16px; width: 64px; height: 64px; margin: 0; box-shadow: 0 8px 20px rgba(21, 77, 93, 0.25); }
  .chat-button img { width: 30px; height: 30px; }

  /* homepage grids reflow */
  .page-home .step-head h5 { white-space: normal; }
  .page-home .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .page-home .benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 900px) {
  /* hero: text sits on the photo; the photo is anchored on the subject and a
     scrim sits under the text (strength sized from measured photo luminance) */
  .page-home .hero {
    --hero-pt: clamp(150px, 34vw, 280px);
    aspect-ratio: auto;
  }
  .page-home .hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
  .page-home .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(12, 45, 55, 0) 0,
      rgba(12, 45, 55, 0.2) calc(var(--hero-pt) - 120px),
      rgba(12, 45, 55, 0.75) calc(var(--hero-pt) - 8px),
      rgba(12, 45, 55, 0.75) 100%);
  }
  .page-home .hero-stage {
    top: 0;
    bottom: auto;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-67.4%);
  }
  .page-home .hero-content { padding-top: var(--hero-pt); padding-bottom: 36px; text-align: center; }
  .page-home .hero-actions { margin-top: 20px; }
  .page-home .hero-rating { margin-top: 16px; }
  .page-home .hero-pill { margin-top: 18px; }
  .page-home .hero-text { width: 100%; }
  .page-home .hero h1 { width: auto; color: var(--c-white); }
  .page-home .hero-lead { max-width: 560px; margin: 20px auto 0; color: var(--c-white); }
  .page-home .hero-actions { justify-content: center; }
  .page-home .hero .btn--outline { border-color: var(--c-white); color: var(--c-white); }
  .page-home .hero .btn--outline:hover { background: rgba(255, 255, 255, 0.15); }
  .page-home .hero-rating { justify-content: center; color: var(--c-white); }
  .page-home .hero-rating img { filter: brightness(0) invert(1); }
  .page-home .hero-pill { background: rgba(200, 242, 252, 0.92); }

  /* centre content on tablet/phone (footer, forms, step lists, chips and
     testimonial quotes stay left-aligned) */
  .page-home .intro-text,
  .page-home .card-body,
  .nl-content > h2,
  .nl-sub,
  .page-home .how-text > h2,
  .page-home .how-intro,
  .page-home .benefits-text,
  .areas-text > p { padding-right: 0; text-align: center; }
  .page-home .card-text { margin-inline: auto; }
  .nl-form .btn { display: flex; margin-inline: auto; }
  .page-home .benefit { align-items: center; text-align: center; }

  /* split sections stack */
  .page-home .intro .split,
  .page-home .how .split,
  .page-home .benefits .split,
  .areas .split { grid-template-columns: minmax(0, 1fr); row-gap: 36px; }
  .page-home .how-media { order: 2; }
  .map { aspect-ratio: 613 / 537; }

  /* newsletter: content full width, bag becomes its own band below it */
  .nl-card { display: flex; flex-direction: column; }
  .nl-content { width: 100%; }
  .nl-content h2 { white-space: normal; }
  .nl-row { width: 100%; }
  .nl-checks { width: auto; white-space: normal; }
  .nl-bag {
    position: relative;
    left: auto;
    top: auto;
    z-index: 0;
    display: block;
    order: 2;
    align-self: center;
    width: min(62%, 340px);
    margin: 32px auto calc(-1 * clamp(32px, 3.3125vw, 53px)); /* sits flush on the card's bottom edge */
  }

  /* testimonials: one card */
  .t-track { max-width: 446px; margin-inline: auto; }
  .t-track > [data-pos="0"] { left: 0; width: 100%; }
  .t-track > [data-pos="1"] { left: 104%; width: 100%; }
  .t-track > [data-pos="2"] { left: 208%; width: 100%; }
  .t-track > [data-pos="prev"] { left: -104%; width: 100%; }
  .t-track > [data-pos="next"] { left: 312%; width: 100%; }

  /* callout: body size again once the image is full width */
  .page-home .callout { font-size: var(--fs-body); }
  .t-carousel { padding-inline: 48px; }
  .t-carousel .arrow--prev { left: 0; }
  .t-carousel .arrow--next { right: 0; }

  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .footer-brand { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .footer-phone { margin-top: 0; }
  .footer-col { padding-top: 0; }
  .footer-disclaimer { margin-top: 28px; padding-top: 20px; }
  .footer-bottom { margin-top: 24px; }

  /* headings: no forced line breaks on tablet/phone */
  h1 br, h2 br, h3 br { display: none; }

  /* How it works reads better left-aligned */
  .page-home .how-text > h2,
  .page-home .how-intro { text-align: left; }

  /* 30–40px between sections */
  .page-home .intro { padding-block: 36px; }
  .page-home .services { padding-block: 40px; }
  .page-home .services-grid { margin-top: 28px; }
  .newsletter,
  .page-home .patients,
  .page-home .how,
  .page-home .benefits { padding-top: 36px; }
  .page-home .patients-carousel { margin-top: 24px; }
  .page-home .benefits-grid { margin-top: 28px; }
  .testimonials { padding-block: 36px; }
  .t-carousel { margin-top: 28px; }
  .testimonials-cta { margin-top: 28px; }
  .insta { padding-block: 36px; }
  .insta-grid,
  .insta .btn--pill { margin-top: 28px; }
  .areas { padding-block: 36px; }
  .page-home .split { row-gap: 28px; }
}

@media (max-width: 600px) {
  .topbar p { font-size: 12px; }
  .header-cta { width: auto; min-height: 40px; padding-inline: 12px; font-size: 15px; }
  .logo { margin-top: 6px; width: 84px; }

  .page-home .hero-actions .btn { flex: 1 1 0; width: auto; }
  .page-home .hero-pill { gap: 10px; max-width: 100%; padding-inline: 14px 16px; font-size: clamp(12px, 3.75vw, 15px); }

  .page-home .features { grid-template-columns: minmax(0, 1fr); }
  .page-home .feature + .feature { border-left: 0; border-top: 1px solid var(--c-line); }
  .page-home .feature { padding-block: 36px; }

  .page-home .services-grid { grid-template-columns: minmax(0, 1fr); }
  .page-home .card-text { max-width: none; }

  .nl-row { grid-template-columns: minmax(0, 1fr); }
  .nl-content h2 { font-size: 26px; }
  .nl-check { font-size: 13px; }
  .nl-check + .nl-check { margin-top: 14px; }

  .page-home .patients-intro { width: 100%; }
  .page-home .patients-track { aspect-ratio: 4 / 3; }
  .page-home .patients-track > [data-pos="0"] { left: -104%; width: 100%; }
  .page-home .patients-track > [data-pos="1"] { left: 0; width: 100%; }
  .page-home .patients-track > [data-pos="2"] { left: 104%; width: 100%; }
  .page-home .patients-track > [data-pos="prev"] { left: -208%; width: 100%; }
  .page-home .patients-track > [data-pos="next"] { left: 208%; width: 100%; }
  .page-home .callout { white-space: normal; }
  .page-home .patients-carousel .arrow--prev { left: 8px; }
  .page-home .patients-carousel .arrow--next { right: 8px; }

  .page-home .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

  .t-carousel { padding-inline: 0; }
  .t-carousel .arrow { top: auto; bottom: -58px; transform: none; }
  .t-carousel .arrow--prev { left: calc(50% - 44px); }
  .t-carousel .arrow--next { right: calc(50% - 44px); }
  .testimonials-cta { margin-top: 88px; }

  .insta-sub { width: 100%; }
  .insta-grid {
    display: flex;
    gap: 14px;
    width: auto;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .insta-grid::-webkit-scrollbar { display: none; }
  .insta-grid { cursor: grab; }
  .insta-grid.is-dragging { cursor: grabbing; scroll-snap-type: none; }
  .insta-grid img { -webkit-user-drag: none; user-select: none; }
  .insta-post { flex: 0 0 78%; scroll-snap-align: center; }

  .chip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 10px; }

  .footer-top { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ==========================================================================
   Inner pages — shared components (Mobile IV, Weight Loss, Peptides, TRT …)
   Measured from the 3x "Mobile IV Therapy" export (1600 artboard).
   ========================================================================== */

/* ---------- Inner hero: one pre-composited photo, text on the left ---------- */
.page-hero {
  --hero-pt: clamp(150px, 34vw, 280px); /* used ≤900 only */
  position: relative;
  display: grid;
  align-items: center; /* design: text block centred, 22px below the hero's centre */
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1600 / 760; /* grows only if the text needs more room */
  background: #f3fafc;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: 64% 50%; }
.page-hero-text { width: 46.3%; padding-top: clamp(24px, 2.75vw, 44px); }
.page-hero h1 { font-size: clamp(42px, 4.6875vw, 75px); letter-spacing: -0.0755em; }
.page-hero h1 span { display: block; }
.page-hero-lead { margin-top: clamp(18px, 2.0125vw, 32.2px); font-size: var(--fs-lead); color: var(--c-primary); }
.page-hero-copy { max-width: 89.3%; margin-top: clamp(12px, 1.2938vw, 20.7px); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: clamp(12px, 1.375vw, 22px); margin-top: clamp(20px, 2.3938vw, 38.3px); }
.page-hero-actions .btn { padding-inline: 0; } /* Figma: fixed-width buttons, content centred */
.page-hero-actions .btn:first-child { width: clamp(160px, 13.625vw, 218px); }
.page-hero-actions .btn:last-child { width: clamp(140px, 11.4375vw, 183px); }

/* ---------- Icon feature row (4 columns) ---------- */
.why { padding-top: clamp(40px, 4.0625vw, 65px); }
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 1.653%; margin-top: clamp(36px, 4.5875vw, 73.4px); text-align: center; }
.why-item img { width: clamp(90px, 7.5vw, 120px); height: auto; margin-inline: auto; }
.why-item h3 { margin-top: clamp(14px, 1.5vw, 24px); line-height: 1.07; }
.why-item p { max-width: 88.4%; margin: clamp(10px, 1.125vw, 18px) auto 0; }

/* ---------- Image + text with a vertical accent bar ---------- */
.media-bar { padding-top: clamp(56px, 7.8125vw, 125px); }
.media-bar .split { grid-template-columns: 47.796% 1fr; column-gap: 3.65%; }
.media-bar-img { aspect-ratio: 694 / 503; border-radius: 30px; }
.bar-text { position: relative; padding-left: clamp(24px, 2.3125vw, 37px); }
.bar-text::before { content: ''; position: absolute; left: 0; top: clamp(6px, 0.6875vw, 11px); bottom: 0; width: 8px; background: #ffffdd; }
.bar-text h2 + p { margin-top: clamp(18px, 2.225vw, 35.6px); }
.bar-text p + p { margin-top: 25.5px; }

/* ---------- Benefit card grid, 6 per row ---------- */
.support { padding-top: clamp(40px, 4.0625vw, 65px); }
.benefit-grid-6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px 1.722%; margin-top: clamp(36px, 4.3125vw, 69px); }
.benefit-grid-6 .benefit { min-height: clamp(104px, 7.5vw, 120px); }
.benefit--plain p { font-family: var(--font-sans); font-weight: 400; }

/* ---------- Product cards (Best Sellers) ---------- */
.products {
  position: relative;
  isolation: isolate;
  margin-top: clamp(40px, 4.25vw, 68px);
  padding-block: clamp(40px, 3.6875vw, 59px) clamp(36px, 3.25vw, 52px);
}
.products-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: clamp(28px, 3.4vw, 54.4px); border-bottom: 1px solid #dbdddd; }
.products-head h2 { line-height: 1.07; }
.row-arrows { display: flex; gap: 18px; margin-right: 2.55%; }
.row-arrow { display: grid; place-items: center; width: clamp(44px, 3.5625vw, 57px); aspect-ratio: 1; padding: 0; border: 1px solid var(--c-primary); border-radius: 50%; background: transparent; transition: background-color .2s ease; }
.row-arrow:hover { background: var(--c-light); }
.row-arrow img { width: 8px; height: 14px; }
/* slider window; JS slides .product-track one card at a time */
.product-row { margin-top: clamp(32px, 3.875vw, 62px); overflow: hidden; }
.product-track { --per: 4; --gap: 1.875%; display: flex; gap: var(--gap); touch-action: pan-y; }
.product-track > * { flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per)); }
.product-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #d0dcdf; border-radius: 20px; background: var(--c-white); }
.product-media { padding: clamp(14px, 1.375vw, 22px) 0 clamp(14px, 1.4375vw, 23px); }
.product-media img { width: clamp(80px, 6.875vw, 110px); height: auto; margin-inline: auto; -webkit-user-drag: none; user-select: none; }
.product-price { position: absolute; top: clamp(14px, 1.375vw, 22px); right: 15px; display: grid; place-items: center; min-height: 42px; padding: 0 6px; border-radius: 8px; background: #ebfaff; font-size: clamp(15px, 1.125vw, 18px); color: var(--c-primary); }
.product-body { display: flex; flex: 1; flex-direction: column; align-items: center; padding: clamp(20px, 1.8125vw, 29px) 22px clamp(16px, 1.3125vw, 21px); border-radius: 20px 20px 0 0; background: linear-gradient(159deg, #c8f2fc 21%, #fff 83%); /* Figma: C8F2FC → FFFFFF, diagonal (fitted from the export) */ text-align: center; }
.product-body h3 { font-size: clamp(22px, 1.75vw, 28px); line-height: 1.333; }
.product-body p { max-width: 300px; margin: 13px 0 19px; /* buttons bottom-align; 19 = gap under a 2-line subtitle */ font-size: clamp(13px, 0.875vw, 14px); }
.btn-book { display: grid; place-items: center; width: min(100%, clamp(160px, 14.5625vw, 233px)); min-height: 47px; margin-top: auto; border: 1px solid var(--c-primary); border-radius: 8px; font-weight: 600; font-size: clamp(15px, 1.0625vw, 17px); color: var(--c-primary); transition: background-color .2s ease; }
.btn-book:hover { background: var(--c-white); }
.products-cta { display: flex; justify-content: center; margin-top: clamp(36px, 4.375vw, 70px); }
.btn--sm { font-weight: 600; font-size: clamp(15px, 1.0625vw, 17px); padding-inline: clamp(16px, 1.6063vw, 25.7px); }
.btn--accent.btn--ink { color: var(--c-primary); }
[data-drag-scroll].is-dragging { cursor: grabbing; scroll-snap-type: none; }

/* ---------- Numbered process with large titles ---------- */
.process { padding-top: clamp(64px, 7.375vw, 118px); }
.process .split { grid-template-columns: 48.347% 47.796%; column-gap: 3.857%; align-items: start; }
.process-media { aspect-ratio: 694 / 773; border-radius: 20px; }
.steps--lg { margin-top: clamp(28px, 3.65vw, 58.4px); }
.steps--lg .step { padding-bottom: 27px; border-bottom: 1px solid #d3d3d3; }
.steps--lg .step + .step { margin-top: 0; padding-top: clamp(32px, 3.5625vw, 57px); border-top: 0; }
.steps--lg .step-head { gap: 18px; }
.steps--lg .step-head h3 { font-size: clamp(22px, 1.875vw, 30px); font-weight: 700; line-height: 1.2; }
.steps--lg .step p { max-width: 96%; margin-top: 13px; color: var(--c-primary); }
.process .btn { margin-top: clamp(28px, 2.875vw, 46px); }

/* ---------- FAQ accordion (native <details>, one open at a time via name="") ---------- */
.faq { padding-block: clamp(64px, 11.625vw, 186px) clamp(40px, 4vw, 64px); text-align: center; }
.faq-intro { max-width: 900px; margin: clamp(14px, 1.6vw, 25.6px) auto 0; color: var(--c-primary); }
.faq-list { width: 84.3%; margin: clamp(28px, 3.3125vw, 53px) auto 0; text-align: left; }
.faq-item { margin-bottom: 21px; border-bottom: 1px solid var(--c-primary); transition: background-color .35s ease, margin-bottom .35s ease; }
.faq-item[open]:not(.is-closing) { margin-bottom: 0; border: 1px solid var(--c-primary); border-radius: 14px; background: var(--c-light); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 2.6875vw, 43px) 17px 24px 15px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.333;
  color: var(--c-primary);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open]:not(.is-closing) .faq-q { padding: 31px 30px 0 31px; }
.faq-item[open]:not(.is-closing) .faq-q::before { content: ''; flex: none; align-self: stretch; width: 4px; margin-right: 7px; border-radius: 2px; background: var(--c-accent); }
.faq-q span { flex: 1; }
.faq-q::after {
  content: '';
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M14 20h12M20 14v12' stroke='%23154D5D' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}
.faq-item[open]:not(.is-closing) .faq-q::after { background: var(--c-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M14 20h12' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
.faq-a { padding: 15.6px 30px 29.4px 48px; font-size: clamp(15px, 1vw, 16px); line-height: 1.625; color: var(--c-primary); }

@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .benefit-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .product-track { --per: 2; --gap: 24px; }
}

@media (max-width: 900px) {
  /* hero: text on the photo, over a scrim (same treatment as the homepage) */
  .page-hero { display: block; aspect-ratio: auto; }
  .page-hero-bg { object-position: var(--hero-focus, 64%) 0; } /* per page: where the subject sits */
  .page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(12, 45, 55, 0) 0, rgba(12, 45, 55, 0.2) calc(var(--hero-pt) - 120px), rgba(12, 45, 55, 0.75) calc(var(--hero-pt) - 8px), rgba(12, 45, 55, 0.75) 100%);
  }
  .page-hero-text { width: 100%; padding: var(--hero-pt) 0 36px; text-align: center; }
  .page-hero h1, .page-hero-lead, .page-hero-copy { color: var(--c-white); }
  .page-hero-lead, .page-hero-copy { max-width: 600px; margin-inline: auto; }
  .page-hero-actions { justify-content: center; margin-top: 20px; }
  .page-hero .btn--outline { border-color: var(--c-white); color: var(--c-white); }
  .page-hero .btn--outline img { filter: brightness(0) invert(1); }

  /* 30–40px between sections */
  .why, .media-bar, .support, .process { padding-top: 36px; }
  .why-grid, .benefit-grid-6, .product-row, .faq-list { margin-top: 28px; }
  .products { margin-top: 36px; padding-block: 36px; }
  .faq { padding-block: 36px; }
  .products-cta { margin-top: 28px; }

  .media-bar .split, .process .split { grid-template-columns: minmax(0, 1fr); row-gap: 28px; }
  .process-media { order: 2; }
  .faq-list { width: 100%; }
}

@media (max-width: 600px) {
  .page-hero-actions .btn { flex: 1 1 0; width: auto; padding-inline: 12px; }
  .why-grid { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
  .benefit-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-track { --per: 1; --gap: 14px; }
  .row-arrows { margin-right: 0; }
  .faq-q { gap: 12px; padding: 22px 4px 18px; }
  .faq-item[open]:not(.is-closing) .faq-q { padding: 20px 16px 0; }
  .faq-a { padding: 12px 16px 20px 20px; }
}

/* ---------- Textured section background (services texture) ---------- */
.bg-texture { position: relative; isolation: isolate; }
.bg-texture::before { content: ''; position: absolute; inset: 0; z-index: -1; background: url('../images/services-bg.jpg') center / cover no-repeat; }
.bg-texture--flip::before { transform: scaleY(-1); }

/* ---------- Icon feature grid, 3 per row ---------- */
.why-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 0; row-gap: clamp(40px, 6.1875vw, 99px); width: 91.43%; margin: clamp(36px, 5.775vw, 92.4px) auto 0; }
.why-grid--3 .why-item img { width: clamp(96px, 8.5vw, 136px); }
.why-grid--3 .why-item h3 { margin-top: clamp(10px, 0.875vw, 14px); }
.why-grid--3 .why-item p { max-width: 68%; margin-top: clamp(10px, 0.9375vw, 15px); }

/* ---------- Process, image on the left ---------- */
.process--flip .split { grid-template-columns: 47.796% 1fr; column-gap: 3.512%; align-items: center; }

/* ---------- Bar block with the image on the right; bar beside the copy only ---------- */
.media-bar--flip .split { grid-template-columns: 1fr 47.796%; column-gap: 3.3%; }
.media-bar--flip h2 { padding-left: clamp(24px, 3vw, 48px); }
.media-bar--flip .bar-text { margin: clamp(20px, 2.4375vw, 39px) 0 0 9px; padding-left: clamp(22px, 2.4375vw, 39px); }
.media-bar--flip .bar-text::before { top: 0; }
.check-list { margin-top: 27px; color: #3c3c3c; }
.check-list li::before { content: '\2714\00a0'; }

/* ---------- Treatment cards (homepage service card, no button) ---------- */
.treatments { padding-block: clamp(48px, 5.375vw, 86px) clamp(48px, 5.6875vw, 91px); }
.treatments-intro { margin-top: clamp(14px, 1.6vw, 25.6px); color: var(--c-primary); }
.treatment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.342%; margin-top: clamp(32px, 3.9063vw, 62.5px); }
.treatment-grid .card-media { aspect-ratio: 407 / 291; }
.treatment-grid .card-body { gap: 26px; }
.treatment-grid .card-text { max-width: none; }
.card-best { display: flex; flex-direction: column; gap: 13px; }
.card-list { font-size: var(--fs-card-sub); line-height: 1.4; }
.card-list li::before { content: '\2713\00a0'; }
.card--static:not(.card--featured):hover { transform: none; border-color: rgba(255, 255, 255, 0.08); box-shadow: none; }
/* service + treatment cards: white at rest, the featured gradient fades in on hover (gradients can't transition, so it's a layer) */
.card { isolation: isolate; }
.card::before { content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(to bottom, var(--c-light), var(--c-white)); opacity: 0; transition: opacity .25s ease; }
.card:hover::before { opacity: 1; }
.treatment-grid .card:hover { filter: drop-shadow(0 9.075px 13.612px rgba(232, 184, 79, 0.15)); }

/* ---------- Two-item info banner ---------- */
.info-banner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; width: 99.1%; min-height: clamp(140px, 10.9375vw, 175px); margin: clamp(36px, 4.8125vw, 77px) auto 0; border-radius: 20px; background: #c8f3fc; }
.info-item { position: relative; display: flex; align-items: center; gap: clamp(16px, 1.8125vw, 29px); padding: 24px clamp(20px, 2.9375vw, 47px); }
.info-item + .info-item { padding-left: clamp(20px, 2.625vw, 42px); }
.info-item + .info-item::before { content: ''; position: absolute; left: 0; top: 50%; width: 1px; height: 81px; background: #b2dee9; transform: translateY(-50%); }
.info-item img { flex: none; width: clamp(56px, 4.875vw, 78px); height: auto; }
.info-item h3 { font-size: clamp(19px, 1.5vw, 24px); font-weight: 500; line-height: 1.333; }
.info-item p { max-width: 520px; margin-top: 7px; font-size: clamp(14px, 0.9375vw, 15px); }

/* ---------- Weight Loss page: measured differences from the shared defaults ---------- */
.page-weight-loss .page-hero { --hero-focus: 85%; }
.page-weight-loss .page-hero-actions .btn:first-child { width: clamp(200px, 17.3125vw, 277px); }
.page-weight-loss .process { padding-top: clamp(56px, 5.6875vw, 91px); }
.page-weight-loss .steps--lg { margin-top: clamp(24px, 2.275vw, 36.4px); }
.page-weight-loss .steps--lg .step { padding-bottom: 30px; }
.page-weight-loss .steps--lg .step + .step { padding-top: 32px; }
.page-weight-loss .steps--lg .step p { max-width: none; font-size: clamp(15px, 1vw, 16px); color: var(--c-text); } /* 16px here (measured), 17px on Mobile IV */
.page-weight-loss .page-hero-lead { margin-top: clamp(16px, 1.7625vw, 28.2px); }
.page-weight-loss .page-hero-copy { margin-top: clamp(10px, 1.1375vw, 18.2px); }
.page-weight-loss .page-hero-actions { margin-top: clamp(18px, 2.1125vw, 33.8px); }
.page-weight-loss .process .btn { margin-top: 41px; }
.page-weight-loss .why { padding-top: clamp(48px, 8.8125vw, 141px); }
.page-weight-loss .media-bar { padding-top: clamp(48px, 9.125vw, 146px); }
.page-weight-loss .treatments { margin-top: clamp(48px, 6.25vw, 100px); }

@media (max-width: 1200px) {
  .treatment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .why-grid--3 { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .process--flip .split, .media-bar--flip .split { grid-template-columns: minmax(0, 1fr); row-gap: 28px; }
  .media-bar--flip h2 { padding-left: 0; text-align: left; }
  .info-banner { grid-template-columns: minmax(0, 1fr); }
  .info-item + .info-item { padding-left: clamp(20px, 2.9375vw, 47px); }
  .info-item + .info-item::before { top: 0; left: 24px; right: 24px; width: auto; height: 1px; transform: none; }
  .page-weight-loss .process, .page-weight-loss .why, .page-weight-loss .media-bar { padding-top: 36px; }
  .page-weight-loss .treatments { margin-top: 36px; }
  .treatments { padding-block: 36px; }
  .treatment-grid, .why-grid--3 { margin-top: 28px; }
  .info-banner { margin-top: 28px; }
}
@media (max-width: 600px) {
  .treatment-grid, .why-grid--3 { grid-template-columns: minmax(0, 1fr); }
  .why-grid--3 .why-item p { max-width: 88%; }
  .info-item { padding: 20px; }
}

/* ---------- Comparison (VS) cards ---------- */
.compare { padding-top: clamp(56px, 7.75vw, 124px); text-align: center; }
.compare-intro { max-width: 71.75em; /* 1220px at 17px; scales with the font so the lines break as in Figma */ margin: clamp(14px, 1.4625vw, 23.4px) auto 0; line-height: 1.53; }
.vs-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; column-gap: 7.4%; margin-top: clamp(28px, 2.4375vw, 39px); text-align: left; }
.vs-badge { position: absolute; left: 50%; top: 52%; display: grid; place-items: center; width: clamp(46px, 3.625vw, 58px); aspect-ratio: 1; border-radius: 50%; background: var(--c-white); box-shadow: 0 4px 18px rgba(21, 77, 93, 0.14); font-weight: 700; font-size: clamp(16px, 1.1875vw, 19px); color: var(--c-primary); transform: translate(-50%, -50%); }
.vs-card { position: relative; padding: 32px clamp(20px, 1.9375vw, 31px) 34px; border: 1px solid #e8eef0; border-radius: 20px; background: var(--c-white); box-shadow: 0 10px 30px rgba(21, 77, 93, 0.05); }
.vs-card--ours { border: 1.5px solid var(--c-accent); background: linear-gradient(#c8f3fc, #f1fcfe); }
.vs-head { display: flex; align-items: flex-start; gap: 17px; }
.vs-card--theirs .vs-head { padding-bottom: 28px; border-bottom: 1px solid #e3e9eb; }
.vs-head h3 { font-size: clamp(19px, 1.4125vw, 22.6px); font-weight: 600; line-height: 1.333; }
.vs-card--ours .vs-head h3 { font-size: clamp(20px, 1.5625vw, 25px); }
.vs-head p { margin-top: 4px; font-weight: 700; font-size: clamp(13px, 0.9938vw, 15.9px); line-height: 1.4; color: var(--c-accent); }
.vs-mark { flex: none; display: block; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 45%; }
.vs-mark--x { background-color: #eef4f6; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 2l8 8M10 2l-8 8' stroke='%23154D5D' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); }
.vs-mark--ok { background-color: var(--c-accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 6.3l2.4 2.4 5.2-5.4' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.vs-head .vs-mark { width: clamp(38px, 3vw, 48px); height: clamp(38px, 3vw, 48px); }
.vs-list { margin-top: 34px; padding-left: 8px; }
.vs-card--ours .vs-list { margin-top: 44px; padding-left: 6px; }
.vs-list li { display: flex; align-items: flex-start; gap: 17px; }
.vs-list li + li { margin-top: 34px; }
.vs-list .vs-mark { width: 32px; height: 32px; margin-top: -2px; }
.vs-card--ours .vs-list .vs-mark { width: 34px; height: 34px; }
.vs-list strong { display: block; font-weight: 700; font-size: clamp(14px, 0.9375vw, 15px); line-height: 1.5; color: var(--c-primary); }
.vs-list span { display: block; font-size: 13px; line-height: 1.5; }
.brand-badge { position: absolute; top: 20px; right: 18px; width: clamp(90px, 9.3125vw, 149px); aspect-ratio: 1; border-radius: 32.2%; overflow: hidden; }
.brand-badge img { position: absolute; left: -13.54%; top: -9.38%; width: 127.08%; height: 127.08%; max-width: none; }
.compare-note { margin-top: clamp(28px, 2.875vw, 46px); }
.compare-cta { display: flex; justify-content: center; margin-top: clamp(24px, 2.8438vw, 45.5px); }

/* ---------- Offer cards (Buy 2 / Buy 3+) ---------- */
.offers { display: flex; justify-content: center; gap: 28px; margin-top: clamp(28px, 2.5625vw, 41px); text-align: left; }
.offer { display: flex; align-items: center; width: clamp(280px, 20.75vw, 332px); min-height: clamp(120px, 9.25vw, 148px); padding: 0 22px; border-radius: 16px; background: var(--c-white); box-shadow: 0 8px 24px rgba(21, 77, 93, 0.06); }
.offer img { flex: none; width: clamp(64px, 5vw, 80px); height: auto; }
.offer-text { margin-left: 21px; padding-left: 22px; border-left: 1px solid #e3e9eb; }
.offer-text b { display: block; font-size: clamp(13px, 0.9375vw, 15px); color: var(--c-primary); }
.offer-price { display: block; font-weight: 700; font-size: clamp(28px, 2.25vw, 36px); line-height: 1.1; color: #48a7d4; }
.offer-price small { font-size: clamp(14px, 1.0625vw, 17px); }
.offer-text span:last-child { display: block; margin-top: 4px; font-size: 13px; color: var(--c-text); }

/* ---------- Product card with tags (peptides) ---------- */
.shop { margin-top: clamp(40px, 5.5vw, 88px); padding-block: clamp(48px, 5.5vw, 88px) clamp(40px, 3.875vw, 62px); text-align: center; }
.shop-intro { max-width: 67.65em; /* 1150px at 17px; scales with the font so the lines break as in Figma */ margin: clamp(14px, 1.375vw, 22px) auto 0; line-height: 1.53; }
.shop .product-row { margin-top: clamp(28px, 2.875vw, 46px); overflow: visible; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.875%; }
.product-grid .product-media img { width: clamp(70px, 5.875vw, 94px); }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: clamp(20px, 2.5vw, 40px) 0 14px; }
.tag { display: inline-flex; align-items: center; min-height: 26px; padding: 0 12px; border-radius: 999px; font-size: 11px; line-height: 1; }
.tag--dark { background: var(--c-primary); color: var(--c-white); }
.tag--accent { background: var(--c-accent); color: var(--c-primary); }
.tag--yellow { background: var(--c-step); color: var(--c-primary); }
.shop-cta { display: flex; justify-content: center; margin-top: clamp(36px, 3.9375vw, 63px); }

/* ---------- Peptides page: measured differences ---------- */
.page-peptides .page-hero { --hero-focus: 80%; }
.page-peptides .page-hero-text { padding-top: 0; margin-top: -12px; }
.page-peptides .page-hero-lead { margin-top: clamp(12px, 1.3125vw, 21px); }
.page-peptides .page-hero-copy { max-width: 95.3%; margin-top: clamp(8px, 0.7313vw, 11.7px); }
.page-peptides .page-hero-copy + .page-hero-copy { margin-top: 25.5px; }
.page-peptides .page-hero-strong { max-width: 95.3%; margin-top: 27px; font-weight: 600; color: var(--c-primary); }
.page-peptides .page-hero-actions { margin-top: clamp(20px, 2.625vw, 42px); }
.page-peptides .page-hero-actions .btn:first-child { width: clamp(240px, 21.4375vw, 343px); }
.page-peptides .why { padding-top: clamp(48px, 6vw, 96px); }
.page-peptides .media-bar-img { aspect-ratio: 694 / 728; }
.page-peptides .bar-text h2 + p { margin-top: clamp(14px, 1.5375vw, 24.6px); }
.page-peptides .bar-text p + p { margin-top: 27px; }
.bar-q { font-weight: 600 !important; font-size: clamp(16px, 1.1875vw, 19px); color: var(--c-accent); }
.bar-text .btn { margin-top: clamp(20px, 1.9375vw, 31px); }
.page-peptides .areas { padding-top: clamp(48px, 4.5625vw, 73px); }

@media (max-width: 1200px) {
  .vs-grid { grid-template-columns: minmax(0, 1fr); row-gap: 70px; margin-inline: 0; }
  .vs-badge { top: 50%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 900px) {
  .compare, .page-peptides .why, .page-peptides .areas { padding-top: 36px; }
  .shop { margin-top: 36px; padding-block: 36px; }
  .vs-grid, .offers, .compare-note, .compare-cta, .shop .product-row, .shop-cta { margin-top: 28px; }
  .page-peptides .page-hero-text { margin-top: 0; padding-top: var(--hero-pt); } /* undo the desktop-only offset */
  .page-peptides .page-hero-copy, .page-peptides .page-hero-strong { max-width: 600px; margin-inline: auto; }
  .page-peptides .page-hero-strong { color: var(--c-white); }
  .compare-cta .btn { white-space: normal; }
  /* wrapped button labels need breathing room; single-line buttons keep their min-height */
  .btn { padding-block: 12px; }
  .btn:not(.btn--fixed) { line-height: 1.35; }
}
@media (max-width: 600px) {
  .offers { flex-direction: column; align-items: center; gap: 16px; }
  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .brand-badge { width: 72px; top: 14px; right: 14px; }
  .vs-card--ours .vs-head { padding-right: 70px; }
}
/* Peptide product cards: name + text centred in the panel, button pinned to the bottom (measured) */
.product-grid .product-card { border: 0; } /* peptide cards have no outline (Best Sellers cards keep theirs) */
.product-grid .product-media { padding: clamp(24px, 2.25vw, 36px) 0 0; }
.product-grid .tags { margin: clamp(16px, 1.375vw, 22px) 0 clamp(18px, 1.625vw, 26px); } /* even visual gap: bottle images carry ~4px white at the bottom */
.product-grid .product-body { padding: 18px 22px 15px; background: linear-gradient(159deg, #c8f2fc 11.5%, #fff 88.5%); } /* Figma: C8F2FC → FFFFFF, diagonal (fitted from the export) */
.product-grid .product-body h3 { margin-top: auto; }
.product-grid .product-body p { margin: 4px 0 auto; }
.product-grid .product-body .btn { width: min(100%, clamp(220px, 17.3125vw, 277px)); min-height: clamp(44px, 3.5625vw, 57px); margin-top: 12px; padding-inline: 0; background: var(--c-white); }
.product-grid .product-body .btn:hover { background: var(--c-light); }
.shop-cta .btn { width: clamp(170px, 13.5625vw, 217px); padding-inline: 0; }
.page-peptides .bar-text > p { max-width: 98.3%; }
/* ---------- Benefit card grid, 4 per row (TRT) ---------- */
.support-intro { max-width: 1200px; margin: clamp(14px, 2.1vw, 33.6px) auto 0; }
.benefit-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 25px 2.654%; width: 83.06%; margin: clamp(28px, 2.925vw, 46.8px) auto 0; }
.benefit-grid-4 .benefit { min-height: clamp(104px, 7.5vw, 120px); }
.process-intro { margin-top: clamp(14px, 1.25vw, 20px); font-size: clamp(15px, 1vw, 16px); line-height: 1.625; }
.page-hero-checks { margin-top: 27px; font-weight: 600; color: var(--c-primary); }
.page-hero-checks li::before { content: '\2714\00a0'; }
.dot-list li { position: relative; padding-left: 25px; }
.dot-list li::before { content: ''; position: absolute; left: 10px; top: 0.75em; width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.bar-label { font-weight: 600; font-size: clamp(17px, 1.25vw, 20px); line-height: 1.3 !important; color: var(--c-accent); }
.bar-text .bar-label { margin-top: 28px; }
.bar-text .dot-list { margin-top: 1px; }
.bar-text .bar-label + .bar-price { margin-top: 3px; }

/* ---------- Centred copy + chart on the texture ---------- */
.decline { padding-block: clamp(40px, 3.6875vw, 59px) clamp(40px, 3.5vw, 56px); text-align: center; }
.decline-text { max-width: 1210px; margin: clamp(18px, 1.9375vw, 31px) auto 0; }
.decline-chart { width: 66.2%; margin: clamp(10px, 1.0625vw, 17px) auto 0; }
.decline-chart img { width: 100%; height: auto; }
.decline-cta .btn { width: clamp(200px, 17.3125vw, 277px); padding-inline: 0; }
.decline-cta { display: flex; justify-content: center; margin-top: clamp(-10px, -0.625vw, -4px); } /* the chart SVG carries ~44px of shadow room below the card */

/* ---------- TRT page: measured differences ---------- */
.page-trt .page-hero { --hero-focus: 72%; }
.page-trt .page-hero-text { width: 48%; }
.page-trt .page-hero-text { padding-top: 2px; }
.page-trt .page-hero-lead { margin-top: clamp(18px, 2.45vw, 39.2px); }
.page-trt .page-hero-copy { max-width: none; margin-top: clamp(6px, 0.5vw, 8px); }
.page-trt :is(.page-hero-copy, .support-intro, .bar-text, .decline-text) { line-height: 1.53; } /* 26px at 17px */
.page-trt .page-hero-actions .btn:first-child { width: clamp(200px, 17.3125vw, 277px); }
.page-trt .support { padding-top: clamp(40px, 5.3125vw, 85px); }
.page-trt .process { padding-top: clamp(56px, 11.875vw, 190px); }
.page-trt .process .split { grid-template-columns: 1fr 47.796%; column-gap: 2.5%; }
.page-trt .process h2 { margin-top: clamp(0px, 2.625vw, 42px); }
.page-trt .steps--lg { width: 97.5%; margin-top: 31px; }
.page-trt .steps--lg .step { padding-bottom: 26px; }
.page-trt .steps--lg .step + .step { padding-top: 31px; }
.page-trt .steps--lg .step:last-child { padding-bottom: 0; border-bottom: 0; }
.page-trt .steps--lg .step p { max-width: none; margin-top: 12px; font-size: clamp(15px, 1vw, 16px); line-height: 1.625; color: var(--c-text); }
.page-trt .process .btn { margin-top: 40px; }
.page-trt .membership { padding-top: clamp(56px, 11.8125vw, 189px); }
/* media-bar with the photo inset 9px and the heading/buttons aligned to the copy beside the bar (TRT membership, About) */
.media-bar--inset .split { grid-template-columns: 48.38% 1fr; column-gap: 3%; align-items: center; }
.media-bar--inset .media-bar-img { aspect-ratio: 694 / 728; margin-left: 1.21%; }
.media-bar--inset h2 { padding-left: clamp(22px, 2.4375vw, 39px); }
.media-bar--inset .bar-text { margin-top: 20px; padding-left: clamp(22px, 2.4375vw, 39px); }
.media-bar--inset .bar-text::before { top: 0; }
.bar-actions { display: flex; flex-wrap: wrap; gap: clamp(12px, 1.1875vw, 19px); margin: 41px 0 0 clamp(22px, 2.4375vw, 39px); }
.page-trt .decline { margin-top: clamp(48px, 6.25vw, 100px); padding-bottom: clamp(40px, 3.875vw, 62px); }
.page-trt .areas { padding-top: clamp(48px, 3.875vw, 62px); }
.page-trt .decline::before { background-image: url('../images/trt-decline-bg.jpg'); }

@media (max-width: 1200px) {
  .benefit-grid-4 { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .decline-chart { width: 100%; }
}
@media (max-width: 900px) {
  .page-hero-checks { color: var(--c-white); }
  .page-hero-checks, .page-trt .page-hero-copy { max-width: 600px; margin-inline: auto; }
  .page-trt .page-hero-text { width: 100%; padding-top: var(--hero-pt); }
  .page-trt .process .split, .media-bar--inset .split { grid-template-columns: minmax(0, 1fr); }
  .media-bar--inset .media-bar-img { margin-left: 0; }
  .page-trt .steps--lg { width: 100%; }
  .page-trt .membership, .page-trt .decline { margin-top: 0; padding-top: 36px; }
  .page-trt .decline { margin-top: 36px; padding-bottom: 36px; }
  .page-trt .areas { padding-top: 36px; }
  .media-bar--inset h2 { padding-left: 0; text-align: center; }
}
@media (min-width: 601px) and (max-width: 900px) {
  /* tablet: heading (and its button) line up with the bar on the left */
  .media-bar--inset h2 { text-align: left; }
  .media-bar--inset .bar-actions { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .bar-actions { justify-content: center; margin-left: 0; }
  .page-trt .process .btn { display: flex; margin-inline: auto; }
  .process-intro { text-align: center; }
  .page-trt .process h2 { margin-top: 0; text-align: center; }
  .page-trt .support, .page-trt .process { padding-top: 36px; }
  .decline { padding-block: 36px; }
  .benefit-grid-4, .decline-text { margin-top: 28px; }
  .decline-chart { margin-top: 20px; }
}
@media (max-width: 600px) {
  .benefit-grid-4 { gap: 12px; }
  /* the chart's labels are drawn into the SVG: keep it legible and let it scroll sideways */
  .decline-chart { overflow-x: auto; margin-inline: calc(-1 * var(--gutter, 16px)); padding-inline: var(--gutter, 16px); }
  .decline-chart img { width: 620px; max-width: none; -webkit-user-drag: none; user-select: none; }
  .decline-chart { cursor: grab; overscroll-behavior-x: contain; }
}

/* ---------- Blog post cards ---------- */
.posts { padding-top: clamp(40px, 7.0625vw, 113px); }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.25vw, 20px); }
.post-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(16px, 2.375vw, 38px); }
.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 1.6875vw, 27px) clamp(16px, 1.625vw, 26px) clamp(16px, 1.125vw, 18px);
  border: 1px solid var(--c-primary);
  border-radius: clamp(16px, 1.5vw, 24px);
  background: var(--c-white);
  transition: box-shadow .25s ease, transform .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(21, 77, 93, 0.12); }
/* white at rest; the light-blue gradient fades in on hover (a layer, since gradients can't transition) */
.post-card { isolation: isolate; }
.post-card::before { content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(to bottom, #c8f3fc, var(--c-white)); opacity: 0; transition: opacity .25s ease; }
.post-card:hover::before { opacity: 1; }
.post-media { aspect-ratio: 1; border-radius: clamp(12px, 1.25vw, 20px); }
.post-date { margin-top: clamp(16px, 1.375vw, 22px); font-weight: 600; font-size: clamp(16px, 1.1875vw, 19px); line-height: 26px; color: var(--c-accent); font-variant-numeric: lining-nums; }
.post-title { margin-top: clamp(14px, 1.6875vw, 27px); font-weight: 700; font-size: clamp(22px, 1.875vw, 30px); line-height: 1.2; letter-spacing: 0; }
.post-text { margin: clamp(12px, 1.4375vw, 23px) 0 clamp(16px, 1.6875vw, 27px); font-weight: 300; font-size: 15px; line-height: 22px; }
.post-more { margin-top: auto; align-self: flex-start; font-weight: 600; font-size: clamp(17px, 1.25vw, 20px); line-height: 26px; color: var(--c-accent); }
.post-more::after { content: ''; position: absolute; inset: 0; border-radius: inherit; } /* whole card clickable */
.post-more:hover { color: var(--c-primary); }

/* ---------- Blog page: measured differences ---------- */
.page-blog .page-hero { --hero-focus: 68%; }
.page-blog .page-hero h1 { font-size: clamp(56px, 6vw, 96px); }
.page-blog .page-hero-text { padding: 0 0 clamp(0px, 5.375vw, 86px); }
.page-blog .areas { padding-top: clamp(56px, 8.25vw, 132px); }

@media (max-width: 1200px) {
  /* one continuous 2-up flow, so row 1's third card doesn't sit alone */
  .post-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .post-grid { display: contents; }
}
@media (max-width: 900px) {
  .posts { padding-top: 36px; }
  .page-blog .page-hero-text { padding: var(--hero-pt) 0 36px; }
  .page-blog .areas { padding-top: 36px; }
}
@media (max-width: 600px) {
  .post-list { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}

/* ---------- Review highlights (About) ---------- */
.love { margin-top: clamp(48px, 6.25vw, 100px); padding-block: clamp(48px, 5.25vw, 84px) clamp(48px, 4.3125vw, 69px); text-align: center; }
.love-sub { margin-top: clamp(16px, 2.5vw, 40px); font-weight: 500; font-size: clamp(16px, 1.0938vw, 17.5px); color: var(--c-primary); }
.rating { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0 12px; margin-top: clamp(20px, 2.875vw, 46px); font-weight: 700; color: var(--c-primary); }
.rating img { align-self: center; width: 118px; height: auto; }
.rating strong { font-size: clamp(22px, 1.625vw, 26px); line-height: 1; }
.rating span { margin-left: -4px; font-size: clamp(15px, 1.125vw, 18px); letter-spacing: 0.05em; text-transform: uppercase; }
.rating-note { margin-top: 10px; font-size: 13px; color: #7a9a9f; }
.love-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 2.13%; margin-top: clamp(28px, 2.5vw, 40px); }
.love-card { display: flex; flex-direction: column; align-items: center; min-height: clamp(380px, 28vw, 448px); padding: clamp(28px, 2.3125vw, 37px) clamp(20px, 2.5vw, 40px); border-radius: 24px; background: var(--c-white); }
.love-icon { width: clamp(64px, 4.75vw, 76px); height: auto; }
.love-card h3 { margin-top: 25px; font-family: var(--font-sans); font-weight: 700; font-size: clamp(15px, 1.0625vw, 17px); line-height: 25px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--c-primary); }
.love-stars { width: 102px; height: auto; margin-top: 22px; }
.love-card p { margin-top: 22px; font-size: clamp(15px, 1.0625vw, 17px); line-height: 27px; color: #1f1f1f; }
.love-card em { font-style: normal; font-weight: 600; color: #5bb8e3; }
.love-card::after { content: ''; width: 47px; height: 2px; margin-top: auto; background: #6cbfe6; }

/* ---------- About page: measured differences ---------- */
.page-about .page-hero { --hero-focus: 72%; }
.page-about .page-hero-text { padding-top: 8px; }
.page-about .page-hero-copy { margin-top: clamp(12px, 2.17vw, 34.7px); }
.page-about .page-hero-copy + .page-hero-copy { margin-top: 26px; }
.page-about .page-hero-actions { margin-top: clamp(20px, 2.08vw, 33.3px); }
.page-about .page-hero-actions .btn:first-child { width: clamp(200px, 17.3125vw, 277px); }
.page-about .media-bar { padding-top: clamp(48px, 6.1875vw, 99px); }
.media-bar--inset .bar-text { line-height: 1.53; } /* 26px at 17px */
.page-about .bar-text { margin-top: clamp(16px, 1.5375vw, 24.6px); padding-block: 6px; }
.page-about .bar-actions { margin-top: 34px; }
.page-about .bar-actions .btn--outline { width: clamp(160px, 11.8125vw, 189px); padding-inline: 0; }
.page-about .testimonials { padding: clamp(48px, 4.5625vw, 73px) 0 0; }
.page-about .areas { padding-top: clamp(48px, 5.75vw, 92px); }

@media (max-width: 1200px) {
  .love-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .love-card { min-height: 0; }
  .love-card::after { margin-top: 28px; }
}
@media (max-width: 900px) {
  .love { margin-top: 36px; padding-block: 36px; }
  .love-sub, .love-grid { margin-top: 20px; }
  .page-about .media-bar { padding-top: 36px; }
  .page-about .page-hero-text { padding-top: var(--hero-pt); }
  .page-about .testimonials, .page-about .areas { padding-top: 36px; }
  .page-about .page-hero-copy { max-width: 600px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .love-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Contact page: mailing-list card + service areas (measured) ---------- */
.page-contact .newsletter { padding-top: clamp(36px, 5.875vw, 94px); }
.page-contact .areas { padding-top: clamp(48px, 4.625vw, 74px); }
@media (max-width: 900px) {
  .page-contact .newsletter, .page-contact .areas { padding-top: 36px; }
}

/* Mobile IV "Why" copy: Figma sizes each text box separately; em widths keep its line breaks at any font size */
.page-mobile-iv .why-item p { line-height: 1.53; }
.page-mobile-iv .why-item:nth-child(1) p { max-width: min(15.5em, 100%); }
.page-mobile-iv .why-item:nth-child(2) p { max-width: min(16.35em, 100%); }
.page-mobile-iv .why-item:nth-child(3) p { max-width: min(17.3em, 100%); }
.page-mobile-iv .why-item:nth-child(4) p { max-width: min(18.18em, 100%); }

.nowrap { white-space: nowrap; }

/* ---------- Tablet hero (601–900): lighter, longer navy fade instead of a flat teal band ---------- */
@media (min-width: 601px) and (max-width: 900px) {
  .page-home .hero-media::after,
  .page-hero::after {
    background: linear-gradient(to bottom,
      rgba(8, 32, 41, 0) 0,
      rgba(8, 32, 41, 0) calc(var(--hero-pt) - 200px),
      rgba(8, 32, 41, 0.5) calc(var(--hero-pt) - 60px),
      rgba(8, 32, 41, 0.62) calc(var(--hero-pt) + 60px),
      rgba(8, 32, 41, 0.72) 100%);
  }
  .page-home .hero h1, .page-home .hero-lead, .page-home .hero-rating,
  .page-hero h1, .page-hero-text p, .page-hero-checks { text-shadow: 0 1px 14px rgba(4, 20, 26, 0.35); }
  .page-home .hero h1 .accent-italic, .page-hero h1 .accent-italic { color: var(--c-light); } /* the lighter scrim needs the paler brand blue for 3:1 */
}

/* ---------- Status pages (thank-you, 404) ---------- */
.status { padding-block: clamp(64px, 8vw, 128px); background: linear-gradient(123.64deg, var(--c-white) 0.78%, var(--c-light) 111.51%); text-align: center; }
.status-inner { display: flex; flex-direction: column; align-items: center; }
.status-mark { width: clamp(72px, 5.5vw, 88px); aspect-ratio: 1; border-radius: 50%; background: var(--c-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 6.3l2.4 2.4 5.2-5.4' fill='none' stroke='white' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 50% no-repeat; box-shadow: 0 10px 30px rgba(109, 191, 215, 0.35); }
.status-code { font-family: var(--font-serif); font-size: clamp(88px, 10vw, 160px); line-height: 1; letter-spacing: -0.04em; color: var(--c-accent); }
.status h1 { margin-top: clamp(20px, 2vw, 32px); font-size: clamp(38px, 4.0625vw, 65px); line-height: 1.07; letter-spacing: -0.03em; }
.status-code + h1 { margin-top: 8px; }
.status-text { max-width: 620px; margin-top: clamp(14px, 1.375vw, 22px); }
.status-text a { font-weight: 600; color: var(--c-primary); }
.status-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: clamp(24px, 2.5vw, 40px); }
.status-actions .btn { min-width: 180px; }
@media (max-width: 600px) {
  .status-actions .btn { flex: 1 1 0; min-width: 0; padding-inline: 12px; }
}
