:root {
  --sand: #f7efe4;
  --cream: #fffaf3;
  --gold: #b2752a;
  --gold-deep: #8d5a18;
  --blue: #93badb;
  --blue-soft: #dce9f4;
  --ink: #47382f;
  --muted: #746456;
  --line: rgba(143, 100, 46, 0.18);
  --shadow: 0 18px 44px rgba(94, 62, 28, 0.1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}

section[id] {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(147, 186, 219, 0.18), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(178, 117, 42, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdfa 0%, #fff7ef 100%);
}

body > *:not(.page-watermark) {
  position: relative;
  z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1520px, calc(100% - 4rem)); margin: 0 auto; }

.page-watermark {
  position: fixed;
  left: 50%;
  top: 42%;
  width: min(54vw, 823px);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(-50%, calc(-50% + var(--page-watermark-offset, 0px)), 0);
  will-change: transform;
  filter: blur(0.35px);
}

.page-watermark img {
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 243, 0.84);
  border-bottom: 1px solid rgba(178, 117, 42, 0.1);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178, 117, 42, 0.28), transparent);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
}

main {
  padding-top: 6.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  max-width: min(34vw, 430px);
}
.brand picture { display: block; width: 100%; }
.brand-logo,
.brand img {
  display: block;
  width: clamp(270px, 24vw, 380px);
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.site-nav a:hover,
.nav-link:hover { color: var(--gold-deep); }

.nav-item {
  position: relative;
  padding-bottom: 0.55rem;
  margin-bottom: -0.55rem;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.9rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-item.is-open .nav-dropdown-toggle::after,
.nav-item:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateX(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.18rem);
  left: 50%;
  min-width: 220px;
  width: max-content;
  max-width: min(300px, 88vw);
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(143, 100, 46, 0.12);
  box-shadow: 0 18px 38px rgba(94, 62, 28, 0.12);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.74);
  color: var(--gold-deep);
}

.nav-subitem {
  position: relative;
}

.nav-subitem::before {
  content: "";
  position: absolute;
  top: -0.55rem;
  right: -0.7rem;
  width: 0.85rem;
  height: calc(100% + 1.1rem);
}

.nav-subitem-main {
  position: relative;
  padding-right: 1.6rem !important;
}

.nav-subitem-main::after {
  content: "";
  position: absolute;
  right: 0.78rem;
  top: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.72;
}

.nav-submenu {
  position: absolute;
  top: -0.55rem;
  left: calc(100% - 0.1rem);
  min-width: 190px;
  padding: 0.55rem;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.97);
  border: 1px solid rgba(143, 100, 46, 0.12);
  box-shadow: 0 18px 38px rgba(94, 62, 28, 0.12);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 2;
}

.nav-subitem:hover .nav-submenu,
.nav-subitem:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-cta {
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  background: var(--gold);
  color: #fff8f0;
  box-shadow: 0 10px 22px rgba(178, 117, 42, 0.16);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--gold-deep); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2.75rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -70px;
  background: radial-gradient(circle, rgba(147, 186, 219, 0.18), transparent 70%);
}
.hero::after {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(178, 117, 42, 0.09), transparent 70%);
}

.hero-grid,
.story-grid,
.about-grid,
.cta-grid,
.contact-grid,
.policies-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.74fr);
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.card-label,
.band-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.hero-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.6rem, 2.7vw, 3.4rem);
  line-height: 1;
  max-width: 18ch;
}

.hero-title {
  max-width: none;
}

.lede,
.section-heading p,
.story-copy,
.about-copy p,
.cta-grid p,
.contact-grid p,
.faq-list p,
.service-card p,
.note-card p,
.band-panel p,
.quote-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 860px;
}
.hero-copy .lede {
  max-width: 62ch;
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 275ms ease, box-shadow 275ms ease, border-color 275ms ease;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.34) 46%, transparent 70%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 650ms ease, opacity 300ms ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(94, 62, 28, 0.14);
}
.button:hover::after {
  opacity: 1;
  transform: translateX(120%);
}
.button-primary {
  background: linear-gradient(135deg, var(--gold), #cb9a59);
  color: #fff8ef;
}
.button-secondary {
  border-color: rgba(178, 117, 42, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--gold-deep);
}

.button-card {
  margin-top: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-meta span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(147, 186, 219, 0.28);
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-side {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card,
.service-card,
.note-card,
.quote-card,
.contact-form,
.faq-list details,
.band-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(143, 100, 46, 0.12);
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background-color 300ms ease;
}
.hero-card {
  width: min(100%, 440px);
  padding: 2rem;
  border-radius: 32px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(143, 100, 46, 0.14);
  box-shadow: 0 22px 44px rgba(94, 62, 28, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 239, 228, 0.3));
}

.peptide-hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 0.7rem;
  width: min(100%, 600px);
  padding: 1.35rem;
  background:
    radial-gradient(circle at 74% 18%, rgba(147, 186, 219, 0.22), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(178, 117, 42, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 243, 0.58));
}

.peptide-visual-image {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-self: center;
  margin: -0.25rem 0 0.35rem;
  border-radius: 28px;
  box-shadow: 0 22px 42px rgba(94, 62, 28, 0.1);
}

.peptide-bottle-photo {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(143, 100, 46, 0.1);
}

.peptide-path-pills {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.peptide-path-pills span {
  padding: 0.72rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(143, 100, 46, 0.12);
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.peptide-hero-panel .card-label,
.peptide-hero-panel h2,
.peptide-hero-panel .feature-list,
.peptide-hero-panel .peptide-path-pills {
  position: relative;
  z-index: 2;
}

.hero-card-signature {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(26px);
  border: 1px solid rgba(147, 186, 219, 0.42);
  box-shadow: 0 28px 60px rgba(94, 62, 28, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(223, 236, 246, 0.22));
}

.hero-card-signature::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(147, 186, 219, 0.34), transparent 38%),
    radial-gradient(circle at 78% 82%, rgba(178, 117, 42, 0.18), transparent 42%);
  filter: blur(18px);
}

.hero-card-signature::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06));
  opacity: 0.8;
}

.hero-card:hover,
.service-card:hover,
.note-card:hover,
.quote-card:hover,
.band-panel:hover,
.testimonial-card:hover,
.result-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 48px rgba(94, 62, 28, 0.16);
  border-color: rgba(178, 117, 42, 0.22);
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.hero-card h2 { font-size: 1.45rem; }
.badge {
  width: 92px;
  height: auto;
}
.feature-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.9;
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}
.band-panel {
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 250, 243, 0.34));
  border: 1px solid rgba(143, 100, 46, 0.1);
  box-shadow: 0 18px 34px rgba(94, 62, 28, 0.08);
}
.band-panel p {
  margin: 0;
  font-size: 0.97rem;
}

.section {
  padding: 5rem 0;
}
.section h2 {
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  max-width: 26ch;
  line-height: 1.04;
}
.section-heading {
  margin-bottom: 2rem;
  max-width: 860px;
}
.section-heading.compact {
  margin-bottom: 0;
}

.section-story {
  padding-top: 4.5rem;
}
.story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  align-items: center;
  gap: 2rem;
}
.story-head {
  max-width: 980px;
  padding-right: 2.25rem;
  border-right: 1px solid rgba(178, 117, 42, 0.14);
}
.story-head h2 {
  max-width: 18ch;
}
.story-copy {
  margin: 1rem 0 0;
  max-width: 60ch;
  font-size: 1.06rem;
}
.story-aside {
  display: flex;
  justify-content: flex-start;
}
.quote-card {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(220, 233, 244, 0.32));
}

.story-photo-card {
  width: min(610px, calc(100vw - 2rem));
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(143, 100, 46, 0.14);
  box-shadow: 0 28px 54px rgba(94, 62, 28, 0.14);
  transform: translateX(-10.2rem);
}

.story-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.01) brightness(1.02);
}

.story-photo-card figcaption {
  padding: 1rem 1.15rem 1.1rem;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.82);
}

.story-photo-card figcaption span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.08;
  color: var(--gold-deep);
}

.peptide-trust-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(640px, 0.86fr);
  align-items: center;
  gap: 3rem;
}

.peptide-trust-grid .story-head {
  display: grid;
  align-content: center;
  border-right: 0;
  padding-right: 0;
}

.peptide-trust-grid .story-aside {
  align-items: stretch;
}

.peptide-trust-grid .quote-card {
  width: 100%;
  min-height: 220px;
  display: grid;
  align-content: center;
}

.peptide-process-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
}

.peptide-process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(250, 246, 239, 0.94) 4%, rgba(250, 246, 239, 0.28) 9%, rgba(250, 246, 239, 0) 16%, rgba(250, 246, 239, 0) 84%, rgba(250, 246, 239, 0.28) 91%, rgba(250, 246, 239, 0.94) 96%, var(--cream) 100%),
    linear-gradient(180deg, var(--cream) 0%, rgba(250, 246, 239, 0.48) 4%, rgba(250, 246, 239, 0) 10%);
}

.peptide-process-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) contrast(0.94) brightness(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.82) 3%, #000 10%, #000 90%, rgba(0, 0, 0, 0.82) 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.82) 3%, #000 10%, #000 90%, rgba(0, 0, 0, 0.82) 97%, transparent 100%);
}

.peptide-process-card figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  width: min(92%, 420px);
  margin: -1.2rem auto 0;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(143, 100, 46, 0.12);
  color: var(--muted);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(94, 62, 28, 0.12);
}

.peptide-process-card figcaption span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.08;
  color: var(--gold-deep);
}

.peptide-process-card figcaption strong {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
}

.quote-card p {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--gold-deep);
}
.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.services-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-preview-card {
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(143, 100, 46, 0.12);
  box-shadow: var(--shadow);
}

.service-preview-media {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(143, 100, 46, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 250, 243, 0.28));
}

.service-preview-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02) brightness(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.service-preview-media-results img {
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(240, 247, 250, 0.34));
}

.service-preview-card:hover .service-preview-media img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.03) brightness(1.03);
}

.service-preview-label {
  margin: 1.35rem 1.45rem 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.service-preview-card h3 {
  margin: 0 1.45rem 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.38rem;
  color: var(--gold-deep);
}

.service-preview-card > p:not(.service-preview-label) {
  margin: 0 1.45rem;
  color: var(--muted);
  line-height: 1.72;
}

.service-preview-card .text-link {
  margin: 1rem 1.45rem 1.45rem;
}

.services-preview-large .service-preview-card {
  min-height: 100%;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--gold-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--ink);
}

#endolifting,
#peptides,
#weight-loss,
#energy-booster,
#longevity,
#recovery {
  scroll-margin-top: 120px;
}

.peptide-category-grid .service-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.peptide-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.peptide-category-grid .price {
  margin-top: auto;
}

.peptide-price-list {
  display: grid;
  gap: 1rem;
}

.service-card {
  padding: 1.55rem;
  border-radius: 24px;
}
.service-card h3,
.note-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  color: var(--gold-deep);
}
.service-card p,
.note-card p {
  margin: 0;
}
.service-card-highlight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(219, 233, 245, 0.54));
}
.price {
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(219, 233, 245, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 250, 243, 0.82), rgba(255, 255, 255, 0.94));
}
.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 2.5rem;
}

#about .reveal-on-scroll {
  transition:
    opacity 1375ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 1375ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}
.about-copy h2 {
  max-width: 13ch;
}

.about-title {
  max-width: none;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.35rem;
  max-width: 860px;
}

.about-side {
  display: grid;
  align-content: start;
}
.about-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(143, 100, 46, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 239, 228, 0.42));
  box-shadow: var(--shadow);
}

.about-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.note-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.about-highlights .note-card {
  min-height: 100%;
}

.credentials-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(220, 233, 244, 0.26));
}

.policies-grid {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 2rem;
}
.policy-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}
.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gold-deep);
}

.cta-band {
  background:
    radial-gradient(circle at 10% 10%, rgba(147, 186, 219, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(178, 117, 42, 0.06), rgba(255, 255, 255, 0.78));
}
.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 2rem;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 28px;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.contact-form label.full {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(143, 100, 46, 0.18);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 250, 243, 0.8);
  color: var(--ink);
}

.site-footer {
  padding: 2rem 0 3rem;
}
.section-actions {
  margin-top: 1.6rem;
}

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

.peptide-page-hero {
  padding-bottom: 0;
}

.peptide-page-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  gap: 2.5rem;
}

.peptide-categories-section {
  position: relative;
  z-index: 2;
  margin-top: -2.75rem;
  padding-top: 2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 3rem;
  align-items: start;
}
.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  max-width: 16ch;
}
.page-title-services {
  max-width: none;
}

.page-title-results {
  max-width: none;
}

.title-line {
  display: block;
}
.heading-split-2 {
  max-width: 14ch;
}
.heading-split-3 {
  max-width: 18ch;
}

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

.result-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(143, 100, 46, 0.12);
  box-shadow: var(--shadow);
}

.result-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.result-media {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.result-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.result-media-contain {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(247, 239, 228, 0.42));
}

.result-media-contain img {
  aspect-ratio: auto;
  object-fit: contain;
}

.result-card-wide .result-media img {
  aspect-ratio: 5 / 4;
}

.result-card-wide .result-media-contain img {
  aspect-ratio: auto;
}

.result-comparison-card {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

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

.result-comparison-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(143, 100, 46, 0.1);
}

.result-comparison-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.result-comparison-panel figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(143, 100, 46, 0.12);
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.result-copy {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.result-label {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.result-card h3,
.testimonial-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
}

.result-card h3 {
  font-size: 1.6rem;
  line-height: 1.02;
}

.result-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.testimonial-strip {
  display: grid;
  gap: 2rem;
}

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

.testimonial-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(143, 100, 46, 0.12);
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.testimonial-card p {
  font-size: 1.38rem;
  line-height: 1.08;
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(178, 117, 42, 0.12);
}
.footer-wrap img {
  width: clamp(250px, 20vw, 340px);
  height: auto;
}
.footer-wrap p,
.footer-wrap a {
  margin: 0;
  display: block;
  color: var(--muted);
  line-height: 1.8;
}

.footer-contact {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link:hover {
  color: var(--gold-deep);
  transform: translateY(-1px);
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 1rem;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 1025ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 1025ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .button,
  .hero-card,
  .service-card,
  .note-card,
  .quote-card,
  .contact-form,
  .faq-list details,
  .band-panel,
  .testimonial-card,
  .result-card,
  .reveal-on-scroll {
    transition: none !important;
    transform: none !important;
  }

  .button::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .about-grid,
  .policies-grid,
  .contact-grid,
  .services-grid,
  .services-preview,
  .results-grid,
  .testimonial-grid,
  .peptide-trust-grid,
  .policy-cards {
    grid-template-columns: 1fr;
  }

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

  .peptide-categories-section {
    margin-top: 0;
    padding-top: 4rem;
  }

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

  .hero-band {
    grid-template-columns: 1fr;
  }

  .hero-side,
  .story-aside,
  .hero-panel {
    justify-content: flex-start;
  }

  .story-photo-card {
    transform: none;
  }

  .story-head {
    padding-right: 0;
    border-right: 0;
  }

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

@media (max-width: 960px) {
  .container { width: min(100%, calc(100% - 2rem)); }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }

  .nav-item {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-item::after {
    display: none;
  }

  .site-nav > a,
  .nav-link,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
    padding: 0.3rem 0;
  }

  .site-nav .nav-dropdown {
    position: static !important;
    inset: auto !important;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-top: 0.35rem;
    padding: 0.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    display: none;
  }

  .site-nav .nav-dropdown a {
    white-space: normal;
    width: 100%;
  }

  .nav-subitem-main::after {
    display: none;
  }

  .site-nav .nav-submenu {
    position: static !important;
    inset: auto !important;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0.15rem 0 0;
    padding: 0.15rem 0 0.15rem 0.8rem;
    border: 0;
    border-left: 1px solid rgba(143, 100, 46, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    display: grid;
  }

  .site-nav .nav-submenu a {
    padding-left: 1rem;
  }

  .site-nav .nav-item.is-open > .nav-dropdown {
    display: grid;
  }

  .brand {
    max-width: 58vw;
  }
  .brand-logo,
  .brand img {
    width: clamp(220px, 35vw, 320px);
  }
}

@media (max-width: 720px) {
  main {
    padding-top: 6rem;
  }

  .hero-card,
  .peptide-hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .page-watermark {
    width: min(85vw, 475px);
    top: 40%;
    opacity: 0.04;
  }

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

  .brand {
    max-width: 72vw;
  }
  .brand-logo,
  .brand img {
    width: clamp(180px, 58vw, 250px);
  }

  .hero {
    padding-top: 3.5rem;
  }
  .hero h1,
  .section h2 {
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.4rem);
  }
  .hero-title .title-line,
  .page-title-services .title-line,
  .about-title .title-line {
    white-space: normal;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .footer-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 721px) {
  .hero-title {
    font-size: clamp(2.35rem, 2.35vw, 3rem);
    line-height: 0.98;
  }

  .hero-title .title-line,
  .page-title-services .title-line,
  .about-title .title-line {
    white-space: nowrap;
  }

  .page-title-services {
    font-size: clamp(1.8rem, 2vw, 2.35rem);
    line-height: 0.98;
  }
}
