/* ============================================================
   PT-141 Bali — Peptide+  |  Warm editorial / villa-concierge
   Palette: warm ivory + sand, deep teal ink, villa-pool cyan accent
   Type: Cormorant Garamond (display) · Hanken Grotesk (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  /* clean cool neutrals */
  --bg:        #FFFFFF;
  --bg-2:      #F1F6F8;
  --surface:   #FFFFFF;
  --ink:       #0E1A1F;
  --ink-2:     #4B5961;
  --ink-3:     #87959C;
  --line:      #E3EBEE;
  --line-soft: #EEF3F5;

  /* brand cyan — Peptide+ (#06b6d4) */
  --accent:        #06b6d4;   /* brand cyan */
  --accent-bright: #22d3ee;   /* lighter cyan highlight */
  --accent-ink:    #0a7d92;   /* darker cyan for text on pale (readable) */
  --accent-soft:   #d6f1f6;   /* pale cyan wash */
  --accent-soft-2: #ecf8fa;

  /* deep section — brand teal */
  --deep:      #0a5d6c;
  --deep-2:    #0b6f80;
  --on-deep:   #F1FAFB;
  --on-deep-2: #C2E3E8;

  --gold:      #06b6d4;       /* stars use brand cyan */

  /* type — clean modern sans, brand-consistent */
  --serif: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(33,30,24,.04), 0 8px 30px -12px rgba(33,30,24,.12);
  --shadow-lg: 0 2px 4px rgba(33,30,24,.05), 0 24px 60px -20px rgba(20,50,59,.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- shared ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
/* cyan-gradient glow headline treatment */
h1, h2 {
  background-image: linear-gradient(180deg, #6fdcec 0%, #06b6d4 52%, #0a93ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 3px 16px rgba(6,182,212,.28));
  padding-bottom: .04em;
}
.why h2, .cta h2 { background: none; -webkit-text-fill-color: var(--on-deep); color: var(--on-deep); filter: none; }
h2 { font-size: clamp(30px, 4.4vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.18; }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }
.section-head { max-width: 64ch; margin-bottom: 56px; }
.section-head h2 { margin: 18px 0 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.muted { color: var(--ink-2); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--wa { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(14,124,140,.6); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(14,124,140,.7); background: #0c6e7d; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--light { background: var(--on-deep); color: var(--deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(0,0,0,.4); }
.btn--block { width: 100%; justify-content: center; }

/* placeholder imagery */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, rgba(20,50,59,.05) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--accent-soft-2), var(--bg-2));
  border: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.ph span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink); background: rgba(252,250,245,.85); border: 1px solid var(--line);
  padding: 6px 10px; border-radius: 999px; margin: 14px;
  backdrop-filter: blur(2px);
}

.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(14,26,31,.04), 0 6px 22px -20px rgba(14,26,31,.55);
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 rgba(14,26,31,.05), 0 12px 30px -20px rgba(14,26,31,.6); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand b { font-family: var(--sans); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.brand small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-top: 1px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 14.5px; color: var(--ink-2); transition: color .15s; font-weight: 500; }
.nav__links a:hover { color: var(--accent-ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--line); padding: 6px 11px; border-radius: 999px; transition: color .15s, border-color .15s; }
.nav__tag:hover { color: var(--accent-ink); border-color: var(--accent); }
.nav .btn { padding: 11px 20px; font-size: 14.5px; }

/* ============================================================ HERO */
.hero { position: relative; padding: 72px 0 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 74px); line-height: 1.02; margin: 22px 0 0; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--accent-ink); }
.hero .lede { margin: 26px 0 0; }
.hero__rating { display: flex; align-items: center; gap: 12px; margin: 30px 0 0; font-size: 14.5px; color: var(--ink-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }
.hero__media { position: relative; }
.hero__media .ph { aspect-ratio: 4/5; }
.hero__badge {
  position: absolute; left: -26px; bottom: 34px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 13px; max-width: 230px;
}
.hero__badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-ink); flex: none; }
.hero__badge .dot svg { width: 19px; height: 19px; }
.hero__badge b { font-size: 14px; font-weight: 700; }
.hero__badge span { font-size: 12.5px; color: var(--ink-2); line-height: 1.35; display: block; }

/* trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 72px; background: var(--bg); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 26px 24px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line-soft); }
.trust__item:last-child { border-right: none; }
.trust__item svg { width: 24px; height: 24px; color: var(--accent); flex: none; }
.trust__item b { display: block; font-size: 14.5px; font-weight: 700; }
.trust__item span { font-size: 12.5px; color: var(--ink-2); }

/* ============================================================ DEFINITION */
.define { background: var(--bg); }
.define__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.define__lead { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.34; color: var(--ink); font-weight: 600; letter-spacing: -0.015em; }
.define__lead strong { color: var(--accent-ink); font-weight: 700; font-style: normal; }
.define__body p { color: var(--ink-2); margin-top: 18px; }
.define__body p:first-child { margin-top: 0; }
.factbox { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow); }
.factbox .eyebrow { margin-bottom: 18px; }
.factrow { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.factrow:last-child { border-bottom: none; }
.factrow dt { color: var(--ink-2); }
.factrow dd { font-weight: 600; text-align: right; font-family: var(--mono); font-size: 13.5px; }

/* ============================================================ RESEARCH AREAS */
.areas { background: var(--bg-2); }
.areas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px 32px; position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.area:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; }
.area h3 { margin: 16px 0 12px; }
.area p { font-size: 15px; color: var(--ink-2); }

/* ============================================================ FORMATS / PRICING */
.formats { background: var(--bg); }
.cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pcard {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard--feature { border-color: var(--accent); box-shadow: 0 24px 60px -28px rgba(14,124,140,.5); }
.pcard__media { aspect-ratio: 16/10; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.pcard__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.pcard__tag { position: absolute; top: 16px; right: 16px; z-index: 2; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 6px 12px; border-radius: 999px; }
.pcard h3 { font-size: 26px; }
.pcard__desc { font-size: 14.5px; color: var(--ink-2); margin: 8px 0 22px; }
.pcard__price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.pcard__price b { font-family: var(--serif); font-size: 40px; font-weight: 600; letter-spacing: -.01em; }
.pcard__price span { font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.pcard .btn { margin-top: 22px; }
.formats__note { text-align: center; font-size: 13.5px; color: var(--ink-3); margin-top: 26px; font-family: var(--mono); letter-spacing: .04em; }
.pcard__lab { position: absolute; top: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--accent-ink); padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line); backdrop-filter: blur(2px); }
.pcard__lab svg { width: 12px; height: 12px; }
.pcard__coa { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; align-self: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); transition: color .15s; }
.pcard__coa:hover { color: var(--accent); }
.pcard__coa svg { width: 14px; height: 14px; }

/* quality band */
.quality { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quality__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; }
.quality__media .ph { aspect-ratio: 16/11; }
.quality h2 { margin: 16px 0 16px; }
.quality__list { display: grid; gap: 16px; margin-top: 26px; }
.quality__row { display: flex; gap: 14px; align-items: flex-start; }
.quality__row .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; }
.quality__row .ck svg { width: 14px; height: 14px; }
.quality__row b { display: block; font-size: 15.5px; }
.quality__row span { font-size: 14px; color: var(--ink-2); }
@media (max-width: 900px) { .quality__inner { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================ COMPARISON TABLE */
.compare { background: var(--bg-2); }
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
table.ctable { width: 100%; border-collapse: collapse; min-width: 560px; }
table.ctable th, table.ctable td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
table.ctable thead th { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); background: var(--bg); font-weight: 600; }
table.ctable thead th:first-child { color: var(--accent-ink); }
table.ctable tbody th { font-weight: 600; color: var(--ink); font-family: var(--sans); }
table.ctable td { color: var(--ink-2); }
table.ctable tbody tr:last-child th, table.ctable tbody tr:last-child td { border-bottom: none; }
table.ctable .col-accent { background: var(--accent-soft-2); color: var(--ink); font-weight: 600; }

/* ============================================================ SPLIT / WHY US */
.why { background: var(--deep); color: var(--on-deep); }
.why h2, .why h3 { color: var(--on-deep); }
.why .eyebrow { color: var(--accent-bright); }
.why .eyebrow::before { background: var(--accent-bright); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.why__item { border: 1px solid var(--deep-2); border-radius: var(--radius-lg); padding: 30px 28px; background: rgba(255,255,255,.02); }
.why__item .ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(21,166,188,.14); color: var(--accent-bright); display: grid; place-items: center; margin-bottom: 20px; }
.why__item .ic svg { width: 22px; height: 22px; }
.why__item h3 { font-size: 23px; margin-bottom: 10px; }
.why__item p { font-size: 14.5px; color: var(--on-deep-2); }

/* ============================================================ STEPS */
.steps { background: var(--bg); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); position: relative; }
.step__n { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

/* ============================================================ REVIEWS */
.reviews { background: var(--bg-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 30px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.review blockquote { font-family: var(--serif); font-size: 18.5px; line-height: 1.5; color: var(--ink); margin: 16px 0 22px; font-weight: 500; letter-spacing: -0.005em; }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; font-family: var(--sans); font-weight: 700; font-size: 15px; flex: none; }
.review__by b { font-size: 14.5px; }
.review__by span { font-size: 12.5px; color: var(--ink-3); display: block; }

/* ============================================================ SPECS */
.specs { background: var(--bg); }
.specs__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.specs__media .ph { aspect-ratio: 1/1; }
.spectable { width: 100%; border-collapse: collapse; }
.spectable th, .spectable td { padding: 16px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spectable th { width: 38%; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; padding-right: 20px; }
.spectable td { font-size: 15.5px; color: var(--ink); font-weight: 500; }
.spectable tr:last-child th, .spectable tr:last-child td { border-bottom: none; }

/* ============================================================ FAQ */
.faq { background: var(--bg-2); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 4px; font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; transition: color .15s; }
.faq__q:hover { color: var(--accent-ink); }
.faq__icn { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icn::before, .faq__icn::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s ease, opacity .2s; }
.faq__icn::before { left: 4px; right: 4px; top: 12px; height: 2px; }
.faq__icn::after { top: 4px; bottom: 4px; left: 12px; width: 2px; }
.faq__item[open] .faq__icn::after { transform: scaleY(0); opacity: 0; }
.faq__a { overflow: hidden; }
.faq__a p { padding: 0 4px 26px; color: var(--ink-2); font-size: 15.5px; max-width: 64ch; }
details.faq__item summary { list-style: none; }
details.faq__item summary::-webkit-details-marker { display: none; }
.faq__aside { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.faq__aside h3 { font-size: 26px; margin-bottom: 10px; }
.faq__aside p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 22px; }

/* ============================================================ DELIVERY AREAS */
.areas-served { background: var(--bg); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip { font-family: var(--mono); font-size: 13px; letter-spacing: .03em; color: var(--ink-2); border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; background: var(--surface); transition: border-color .15s, color .15s, transform .15s; }
.chip:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.areas-served__note { margin-top: 26px; font-size: 14.5px; color: var(--ink-2); }

/* ============================================================ FINAL CTA */
.cta { background: var(--deep); color: var(--on-deep); text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(21,166,188,.16), transparent 70%); }
.cta__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta .eyebrow { color: var(--accent-bright); justify-content: center; }
.cta .eyebrow::before, .cta .eyebrow::after { background: var(--accent-bright); }
.cta h2 { color: var(--on-deep); margin: 20px 0 18px; }
.cta p { color: var(--on-deep-2); font-size: 18px; margin-bottom: 34px; }

/* ============================================================ FOOTER */
.footer { background: var(--deep-2); color: var(--on-deep-2); padding: 64px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand b { color: var(--on-deep); }
.footer__about { font-size: 14px; line-height: 1.6; margin-top: 18px; max-width: 38ch; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-deep); margin-bottom: 18px; font-weight: 600; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a, .footer__contact a { font-size: 14.5px; color: var(--on-deep-2); transition: color .15s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--accent-bright); }
.footer__contact { font-size: 14.5px; line-height: 1.7; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.footer__bottom small { font-size: 12.5px; color: var(--on-deep-2); }
.compliance { font-size: 12px; line-height: 1.6; color: rgba(169,187,192,.75); max-width: 70ch; margin-top: 18px; }

/* ============================================================ STICKY CTA (desktop bar + mobile button) */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 34px -18px rgba(20,50,59,.30);
  transform: translateY(115%);
  transition: transform .42s cubic-bezier(.2,.7,.2,1);
}
.mcta.show { transform: translateY(0); }
.mcta__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.mcta__text { font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--ink); line-height: 1.3; }
.mcta .btn { box-shadow: var(--shadow-lg); white-space: nowrap; }

/* ============================================================ REVEAL ANIM */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 460px; }
  .define__grid, .specs__grid, .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why__grid, .areas__grid, .steps__grid, .reviews__grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .wrap { padding: 0 20px; }
  .cards2, .why__grid, .areas__grid, .steps__grid, .reviews__grid, .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .nav__tag { display: none; }
  .hero__badge { left: 0; }
  .mcta {
    left: 16px; right: 16px; bottom: 16px;
    background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none;
    border-top: none; box-shadow: none;
    transform: none; transition: none;   /* always visible on mobile, no JS needed */
  }
  .mcta__inner { padding: 0; }
  .mcta__text { display: none; }
  .mcta .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 84px; }   /* reserve space so the always-on CTA never covers the footer */
  .nav .btn span.full { display: none; }
}

/* real product imagery (self-hosted from peptideplus.shop) */
.ph--img { align-items: center; justify-content: center; }
.ph--img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.pcard__media.ph--img img { padding: 16px; }

/* nav wordmark — ghkcubali-style Georgia teal gradient */
.nav .brand b {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0;
  background-image: linear-gradient(180deg, #67e8f9 0%, #06b6d4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
