:root {
  --green: #123b28;
  --green-2: #24583b;
  --sage: #7d915a;
  --sage-soft: #d9deca;
  --gold: #b8955a;
  --ink: #1f2f27;
  --muted: #5d635e;
  --line: #e7e2d5;
  --paper: #fbf8ef;
  --cream: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffefa 0%, var(--paper) 100%);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading,
.skincare-intro,
.peptide-layout,
.appointment-layout,
.footer-main {
  --reveal-delay: 80ms;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 96px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(231, 226, 213, 0.78);
  background: #fffdf7;
  box-shadow: 0 18px 44px rgba(18, 59, 40, 0.08);
}

.site-header .container-xxl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(18px, 2.6vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.brand img {
  width: clamp(220px, 22vw, 320px);
  height: 82px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.navbar-toggler {
  display: none;
  width: 44px;
  height: 38px;
  padding: 0;
  border-color: rgba(23, 63, 43, 0.22);
  border-radius: 8px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 63, 43, 0.18);
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: var(--green);
  background-image: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 24px;
}

section {
  scroll-margin-top: 96px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 34px);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.site-header .nav-link {
  display: inline-flex;
  position: relative;
  color: rgba(31, 47, 39, 0.78);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--green);
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus::after {
  transform: scaleX(1);
}

.header-cta,
.btn-brand,
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.header-cta {
  padding: 0 22px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--green) 0%, #1f5b3a 100%);
  box-shadow: 0 14px 26px rgba(18, 59, 40, 0.22);
}

.header-cta:hover,
.header-cta:focus {
  color: #fff;
  background:
    linear-gradient(135deg, #18492f 0%, #2e6a48 100%);
  transform: translateY(-1px);
}

.header-cta:hover span:last-child,
.btn-brand:hover span:last-child,
.btn-outline-brand:hover span:last-child,
.program-cta:hover span:last-child {
  transform: translateX(3px);
}

.header-cta span:last-child,
.btn-brand span:last-child,
.btn-outline-brand span:last-child,
.program-cta span:last-child {
  transition: transform 0.22s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(184, 149, 90, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 253, 247, 0.99) 0%, rgba(255, 253, 247, 0.94) 34%, rgba(255, 253, 247, 0.66) 52%, rgba(255, 253, 247, 0.28) 72%, rgba(255, 253, 247, 0.08) 100%),
    linear-gradient(90deg, rgba(18, 59, 40, 0) 0%, rgba(18, 59, 40, 0.08) 58%, rgba(18, 59, 40, 0.18) 100%),
    url("img/weight_loss.webp") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px 28px auto auto;
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  border: 1px solid rgba(184, 149, 90, 0.24);
  border-radius: 999px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 132px;
  background: linear-gradient(180deg, rgba(251, 248, 239, 0), rgba(251, 248, 239, 0.72) 68%, var(--paper));
  pointer-events: none;
}

.hero .container-xxl {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.hero .row {
  display: flex;
  width: 100%;
}

.hero-content.col-12 {
  width: min(100%, 640px);
}

.hero-content {
  padding-block: clamp(56px, 8vw, 92px);
  margin-left: 0;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-kicker {
  justify-content: center;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 5.25vw, 72px);
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(18, 59, 40, 0.08);
}

.hero h1 em {
  display: block;
  color: var(--sage);
  font-style: italic;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 28px 0 24px;
  color: var(--sage);
}

.ornament span {
  width: 150px;
  height: 2px;
  background: rgba(120, 142, 88, 0.34);
}

.ornament i {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: linear-gradient(135deg, var(--sage), var(--gold));
  border-radius: 4px 10px 4px 10px;
  transform: rotate(45deg);
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 28px;
  color: #243229;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 750;
  line-height: 1.45;
}

.hero-copy {
  max-width: 590px;
  margin: 0 0 40px;
  color: rgba(31, 47, 39, 0.74);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.btn-brand,
.btn-outline-brand {
  min-width: 224px;
  padding: 15px 23px;
}

.hero-actions {
  align-items: center;
  flex-wrap: wrap;
}

.btn-brand {
  color: #fff;
  border: 1px solid #17452d;
  background:
    linear-gradient(135deg, var(--green) 0%, #24613f 100%);
  box-shadow: 0 18px 34px rgba(18, 59, 40, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  border-color: #286343;
  background:
    linear-gradient(135deg, #18492f 0%, #30704c 100%);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(18, 59, 40, 0.28);
}

.btn-outline-brand {
  color: var(--green);
  border: 1px solid rgba(18, 59, 40, 0.24);
  background: rgba(255, 253, 247, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 610px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(18, 59, 40, 0.12);
  border-radius: 999px;
  color: rgba(31, 47, 39, 0.72);
  background: rgba(255, 253, 247, 0.58);
  box-shadow: 0 10px 24px rgba(18, 59, 40, 0.06);
  font-size: 13px;
  font-weight: 750;
}

.journey-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 9vw, 128px);
  background:
    radial-gradient(circle at 88% 4%, rgba(184, 149, 90, 0.17), transparent 24%),
    radial-gradient(circle at 6% 88%, rgba(125, 145, 90, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #f7f1e5 100%);
}

.journey-section::before {
  content: "";
  position: absolute;
  top: 72px;
  right: -86px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(184, 149, 90, 0.22);
  border-radius: 999px;
}

.journey-section::after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: 80px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(18, 59, 40, 0.12);
  border-radius: 999px;
}

.journey-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading h2 em {
  display: block;
  color: var(--sage);
  font-style: italic;
}

.ornament-center {
  justify-content: center;
  margin: 24px 0 0;
}

.ornament-center span {
  width: min(120px, 24vw);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  grid-auto-rows: clamp(270px, 18vw, 330px);
  gap: 22px;
  padding: 12px;
  border: 1px solid rgba(18, 59, 40, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 28px 70px rgba(18, 59, 40, 0.12);
  backdrop-filter: blur(16px);
}

.journey-card {
  position: relative;
  min-height: 276px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 59, 40, 0.12);
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.journey-card-tall {
  grid-row: span 2;
}

.journey-card-wide {
  grid-column: span 2;
}

.journey-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 32, 22, 0.04) 0%, rgba(12, 32, 22, 0.34) 42%, rgba(12, 32, 22, 0.88) 100%),
    linear-gradient(135deg, rgba(184, 149, 90, 0.12), transparent 46%);
  z-index: 0;
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  pointer-events: none;
}

.journey-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
}

.journey-card h3 {
  max-width: 420px;
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.45vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.journey-card p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.journey-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1);
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 59, 40, 0.18);
}

.journey-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 46px);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 42px);
}

.section-cta-light {
  justify-content: center;
  margin-top: 0;
}

.section-cta-light .btn-outline-brand {
  color: #fffdf7;
  border-color: rgba(255, 253, 247, 0.5);
  background: rgba(255, 253, 247, 0.08);
}

.section-cta-light .btn-outline-brand:hover,
.section-cta-light .btn-outline-brand:focus {
  color: var(--green);
  border-color: #fffdf7;
  background: #fffdf7;
}

.program-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 8vw, 126px);
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 149, 90, 0.18), transparent 25%),
    radial-gradient(circle at 88% 72%, rgba(125, 145, 90, 0.2), transparent 28%),
    linear-gradient(135deg, #0e3323 0%, #123b28 44%, #092418 100%);
  color: #fff;
}

.program-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
  opacity: 0.7;
  pointer-events: none;
}

.program-section::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 149, 90, 0.22);
  border-radius: 999px;
  pointer-events: none;
}

.program-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.section-heading-light h2 {
  color: #fffdf7;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.section-heading-light .section-kicker {
  color: #d8bd86;
}

.section-heading-light .ornament span {
  background: rgba(216, 189, 134, 0.42);
}

.section-heading-light .ornament i {
  background: linear-gradient(135deg, #d8bd86, #fff1c9);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  max-width: 1260px;
  margin-inline: auto;
}

.program-card {
  position: relative;
  padding: 1px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(184, 149, 90, 0.14), rgba(255, 255, 255, 0.22));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.32);
}

.program-card-featured {
  background:
    linear-gradient(145deg, rgba(216, 189, 134, 0.9), rgba(255, 255, 255, 0.32), rgba(216, 189, 134, 0.26));
}

.program-card-inner {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 23px;
  background:
    radial-gradient(circle at 8% 12%, rgba(125, 145, 90, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(249, 246, 237, 0.96) 100%);
  color: var(--ink);
}

.program-card-inner::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -62px;
  width: 180px;
  height: 360px;
  border: 2px solid rgba(125, 145, 90, 0.16);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.program-card-inner::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -92px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(184, 149, 90, 0.18);
  border-radius: 999px;
}

.program-head,
.program-list,
.program-cta {
  position: relative;
  z-index: 1;
}

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

.program-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(184, 149, 90, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(184, 149, 90, 0.08);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-head h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}

.program-head p {
  max-width: 390px;
  margin: 18px auto 30px;
  color: rgba(31, 47, 39, 0.7);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.program-list {
  display: grid;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 34px;
  padding: 0;
  list-style: none;
}

.program-list li {
  display: grid;
  grid-template-columns: 28px minmax(120px, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  border-bottom: 1px solid rgba(18, 59, 40, 0.11);
  color: rgba(31, 47, 39, 0.82);
  font-size: 16px;
  font-weight: 800;
}

.program-list li:first-child {
  border-top: 1px solid rgba(18, 59, 40, 0.11);
}

.program-list li span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--sage), var(--green-2));
  box-shadow: 0 8px 14px rgba(18, 59, 40, 0.18);
}

.program-list li span::before {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: 7px auto 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.program-list strong {
  color: var(--green);
  font-weight: 850;
  white-space: nowrap;
}

.program-cta {
  width: min(100%, 380px);
  margin-inline: auto;
}

.clinical-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 9vw, 132px);
  background:
    radial-gradient(circle at 84% 18%, rgba(184, 149, 90, 0.15), transparent 26%),
    radial-gradient(circle at 12% 80%, rgba(18, 59, 40, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f3ecdf 100%);
}

.clinical-section::before {
  content: "";
  position: absolute;
  inset: 34px clamp(16px, 3vw, 42px);
  border: 1px solid rgba(18, 59, 40, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.clinical-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.clinical-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.clinical-media {
  position: relative;
  min-height: clamp(460px, 48vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(18, 59, 40, 0.12);
  border-radius: 28px;
  background: var(--green);
  box-shadow: 0 32px 80px rgba(18, 59, 40, 0.2);
}

.clinical-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  pointer-events: none;
}

.clinical-media::after {
  content: "Home Visit Care";
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fffdf7;
  background: rgba(18, 59, 40, 0.58);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.clinical-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.clinical-media:hover img,
.safety-image:hover img,
.skincare-treatment-media:hover img,
.peptide-science-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1);
}

.clinical-copy {
  max-width: 680px;
}

.clinical-copy h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.clinical-copy p:not(.section-kicker) {
  margin: 0;
  color: rgba(31, 47, 39, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.clinical-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.clinical-points article {
  position: relative;
  padding: 22px 24px 22px 68px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 18px 42px rgba(18, 59, 40, 0.08);
}

.clinical-points article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 27px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sage), var(--green-2));
  box-shadow: 0 10px 18px rgba(18, 59, 40, 0.18);
}

.clinical-points article::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 35px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.clinical-points h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.clinical-points p {
  margin: 0;
  color: rgba(31, 47, 39, 0.68);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.peptide-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 8vw, 126px);
  background:
    radial-gradient(circle at 14% 16%, rgba(184, 149, 90, 0.16), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(125, 145, 90, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f3ecdf 100%);
  color: var(--ink);
}

.peptide-section::before {
  content: "";
  position: absolute;
  inset: 34px clamp(16px, 3vw, 42px);
  border: 1px solid rgba(18, 59, 40, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.peptide-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.peptide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.peptide-copy .section-kicker {
  justify-content: flex-start;
  color: var(--gold);
}

.peptide-copy .section-kicker::after {
  display: none;
}

.peptide-copy h2 {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.03;
  text-wrap: balance;
}

.peptide-copy > p {
  max-width: 690px;
  margin: 0;
  color: rgba(31, 47, 39, 0.72);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.75;
}

.peptide-guidance {
  max-width: 720px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(184, 149, 90, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  color: rgba(31, 47, 39, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 34%),
    rgba(255, 253, 247, 0.72);
  box-shadow: 0 18px 42px rgba(18, 59, 40, 0.08);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.peptide-guidance strong {
  color: var(--green);
}

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

.peptide-cta {
  margin-top: 28px;
}

.peptide-cta .btn-outline-brand,
.skincare-cta .btn-outline-brand {
  color: #fffdf7;
  border-color: rgba(255, 253, 247, 0.5);
  background: rgba(255, 253, 247, 0.08);
}

.peptide-cta .btn-outline-brand {
  color: var(--green);
  border-color: rgba(18, 59, 40, 0.24);
  background: rgba(255, 253, 247, 0.72);
}

.skincare-cta .btn-outline-brand:hover,
.skincare-cta .btn-outline-brand:focus {
  color: var(--green);
  border-color: #fffdf7;
  background: #fffdf7;
}

.peptide-cta .btn-outline-brand:hover,
.peptide-cta .btn-outline-brand:focus {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.peptide-inclusions article {
  padding: 20px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%),
    rgba(255, 253, 247, 0.68);
  box-shadow: 0 18px 42px rgba(18, 59, 40, 0.08);
}

.peptide-inclusions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 1px solid rgba(184, 149, 90, 0.34);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(184, 149, 90, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.peptide-inclusions h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.peptide-inclusions p {
  margin: 0;
  color: rgba(31, 47, 39, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.peptide-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(18, 59, 40, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18) 44%),
    rgba(255, 253, 247, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 30px 80px rgba(18, 59, 40, 0.16);
}

.peptide-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 2.5vw, 30px);
  border-radius: 20px;
  border: 1px solid rgba(18, 59, 40, 0.08);
  background: rgba(255, 253, 247, 0.96);
  color: var(--ink);
}

.peptide-science-media {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(18, 59, 40, 0.12);
  border-radius: 20px;
  background: #0b271b;
  box-shadow: 0 22px 54px rgba(18, 59, 40, 0.14);
}

.peptide-science-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 14px;
  pointer-events: none;
}

.peptide-science-media::after {
  content: "Molecular support";
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(255, 253, 247, 0.26);
  border-radius: 999px;
  color: #fffdf7;
  background: rgba(18, 59, 40, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.peptide-science-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.peptide-price-list div {
  display: block;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(184, 149, 90, 0.08), rgba(255, 255, 255, 0) 46%),
    rgba(255, 253, 247, 0.78);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.peptide-price-list div:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 149, 90, 0.26);
  box-shadow: 0 16px 34px rgba(18, 59, 40, 0.1);
}

.peptide-price-list span {
  color: var(--green);
  font-size: 16px;
  font-weight: 850;
}

.peptide-price-list em {
  display: block;
  margin-top: 7px;
  color: rgba(31, 47, 39, 0.62);
  font-size: 13px;
  font-style: italic;
  font-weight: 650;
}

.safety-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 8vw, 126px);
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 189, 134, 0.13), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(125, 145, 90, 0.16), transparent 28%),
    linear-gradient(135deg, #0d2c1f 0%, #123b28 52%, #092117 100%);
}

.safety-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(28deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 140px);
  opacity: 0.55;
  pointer-events: none;
}

.safety-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.safety-shell {
  display: grid;
  gap: clamp(42px, 6vw, 82px);
}

.safety-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.safety-intro {
  color: #fffdf7;
}

.safety-intro .section-kicker {
  color: #d8bd86;
}

.safety-intro h2 {
  max-width: 720px;
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 700;
  line-height: 1.03;
  text-wrap: balance;
}

.safety-intro p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.75;
}

.safety-image {
  position: relative;
  min-height: clamp(320px, 31vw, 470px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.safety-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  pointer-events: none;
}

.safety-image::after {
  content: "Guided care";
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fffdf7;
  background: rgba(18, 59, 40, 0.62);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.safety-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.safety-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 88% 4%, rgba(216, 189, 134, 0.2), transparent 31%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.99), rgba(246, 241, 231, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 26px 58px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.safety-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold), var(--sage), transparent);
}

.safety-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(18, 59, 40, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.safety-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 30px 64px rgba(0, 0, 0, 0.24);
}

.safety-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.35vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.safety-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(31, 47, 39, 0.7);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.safety-note {
  max-width: 980px;
  margin: clamp(48px, 6vw, 82px) auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(216, 189, 134, 0.28);
  border-top: 3px solid #d8bd86;
  border-radius: 18px;
  color: rgba(255, 253, 247, 0.82);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 14px;
  font-weight: 650;
}

.safety-note strong {
  color: #fff1c9;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 7vw, 92px) 28px;
  color: #fffdf7;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 189, 134, 0.15), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(125, 145, 90, 0.15), transparent 28%),
    linear-gradient(135deg, #082116 0%, #123b28 58%, #071b12 100%);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 253, 247, 0.32);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  box-shadow:
    0 18px 34px rgba(18, 59, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  animation: whatsappPulse 3.6s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: inherit;
}

.whatsapp-float svg {
  position: relative;
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 24px 42px rgba(18, 59, 40, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.appointment-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(78px, 8vw, 120px);
  background:
    radial-gradient(circle at 16% 18%, rgba(184, 149, 90, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, #f3ecdf 100%);
}

.appointment-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 999px;
}

.appointment-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(14px, 2.2vw, 34px);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.appointment-copy {
  position: sticky;
  top: 130px;
  padding-top: 18px;
}

.appointment-copy h2 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.03;
  text-wrap: balance;
}

.appointment-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(31, 47, 39, 0.72);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.75;
}

.appointment-widget {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(18, 59, 40, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(244, 239, 226, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 30px 80px rgba(18, 59, 40, 0.16);
}

.appointment-widget::before {
  content: "";
  position: absolute;
  inset: 0 28px auto;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold), var(--sage), transparent);
  z-index: 2;
  pointer-events: none;
}

.appointment-widget .calendly-inline-widget {
  overflow: hidden;
  width: 100%;
  min-width: 0 !important;
  border-radius: 22px;
  background: #fffdf7;
}

.appointment-widget iframe {
  display: block;
  width: 100% !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #fffdf7;
}

.skincare-section {
  position: relative;
  scroll-margin-top: 96px;
  overflow: hidden;
  padding-block: clamp(82px, 8vw, 126px);
  background:
    radial-gradient(circle at 16% 10%, rgba(216, 189, 134, 0.16), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(125, 145, 90, 0.18), transparent 30%),
    linear-gradient(135deg, #0d2c1f 0%, #123b28 52%, #082016 100%);
  color: #fffdf7;
}

.skincare-section::before {
  content: "";
  position: absolute;
  inset: 36px clamp(16px, 3vw, 42px);
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(28deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 140px);
  opacity: 0.9;
  pointer-events: none;
}

.skincare-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(216, 189, 134, 0.24);
  border-radius: 999px;
  pointer-events: none;
}

.skincare-section .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.skincare-intro {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.86fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.skincare-intro .section-kicker {
  justify-content: flex-start;
}

.skincare-intro .section-kicker::after {
  display: none;
}

.skincare-intro h2 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fffdf7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.03;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  text-wrap: balance;
}

.skincare-intro p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.skincare-treatment-media {
  position: relative;
  min-height: clamp(360px, 35vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.skincare-treatment-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 20px;
  pointer-events: none;
}

.skincare-treatment-media::after {
  content: "Complementary care";
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 247, 0.3);
  border-radius: 999px;
  color: #fffdf7;
  background: rgba(18, 59, 40, 0.62);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.skincare-treatment-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.96);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.skincare-treatment-media:hover img,
.peptide-science-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1);
}

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

.skincare-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(216, 189, 134, 0.24);
  border-radius: 999px;
  color: rgba(255, 253, 247, 0.82);
  background: rgba(255, 253, 247, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.skincare-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.skincare-accordion {
  display: grid;
  gap: 16px;
  max-width: 1260px;
  margin-inline: auto;
}

.skincare-cta {
  justify-content: center;
  margin-top: clamp(26px, 4vw, 42px);
}

.skincare-group {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 253, 247, 0.055);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.skincare-group:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 189, 134, 0.28);
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.22);
}

.skincare-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 20px clamp(20px, 3vw, 34px);
  color: #fffdf7;
  cursor: pointer;
  list-style: none;
}

.skincare-group summary::-webkit-details-marker {
  display: none;
}

.skincare-group summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 999px;
  color: #fff1c9;
  background: rgba(255, 253, 247, 0.08);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.skincare-group[open] summary::after {
  content: "-";
}

.skincare-group summary span {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fffdf7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.04;
}

.skincare-group summary small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 189, 134, 0.38);
  border-radius: 999px;
  color: #fff1c9;
  background: rgba(216, 189, 134, 0.11);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.skincare-group summary em {
  color: rgba(255, 253, 247, 0.68);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.skincare-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(16px, 2.4vw, 26px) clamp(16px, 2.4vw, 26px);
}

.skincare-compact-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 172px;
  padding: 12px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.24) 42%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(243, 237, 225, 0.96));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.skincare-compact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.skincare-compact-card img {
  width: 132px;
  height: 148px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  background: #0c2b2b;
}

.skincare-compact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skincare-compact-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.08;
}

.skincare-compact-card p {
  margin: 0;
  color: rgba(31, 47, 39, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.skincare-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04) 38%),
    radial-gradient(circle at 88% 8%, rgba(216, 189, 134, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(243, 237, 225, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 28px 70px rgba(0, 0, 0, 0.26);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.skincare-card::before {
  content: "";
  position: absolute;
  inset: 0 28px auto;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d8bd86, var(--sage), transparent);
  z-index: 2;
}

.skincare-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -86px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 999px;
  pointer-events: none;
}

.skincare-card-featured {
  border-color: rgba(216, 189, 134, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 34px 82px rgba(0, 0, 0, 0.34);
}

.skincare-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 189, 134, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 36px 86px rgba(0, 0, 0, 0.34);
}

.skincare-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 18px;
  background: #0c2b2b;
}

.skincare-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 59, 40, 0.02), rgba(18, 59, 40, 0.1)),
    linear-gradient(135deg, rgba(255, 253, 247, 0.16), transparent 42%);
  pointer-events: none;
}

.skincare-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.skincare-card:hover .skincare-image img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.skincare-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 2.5vw, 30px);
}

.skincare-category {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skincare-content h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.08;
}

.skincare-content p {
  margin: 0;
  color: rgba(31, 47, 39, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.skincare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.skincare-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(18, 59, 40, 0.1);
  border-radius: 999px;
  color: rgba(31, 47, 39, 0.7);
  background: rgba(255, 253, 247, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 140px);
  opacity: 0.48;
  pointer-events: none;
}

.site-footer .container-xxl {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.8vw, 42px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 0.9fr) minmax(260px, 0.75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.footer-logo {
  display: inline-flex;
  width: min(300px, 76vw);
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 18px;
  background: #f8f6ee;
}

.footer-logo img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-brand p,
.footer-cta p,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

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

.footer-links h2 {
  margin: 0 0 16px;
  color: #fff1c9;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 253, 247, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff1c9;
  transform: translateX(3px);
}

.footer-cta {
  padding: 24px;
  border: 1px solid rgba(216, 189, 134, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.footer-cta p {
  margin-bottom: 22px;
  color: rgba(255, 253, 247, 0.86);
  font-size: 17px;
}

.footer-cta .btn-brand {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  max-width: 760px;
  font-size: 13px;
}

.footer-bottom span {
  color: rgba(255, 253, 247, 0.62);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px 14px;
  text-align: right;
}

.footer-legal a {
  color: rgba(255, 253, 247, 0.42);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: rgba(255, 241, 201, 0.72);
}

.policy-page {
  min-height: 100vh;
  color: #1f2f27;
  background:
    linear-gradient(180deg, rgba(248, 246, 238, 0.94), rgba(243, 236, 223, 0.96)),
    #f3ecdf;
}

.policy-main {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
  padding: clamp(38px, 7vw, 86px) 0;
}

.policy-document {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(18, 59, 40, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 28px 70px rgba(31, 47, 39, 0.12);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(18, 59, 40, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.policy-back:hover,
.policy-back:focus {
  color: #123b28;
}

.policy-kicker {
  margin: 0 0 10px;
  color: #1e8d24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-document h1,
.policy-document h2 {
  color: #123b28;
  font-family: "Playfair Display", Georgia, serif;
}

.policy-document h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
}

.policy-updated {
  margin: 18px 0 38px;
  color: rgba(31, 47, 39, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.policy-document section {
  padding-top: 28px;
  border-top: 1px solid rgba(18, 59, 40, 0.1);
}

.policy-document section + section {
  margin-top: 28px;
}

.policy-document h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.18;
}

.policy-document p,
.policy-document li {
  color: rgba(31, 47, 39, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.policy-document p {
  margin: 0 0 14px;
}

.policy-document ul {
  margin: 0;
  padding-left: 22px;
}

.policy-document a {
  color: #176b1b;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .program-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .clinical-layout {
    grid-template-columns: 1fr;
  }

  .clinical-copy {
    max-width: 760px;
  }

  .peptide-layout,
  .peptide-panel {
    grid-template-columns: 1fr;
  }

  .peptide-inclusions {
    grid-template-columns: 1fr;
  }

  .safety-shell {
    grid-template-columns: 1fr;
  }

  .safety-feature {
    grid-template-columns: 1fr;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-legal {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .appointment-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .appointment-copy {
    position: static;
  }

  .skincare-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .skincare-treatment-media {
    min-height: 390px;
  }

  .skincare-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .skincare-compact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    width: 62px;
    height: 62px;
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }

  .footer-legal {
    gap: 5px 12px;
    max-width: calc(100% - 82px);
  }

  .footer-legal span {
    width: 100%;
    white-space: normal;
  }

  .program-section {
    padding-block: 64px;
  }

  .program-card {
    border-radius: 18px;
  }

  .program-card-inner {
    padding: 26px 18px;
    border-radius: 17px;
  }

  .program-list li {
    grid-template-columns: 26px 1fr;
    gap: 12px;
    min-height: 54px;
  }

  .program-list strong {
    grid-column: 2;
    margin-top: -10px;
  }

  .clinical-section {
    padding-block: 64px;
  }

  .clinical-section::before {
    display: none;
  }

  .clinical-layout {
    gap: 26px;
  }

  .clinical-media {
    min-height: 360px;
    border-radius: 22px;
  }

  .clinical-media::after {
    left: 24px;
    bottom: 24px;
  }

  .clinical-points article {
    padding: 20px 18px 20px 58px;
  }

  .peptide-section {
    padding-block: 64px;
  }

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

  .peptide-copy .section-kicker {
    justify-content: center;
  }

  .peptide-copy .section-kicker::after {
    display: block;
  }

  .peptide-guidance {
    text-align: left;
  }

  .peptide-panel {
    padding: 8px;
    border-radius: 22px;
  }

  .peptide-price-list {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 16px;
  }

  .peptide-science-media {
    min-height: 230px;
    border-radius: 16px;
  }

  .peptide-price-list div {
    min-height: auto;
  }

  .safety-section {
    padding-block: 64px;
  }

  .safety-shell {
    border-radius: 24px;
  }

  .safety-card {
    min-height: auto;
  }

  .safety-image {
    min-height: 300px;
    border-radius: 22px;
  }

  .safety-note {
    border-radius: 18px;
    text-align: center;
  }

  .footer-main {
    padding: 18px;
    border-radius: 22px;
  }

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

  .footer-cta {
    padding: 20px;
  }

  .appointment-section {
    padding-block: 62px;
  }

  .appointment-section .container-xxl {
    padding-inline: 0;
  }

  .appointment-copy {
    padding-inline: 16px;
  }

  .appointment-widget {
    width: 100%;
    margin-inline: 0;
    padding: 6px;
    border-inline: 0;
    border-radius: 18px;
  }

  .appointment-widget .calendly-inline-widget {
    height: 640px !important;
    border-radius: 14px;
  }

  .appointment-widget iframe {
    border-radius: 14px !important;
  }

  .skincare-section {
    padding-block: 64px;
  }

  .skincare-section::before {
    display: none;
  }

  .skincare-intro .section-kicker {
    justify-content: center;
  }

  .skincare-intro .section-kicker::after {
    display: block;
  }

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

  .skincare-treatment-media {
    min-height: 310px;
    border-radius: 22px;
  }

  .skincare-treatment-media::before {
    inset: 12px;
    border-radius: 16px;
  }

  .skincare-treatment-media::after {
    left: 22px;
    bottom: 22px;
    font-size: 11px;
  }

  .skincare-proof {
    justify-content: center;
  }

  .skincare-card {
    border-radius: 20px;
  }

  .skincare-image {
    margin: 8px 8px 0;
    border-radius: 15px;
  }

  .skincare-content {
    padding: 22px 18px 24px;
  }

  .skincare-tags {
    justify-content: center;
  }

  .skincare-accordion {
    gap: 12px;
  }

  .skincare-group {
    border-radius: 20px;
  }

  .skincare-group summary {
    align-items: flex-start;
    min-height: 0;
    padding: 18px 16px;
  }

  .skincare-group summary span {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .skincare-group summary em {
    display: none;
  }

  .skincare-group summary::after {
    width: 36px;
    height: 36px;
    margin-top: 2px;
  }

  .skincare-compact-grid {
    gap: 12px;
    padding: 0 10px 10px;
  }

  .skincare-compact-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
    min-height: 138px;
    padding: 9px;
    border-radius: 16px;
  }

  .skincare-compact-card img {
    width: 96px;
    height: 118px;
    border-radius: 12px;
  }

  .skincare-compact-card span {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .skincare-compact-card h3 {
    font-size: clamp(21px, 6.2vw, 27px);
  }

  .skincare-compact-card p {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 991.98px) {
  section {
    scroll-margin-top: 88px;
  }

  .site-header {
    min-height: auto;
    padding-block: 8px;
  }

  .site-header .container-xxl {
    flex-wrap: wrap;
    padding-inline: 18px;
  }

  .brand img {
    width: min(205px, 58vw);
    height: 72px;
  }

  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(18, 59, 40, 0.1);
    border-radius: 18px;
    background: #fffdf7;
    box-shadow: 0 18px 42px rgba(18, 59, 40, 0.12);
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    margin: 0;
  }

  .header-cta {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(255, 254, 249, 0.98) 0%, rgba(255, 254, 249, 0.9) 44%, rgba(255, 254, 249, 0.56) 76%, rgba(255, 254, 249, 0.36) 100%),
      linear-gradient(180deg, rgba(18, 59, 40, 0) 0%, rgba(18, 59, 40, 0.1) 62%, rgba(18, 59, 40, 0.18) 100%),
      url("img/weight_loss.webp") 64% 38% / cover no-repeat;
  }

  .hero-content {
    padding-block: 54px 72px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-actions {
    align-items: stretch;
    max-width: 420px;
  }

  .journey-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }

  .journey-card-tall,
  .journey-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 575.98px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255, 254, 249, 0.99) 0%, rgba(255, 254, 249, 0.91) 48%, rgba(255, 254, 249, 0.58) 78%, rgba(255, 254, 249, 0.38) 100%),
      linear-gradient(180deg, rgba(18, 59, 40, 0) 0%, rgba(18, 59, 40, 0.1) 64%, rgba(18, 59, 40, 0.18) 100%),
      url("img/weight_loss.webp") 68% calc(100% - 70px) / auto 62% no-repeat;
  }

  .hero-content {
    padding-block: 36px 44px;
  }

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

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    max-width: none;
  }

  .btn-brand,
  .btn-outline-brand {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 18px;
  }

  .journey-section {
    padding-block: 58px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .journey-card {
    min-height: 390px;
  }

  .journey-card-body {
    padding: 24px;
  }

  .journey-cta {
    flex-direction: column;
  }

  .section-cta {
    flex-direction: column;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 18px 34px rgba(18, 59, 40, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 0 0 0 rgba(37, 211, 102, 0.28);
  }

  50% {
    box-shadow:
      0 22px 40px rgba(18, 59, 40, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
