:root {
  --black: #080806;
  --navy: #07336c;
  --navy-deep: #082d61;
  --ink: #263b58;
  --cream: #f9f2e8;
  --white: #f5f2ed;
  --gold: #bd8d40;
  --gold-light: #e0b85f;
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #111;
  background: #f3d59d;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.peptides-shell {
  min-width: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(150px, 215px) 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 10px clamp(24px, 3.5vw, 58px);
  border-bottom: 1px solid rgba(222, 181, 116, 0.14);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(7, 7, 7, 0.74));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 5, 5, 0.94);
}

.brand {
  display: block;
  width: clamp(142px, 13vw, 210px);
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.5vw, 28px);
}

.nav-item {
  position: relative;
  padding: 12px 0;
  color: rgba(246, 242, 237, 0.68);
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

a.nav-item:hover,
a.nav-item:focus-visible,
.nav-item.is-active {
  color: #f2d69d;
}

.nav-item.is-active::after,
a.nav-item:hover::after,
a.nav-item:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(201, 164, 111, 0.34);
  background: rgba(8, 7, 6, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 15px;
  color: rgba(244, 239, 231, 0.82);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--gold-light);
  background: rgba(201, 164, 111, 0.1);
}

.header-actions,
.social-links,
.login-link {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

.social-links {
  gap: 14px;
}

.social-links a {
  color: rgba(238, 230, 220, 0.72);
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.login-link {
  gap: 8px;
  color: rgba(238, 230, 220, 0.5);
  font-size: 11px;
}

.login-link svg {
  width: 18px;
  height: 18px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main {
  overflow: hidden;
}

.peptide-hero,
.guidance-section,
.quality-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.peptide-hero::after,
.guidance-section::after,
.quality-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
}

.peptide-hero::after {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.9) 0%, rgba(255, 250, 243, 0.64) 38%, rgba(255, 250, 243, 0.06) 66%, transparent 78%);
}

.guidance-section::after {
  background: radial-gradient(circle at 50% 45%, rgba(248, 253, 255, 0.78) 0%, rgba(239, 249, 255, 0.42) 54%, rgba(224, 240, 252, 0.08) 78%);
}

.quality-section::after {
  background: linear-gradient(180deg, rgba(246, 252, 255, 0.72), rgba(230, 246, 255, 0.42));
}

.guidance-section,
.quality-section {
  scroll-margin-top: 72px;
}

.section-background,
.section-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section-background img {
  object-fit: cover;
}

.section-kicker {
  margin: 0;
  color: #aa7938;
  font-size: clamp(11px, 1.05vw, 18px);
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-kicker.centered {
  text-align: center;
}

.peptide-hero {
  min-height: max(690px, 56.25vw);
  color: #180f0b;
}

.hero-content {
  position: absolute;
  z-index: 1;
  top: 24%;
  left: clamp(48px, 6.45vw, 110px);
  width: min(39vw, 610px);
}

.hero-content .section-kicker {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-content .section-kicker span {
  display: block;
  width: clamp(45px, 4vw, 68px);
  height: 1px;
  background: var(--gold);
}

.hero-content h1 {
  margin: 22px 0 22px;
  font-family: var(--serif);
  font-size: clamp(63px, 5.4vw, 94px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.83;
}

.hero-content h1 em {
  color: #b18242;
  font-weight: 400;
}

.hero-description {
  max-width: 520px;
  margin: 0 0 28px;
  color: #2c2927;
  font-size: clamp(14px, 1.25vw, 21px);
  line-height: 1.55;
}

.text-cta {
  position: relative;
  display: inline-block;
  padding: 14px 0 9px;
  color: #083b78;
  font-size: clamp(11px, 1.05vw, 17px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-cta:hover::after,
.text-cta:focus-visible::after {
  transform: scaleX(0.55);
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 15%;
  left: 16.6%;
  width: 1px;
  height: clamp(48px, 4.5vw, 78px);
  background: var(--gold);
}

.scroll-cue span {
  position: absolute;
  bottom: -5px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.guidance-section {
  display: grid;
  min-height: max(650px, 53.35vw);
  color: var(--navy-deep);
  place-items: center;
}

.guidance-content {
  position: relative;
  z-index: 1;
  width: min(84%, 1030px);
  padding-top: 2.3vw;
  text-align: center;
}

.ornament,
.card-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.ornament {
  margin: 20px auto 22px;
}

.ornament span {
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c79b45);
}

.ornament span:last-child {
  background: linear-gradient(90deg, #c79b45, transparent);
}

.ornament b,
.card-ornament b {
  width: 9px;
  height: 9px;
  background: #efc55d;
  box-shadow: 0 0 12px rgba(239, 197, 93, 0.75);
  transform: rotate(45deg);
}

.guidance-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 7.6vw, 132px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.77;
}

.guidance-description {
  margin: 30px 0 38px;
  color: #2a4263;
  font-size: clamp(16px, 1.65vw, 28px);
  line-height: 1.55;
}

.guidance-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.peptide-button {
  display: grid;
  min-height: clamp(72px, 6.5vw, 104px);
  padding: 18px 28px;
  border: 2px solid #bd862d;
  border-radius: 6px;
  font-size: clamp(13px, 1.35vw, 22px);
  font-weight: 600;
  letter-spacing: 0.19em;
  text-decoration: none;
  text-transform: uppercase;
  place-items: center;
}

.peptide-button-primary {
  color: #d9aa50;
  background: linear-gradient(110deg, #07316a, #0c4c91 50%, #062e65);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.09), 0 8px 24px rgba(15, 61, 111, 0.16);
}

.peptide-button-primary[aria-disabled="true"] {
  cursor: default;
}

.peptide-button-secondary {
  color: #0a3974;
  background: rgba(245, 250, 255, 0.2);
  transition: color 180ms ease, background 180ms ease;
}

.peptide-button-secondary:hover,
.peptide-button-secondary:focus-visible {
  color: #fff;
  background: #0a3a75;
}

.ornament-small {
  margin: 35px auto 22px;
}

.ornament-small span {
  width: 92px;
}

.guidance-note {
  margin: 0;
  color: #2f4562;
  font-size: clamp(12px, 1.1vw, 18px);
  font-style: italic;
  line-height: 1.45;
}

.quality-section {
  min-height: max(680px, 53.35vw);
  color: var(--navy-deep);
}

.quality-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6.4vw 7.6vw 6vw;
}

.quality-heading {
  text-align: center;
}

.quality-heading .ornament {
  margin: 18px auto 16px;
}

.quality-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5.7vw, 98px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.85;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 2.3vw, 42px);
  margin-top: clamp(58px, 5vw, 88px);
}

.quality-card {
  position: relative;
  display: grid;
  min-height: clamp(290px, 24vw, 414px);
  padding: clamp(66px, 5.5vw, 98px) clamp(28px, 3vw, 50px) 38px;
  border: 1.5px solid #c7952f;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(225, 244, 255, 0.36));
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.66), 0 12px 28px rgba(62, 109, 150, 0.1);
  backdrop-filter: blur(3px);
  text-align: center;
  place-items: start center;
}

.quality-icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: clamp(100px, 8.6vw, 148px);
  aspect-ratio: 1;
  border: 2px solid #d2a23e;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 250, 255, 0.95), rgba(168, 220, 253, 0.72));
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.9), 0 10px 28px rgba(56, 124, 172, 0.16);
  transform: translate(-50%, -50%);
  place-items: center;
}

.quality-icon-art {
  position: relative;
  display: block;
  width: 56%;
  aspect-ratio: 1;
}

.quality-icon-art svg {
  position: absolute;
  color: #c39224;
  filter: drop-shadow(0 2px 3px rgba(117, 78, 6, 0.12));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quality-icon-primary {
  inset: 0;
  width: 100%;
  height: 100%;
}

.quality-icon--control .quality-icon-art {
  width: 54%;
}

.quality-icon--ordering .quality-icon-art {
  width: 59%;
  transform: translate(-2%, 2%);
}

.quality-icon--ordering .quality-icon-primary {
  top: 19%;
  right: 15%;
  bottom: auto;
  left: 0;
  width: 82%;
  height: 82%;
}

.quality-icon--ordering .quality-icon-detail {
  top: -1%;
  right: -2%;
  width: 43%;
  height: 43%;
  padding: 4%;
  border-radius: 50%;
  background: rgba(230, 248, 255, 0.92);
  stroke-width: 1.9;
}

.quality-icon--excellence .quality-icon-art {
  width: 60%;
}

.quality-icon--excellence .quality-icon-primary {
  inset: 0;
}

.quality-icon--excellence .quality-icon-detail {
  top: 20%;
  left: 50%;
  width: 32%;
  height: 32%;
  fill: currentColor;
  stroke-width: 1.45;
  transform: translateX(-50%);
}

.quality-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.card-ornament {
  margin: 24px auto 25px;
}

.card-ornament span {
  width: clamp(35px, 3vw, 58px);
  height: 1px;
  background: #d0aa50;
}

.card-ornament b {
  width: 8px;
  height: 8px;
  box-shadow: none;
}

.quality-card p {
  margin: 0;
  color: #2d405b;
  font-size: clamp(14px, 1.35vw, 22px);
  line-height: 1.75;
}

.site-footer {
  padding: clamp(72px, 7vw, 110px) clamp(30px, 6vw, 100px) 32px;
  border-top: 1px solid rgba(201, 164, 111, 0.32);
  background: radial-gradient(circle at 8% 2%, rgba(190, 137, 70, 0.18), transparent 28%), linear-gradient(145deg, #090806, #11100d 52%, #080706);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 1fr 0.85fr;
  gap: clamp(34px, 4vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
}

.footer-brand img {
  width: min(100%, 245px);
}

.footer-brand p,
.footer-connect p {
  max-width: 320px;
  color: rgba(231, 224, 215, 0.62);
  line-height: 1.6;
}

.footer-brand p {
  font-family: var(--serif);
  font-size: 22px;
}

.footer-column h2 {
  margin: 4px 0 26px;
  color: #d2a766;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav span {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  color: rgba(241, 235, 227, 0.72);
  font-family: var(--serif);
  font-size: 19px;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-light);
}

.footer-nav span[aria-disabled="true"] {
  color: rgba(241, 235, 227, 0.36);
}

.footer-visit address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(236, 229, 220, 0.7);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.footer-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 28px;
  padding: 15px 17px;
  border: 1px solid rgba(201, 164, 111, 0.65);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-book-link svg {
  width: 17px;
}

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

.footer-socials {
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 164, 111, 0.4);
  border-radius: 50%;
  color: #d8b171;
  text-decoration: none;
  place-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: 70px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 164, 111, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: rgba(226, 219, 210, 0.45);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.quality-card:nth-child(2) {
  transition-delay: 100ms;
}

.quality-card:nth-child(3) {
  transition-delay: 200ms;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(132px, 175px) 1fr auto;
  }

  .primary-nav {
    gap: 14px;
  }

  .social-links,
  .login-link span {
    display: none;
  }
}

@media (max-width: 899px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 9px 22px;
  }

  .site-header.is-scrolled {
    min-height: 68px;
  }

  .brand {
    width: 122px;
  }

  .primary-nav,
  .login-link {
    display: none;
  }

  .social-links {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    background: #ead8bb;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 95px 30px 40px;
    background: rgba(5, 5, 4, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    color: #e9d8bb;
    background: transparent;
    font-family: var(--serif);
    font-size: 40px;
  }

  .mobile-nav-item {
    color: rgba(242, 236, 226, 0.53);
    font-family: var(--serif);
    font-size: 26px;
    text-decoration: none;
  }

  .mobile-nav-item.is-active {
    color: #e6bd78;
  }

  .mobile-nav-group {
    width: min(100%, 300px);
  }

  .mobile-treatment-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
  }

  .mobile-treatment-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
    transition: transform 200ms ease;
  }

  body.treatment-menu-open .mobile-treatment-toggle svg {
    transform: rotate(180deg);
  }

  .mobile-subnav {
    max-height: 0;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
  }

  body.treatment-menu-open .mobile-subnav {
    max-height: 70px;
    padding-top: 13px;
    opacity: 1;
  }

  .mobile-subnav a {
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-socials {
    margin-top: 8px;
  }

  .mobile-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 164, 111, 0.45);
    border-radius: 50%;
    color: #d9b373;
    text-decoration: none;
    place-items: center;
  }

  .peptide-hero {
    min-height: 210.65vw;
  }

  .peptide-hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.78) 46%, rgba(255, 250, 243, 0.18) 62%, transparent 72%);
  }

  .guidance-section::after {
    background: radial-gradient(ellipse at 50% 40%, rgba(250, 253, 255, 0.88) 0%, rgba(238, 249, 255, 0.58) 58%, rgba(228, 243, 253, 0.12) 82%);
  }

  .quality-section::after {
    background: linear-gradient(180deg, rgba(247, 252, 255, 0.82), rgba(226, 244, 255, 0.56));
  }

  .hero-content {
    top: 7.4%;
    left: 50%;
    width: min(84%, 660px);
    text-align: center;
    transform: translateX(-50%);
  }

  .js .hero-content.reveal {
    transform: translate(-50%, 34px);
  }

  .js .hero-content.reveal.is-visible {
    transform: translate(-50%, 0);
  }

  .hero-content .section-kicker {
    display: block;
    font-size: clamp(12px, 3vw, 22px);
  }

  .hero-content .section-kicker::after,
  .hero-content .section-kicker::before {
    display: inline-block;
    width: 20%;
    height: 1px;
    margin: 0 12px 4px;
    background: var(--gold);
    content: "";
  }

  .hero-content .section-kicker span {
    display: none;
  }

  .hero-content h1 {
    margin: 7vw 0 5vw;
    font-size: clamp(55px, 14.5vw, 110px);
    line-height: 0.88;
  }

  .hero-description {
    max-width: none;
    margin-bottom: 6vw;
    font-size: clamp(15px, 4vw, 28px);
    line-height: 1.55;
  }

  .text-cta {
    display: grid;
    width: 100%;
    min-height: clamp(66px, 16vw, 105px);
    padding: 18px 24px;
    border: 2px solid #b88537;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(110deg, #063372, #08539b 48%, #06346e);
    font-size: clamp(12px, 3.4vw, 23px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
    place-items: center;
  }

  .text-cta::after {
    display: none;
  }

  .scroll-cue {
    bottom: 45%;
    left: 50%;
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(173, 124, 48, 0.72);
    border-radius: 50%;
    background: rgba(255, 249, 239, 0.84);
    box-shadow: 0 8px 22px rgba(83, 51, 13, 0.18), inset 0 0 12px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(7px);
    transform: translateX(-50%);
    place-items: center;
  }

  .scroll-cue span {
    position: static;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #9d6e2c;
    border-bottom: 2px solid #9d6e2c;
    border-radius: 0;
    background: transparent;
    transform: translateY(-2px) rotate(45deg);
  }

  .guidance-section {
    min-height: 211.1vw;
    border-radius: 30px 30px 0 0;
  }

  .guidance-content {
    align-self: start;
    width: min(84%, 680px);
    padding-top: 31vw;
  }

  .guidance-content .section-kicker {
    font-size: clamp(12px, 3.25vw, 22px);
  }

  .guidance-content .ornament {
    margin: 4vw auto 6vw;
  }

  .guidance-content h2 {
    font-size: clamp(64px, 16.7vw, 122px);
    line-height: 0.8;
  }

  .guidance-description {
    margin: 7vw 0 8.5vw;
    font-size: clamp(15px, 4.15vw, 29px);
    line-height: 1.5;
  }

  .desktop-break {
    display: none;
  }

  .guidance-actions {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .peptide-button {
    min-height: clamp(70px, 15.5vw, 112px);
    font-size: clamp(12px, 3.3vw, 23px);
  }

  .ornament-small {
    margin: 8vw auto 6vw;
  }

  .guidance-note {
    font-size: clamp(12px, 3vw, 21px);
    line-height: 1.5;
  }

  .quality-section {
    min-height: 210.65vw;
  }

  .quality-content {
    padding: 16vw 6.6vw 8vw;
  }

  .quality-heading .section-kicker {
    font-size: clamp(12px, 3.1vw, 21px);
  }

  .quality-heading .ornament {
    margin: 4vw auto 5vw;
  }

  .quality-heading h2 {
    margin: 0 auto;
    max-width: 80%;
    font-size: clamp(58px, 14.8vw, 105px);
    line-height: 0.78;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 3.2vw;
    margin-top: 10vw;
  }

  .quality-card {
    grid-template-columns: clamp(70px, 20vw, 100px) minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    padding: clamp(18px, 4.5vw, 32px);
    border-radius: 20px;
    text-align: left;
  }

  .quality-icon {
    position: static;
    justify-self: center;
    width: clamp(64px, 18vw, 88px);
    border-width: 1.5px;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.94), 0 7px 18px rgba(56, 124, 172, 0.14);
    transform: none;
  }

  .quality-card-copy {
    align-self: stretch;
    min-width: 0;
    padding: 0 0 0 clamp(16px, 4vw, 28px);
    border-left: 1px solid rgba(207, 164, 67, 0.65);
  }

  .quality-card h3 {
    font-size: clamp(19px, 4.6vw, 34px);
    line-height: 1.15;
  }

  .card-ornament {
    justify-content: flex-start;
    margin: 4vw 0 4vw;
  }

  .quality-card p {
    font-size: clamp(13px, 3.35vw, 24px);
    line-height: 1.55;
  }

  .quality-card:nth-child(2),
  .quality-card:nth-child(3) {
    transition-delay: 0ms;
  }

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

@media (max-width: 699px) {
  .site-header {
    padding-inline: 16px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    font-size: 12px;
  }

  .header-actions {
    gap: 11px;
  }

  .brand {
    width: 104px;
  }

  .mobile-nav {
    justify-content: flex-start;
    gap: 13px;
    overflow-y: auto;
  }

  .mobile-nav-item {
    font-size: 23px;
  }

  .hero-content {
    top: 9%;
    width: 87%;
  }

  .hero-content h1 {
    margin-top: max(3px, calc(4vw - 12px));
    margin-bottom: 3vw;
    font-size: 13.9vw;
  }

  .hero-content .section-kicker {
    position: relative;
    top: 12px;
  }

  .hero-description {
    margin-bottom: 4vw;
  }

  .scroll-cue {
    bottom: 44.2%;
    width: 30px;
    height: 30px;
  }

  .scroll-cue span {
    width: 8px;
    height: 8px;
  }

  .quality-content {
    padding: 48px 20px 64px;
  }

  .quality-heading .ornament {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .quality-heading h2 {
    max-width: 88%;
    font-size: clamp(46px, 13vw, 64px);
    line-height: 0.82;
  }

  .quality-grid {
    gap: 12px;
    margin-top: 44px;
  }

  .quality-card {
    grid-template-columns: clamp(62px, 18vw, 72px) minmax(0, 1fr);
    padding: 18px 16px;
    border-radius: 18px;
  }

  .quality-card-copy {
    padding-left: 16px;
  }

  .quality-icon {
    width: clamp(58px, 16vw, 66px);
  }

  .quality-icon-art svg {
    filter: drop-shadow(0 1px 2px rgba(117, 78, 6, 0.1));
    stroke-width: 1.65;
  }

  .quality-card h3 {
    font-size: clamp(17px, 4.35vw, 22px);
    line-height: 1.12;
  }

  .card-ornament {
    margin-block: 10px;
  }

  .quality-card p {
    font-size: clamp(12px, 3.15vw, 15px);
    line-height: 1.45;
  }

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

  .footer-brand img,
  .footer-brand p,
  .footer-connect p,
  .footer-nav a,
  .footer-nav span {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-visit address {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
