:root {
  --cream: #f5f0e8;
  --cream-dark: #ede5d8;
  --sage: #7a9478;
  --sage-light: #b8cdb6;
  --sage-dark: #4a6b48;
  --teal: #5a7a5c;
  --teal-dark: #3d5c3f;
  --gold: #b8965a;
  --gold-light: #d4b878;
  --charcoal: #2a2520;
  --charcoal-mid: #4a4038;
  --muted: #6a6055;
  --border: #d8d0c4;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-slim {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.5px;
}

.logo-sculpt {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--charcoal); }

.nav-link--cta {
  color: var(--teal);
  border: 0.5px solid var(--teal);
  padding: 8px 20px;
  transition: all 0.2s;
}

.nav-link--cta:hover {
  background: var(--teal);
  color: white;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--charcoal);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 48px;
  gap: 16px;
}

.nav-mobile.open { display: flex; }

.nav-mobile-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: var(--teal);
  color: white;
}

.btn--primary:hover { background: var(--teal-dark); }

.btn--outline {
  border: 0.5px solid var(--charcoal);
  color: var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn--light {
  border: 0.5px solid var(--cream);
  color: var(--cream);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.btn--teal-outline {
  border: 0.5px solid var(--teal);
  color: var(--teal);
}

.btn--teal-outline:hover {
  background: var(--teal);
  color: white;
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}

.hero-inner {
  max-width: 560px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-body {
  font-size: 17px;
  font-weight: 400;
  color: var(--charcoal-mid);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-deco-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 0.5px solid var(--sage-light);
  opacity: 0.6;
}

.hero-deco-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 0.5px solid var(--teal);
  opacity: 0.2;
}

/* PILLARS */
.pillars {
  padding: 80px 48px;
  border-bottom: 0.5px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.pillar {
  padding: 40px 36px;
  border-right: 0.5px solid var(--border);
  animation: fadeUp 0.6s ease both;
}

.pillar:last-child { border-right: none; }

.pillar-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.pillar-body {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* CTA BAND */
.cta-band {
  background: var(--charcoal);
  padding: 80px 48px;
  text-align: center;
}

.cta-band-inner { max-width: 480px; margin: 0 auto; }

.cta-band-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 16px;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
}

/* PEPTIDES PAGE */
.page-hero {
  padding: 72px 48px 48px;
  border-bottom: 0.5px solid var(--border);
  text-align: center;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.page-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--charcoal-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* PRODUCT IMAGES */
.product-img {
  width: 100%;
  background: #f7f4ef;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.product-img img {
  width: 75%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

/* PRODUCT GRID */
.products {
  padding: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border-top: 0.5px solid var(--border);
}

.product-card {
  padding: 40px 36px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  animation: fadeUp 0.5s ease both;
}

.product-card:hover { background: white; }

.product-tag {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.product-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
  padding-top: 20px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
}

.product-price span {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.product-cta {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 0.5px solid var(--teal);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.product-cta:hover { opacity: 0.6; }

/* ABOUT PAGE */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.about-text {
  padding: 72px 56px;
  border-right: 0.5px solid var(--border);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-deco {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 56px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}

.about-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* CONTACT PAGE */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.contact-info {
  padding: 72px 56px;
  background: var(--charcoal);
  border-right: 0.5px solid var(--border);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  font-weight: 400;
  color: #c8d5c8;
  line-height: 1.9;
  margin-bottom: 40px;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--cream);
}

.contact-form {
  padding: 72px 56px;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-bottom-color: var(--teal); }

.form-input::placeholder { color: var(--border); }

textarea.form-input {
  resize: none;
  height: 100px;
  padding-top: 12px;
}

.form-submit {
  margin-top: 32px;
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--teal-dark); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 24px;
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  padding: 56px 48px 32px;
  border-top: 0.5px solid #3a3530;
}

.footer-inner { max-width: 600px; margin: 0 auto; text-align: center; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8278;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-disclaimer {
  font-size: 12px;
  font-weight: 400;
  color: #6a6560;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 11px;
  color: #3a3530;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .hero { padding: 60px 24px; min-height: auto; }
  .hero-deco { display: none; }
  .hero-title { font-size: 48px; }

  .pillars { padding: 48px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 0.5px solid var(--border); }
  .pillar:last-child { border-bottom: none; }

  .cta-band { padding: 56px 24px; }

  .page-hero { padding: 48px 24px 32px; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card { border-right: none; }

  .about-section { grid-template-columns: 1fr; }
  .about-text { padding: 48px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .about-deco { padding: 48px 24px; }

  .contact-section { grid-template-columns: 1fr; }
  .contact-info { padding: 48px 24px; }
  .contact-form { padding: 48px 24px; }

  .footer { padding: 40px 24px 24px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}

/* ============================================================
   2-COLUMN LUXURY PRODUCT GRID
   ============================================================ */
.pcollection {
  padding: 64px 48px;
  background: var(--cream);
}

.pcgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.pcard {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.pcard:hover { background: #ffffff; }

.pcard-img {
  position: relative;
  width: 100%;
  background: var(--cream-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 320px;
}

.pcard-img img {
  width: 55%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.pcard:hover .pcard-img img {
  transform: scale(1.05);
}

.pcard-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: white;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pcard-badge--sage {
  background: var(--sage-dark);
}

.pcard-body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 0.5px solid var(--border);
}

.pcard-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.pcard-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pcard-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pcard-price span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 300;
}

.pcard-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 28px;
}

.pcard-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  border: 0.5px solid var(--teal);
  padding: 12px 28px;
  align-self: flex-start;
  transition: all 0.2s;
}

.pcard-cta:hover {
  background: var(--teal);
  color: white;
}

/* SOCIAL BUTTONS */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  border: 0.5px solid #4a4540;
  padding: 10px 20px;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* RESPONSIVE — product grid */
@media (max-width: 768px) {
  .pcollection { padding: 32px 0; }
  .pcgrid { grid-template-columns: 1fr; }
  .pcard-img { min-height: 260px; }
  .pcard-img img { width: 50%; }
  .pcard-body { padding: 24px; }
}


/* Hide old text logo remnants */


@media (max-width: 768px) {
  .nav-logo-img { height: 40px; }
  .hero-logo-img { height: 60px; }
  .footer-logo-img { height: 38px; }
}

/* ============================================================
   LOGO — BOLD WORDMARK
   ============================================================ */

/* NAV LOGO */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 4px;
}

.logo-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.5px;
  line-height: 1;
  display: block;
}

.logo-wordmark em {
  font-style: normal;
  color: var(--charcoal);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}

/* NAV — increase height slightly to give logo room */
.nav {
  padding: 18px 56px;
}

/* FOOTER WORDMARK */
.footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.footer-wordmark em {
  font-style: normal;
  color: #6a6560;
}

/* PAGE HERO — brand stamp under title */
.page-hero .brand-stamp {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.4;
}

.page-hero .brand-stamp::before,
.page-hero .brand-stamp::after {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--muted);
}

/* HERO BRAND MOMENT */
.hero-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.hero-brand-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -2px;
  line-height: 0.95;
  display: block;
}

.hero-brand-wordmark em {
  font-style: normal;
  color: var(--charcoal);
}

.hero-brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  padding-left: 4px;
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .logo-wordmark { font-size: 22px; }
  .footer-wordmark { font-size: 32px; }
  .hero-brand-wordmark { font-size: 48px; }
}

/* ============================================================
   HERO — 2 column layout with right visual panel
   ============================================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.hero-inner {
  max-width: 600px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-visual {
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 0.5px solid rgba(61,175,200,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 0.5px solid rgba(61,175,200,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 48px;
  width: 100%;
}
.hero-visual-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 62px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -2px;
  line-height: 0.9;
  display: block;
}
.hero-visual-logo em { font-style: normal; color: #f7f4ef; }
.hero-visual-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-light);
  display: block;
  margin-top: 10px;
  margin-bottom: 40px;
}
.hero-visual-line {
  width: 0.5px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  margin: 0 auto 40px;
}
.hero-visual-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 240px;
}
.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid #3a3530;
  padding: 14px 0;
}
.hero-stat:first-child { border-top: 0.5px solid #3a3530; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5a5550;
  text-align: right;
  line-height: 1.5;
}
.hero-visual-cta {
  margin-top: 32px;
  border: 0.5px solid #3a3530;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  transition: all 0.2s;
  text-decoration: none;
}
.hero-visual-cta:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

/* ============================================================
   BRAND CARD — peptides page empty cell
   ============================================================ */
.pcard--brand { background: var(--charcoal); min-height: 500px; }
.pcard--brand:hover { background: #333028; }
.pcard-brand-inner {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}
.pcard-brand-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -1.5px;
  line-height: 0.95;
  display: block;
  margin-bottom: 8px;
}
.pcard-brand-wordmark em { font-style: normal; color: #f7f4ef; }
.pcard-brand-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-light);
  display: block;
  margin-bottom: 28px;
}
.pcard-brand-divider { width: 40px; height: 0.5px; background: var(--teal); margin-bottom: 28px; }
.pcard-brand-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #f7f4ef;
  line-height: 1.4;
  margin-bottom: 32px;
}
.pcard-brand-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.pcard-brand-pills span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage-light);
  border: 0.5px solid #3a3530;
  padding: 6px 14px;
}
.pcard--brand .pcard-cta { color: var(--teal); border-color: var(--teal); align-self: flex-start; margin-top: auto; }

/* ============================================================
   FOOTER — visual brand statement
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 0;
  border-top: 0.5px solid #3a3530;
}
.footer-brand-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid #3a3530;
}
.footer-brand-left {
  padding: 64px 56px;
  border-right: 0.5px solid #3a3530;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-big-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -3px;
  line-height: 0.9;
  display: block;
}
.footer-big-wordmark em { font-style: normal; color: #3a3530; }
.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4a4540;
  display: block;
  margin-top: 14px;
  margin-bottom: 40px;
}
.footer-brand-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #5a5550;
  line-height: 1.5;
  max-width: 300px;
}
.footer-brand-right {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-nav-group { margin-bottom: 32px; }
.footer-nav-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #5a5550;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav-links a:hover { color: var(--teal); }
.footer-social-links {
  display: flex;
  gap: 16px;
}
.footer-social-links a {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a4540;
  border: 0.5px solid #3a3530;
  padding: 10px 18px;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social-links a:hover { color: var(--teal); border-color: var(--teal); }
.footer-bottom {
  padding: 20px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: #3a3530; }
.footer-disc { font-size: 11px; color: #3a3530; max-width: 500px; text-align: right; }

/* Hide old footer styles */
.footer-inner { display: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr !important; }
  .hero-visual { display: none; }
  .hero-inner { padding: 60px 24px; }
  .footer-brand-panel { grid-template-columns: 1fr; }
  .footer-brand-left { border-right: none; border-bottom: 0.5px solid #3a3530; padding: 40px 24px; }
  .footer-brand-right { padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .footer-disc { text-align: center; }
}

/* ============================================================
   STICKY NAV — scrolled state
   ============================================================ */
.nav--scrolled {
  box-shadow: 0 1px 24px rgba(42,40,37,0.08);
  backdrop-filter: blur(8px);
  background: rgba(247,244,239,0.96);
}

/* ============================================================
   NAV LINK — animated underline
   ============================================================ */
.nav-link { position: relative; }
.nav-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--teal);
  transition: width 0.3s ease;
  display: block;
}
.nav-link:hover .nav-underline { width: 100%; }
.nav-link.active .nav-underline { width: 100%; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  padding: 80px 48px;
  background: var(--cream-dark);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  padding: 40px 36px;
  border-right: 0.5px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 16px;
  color: var(--teal);
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.trust-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success p {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE — trust section
   ============================================================ */
@media (max-width: 768px) {
  .trust-section { padding: 48px 24px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}


/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll-line {
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--teal);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 56px; opacity: 0.6; }
}

/* Make hero title larger on full bleed */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px) !important;
  font-weight: 500;
  line-height: 1.0;
  color: var(--charcoal);
  letter-spacing: -2px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .hero-inner { padding: 80px 24px 100px; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(247,244,239,0.97) 0%,
      rgba(247,244,239,0.94) 70%,
      rgba(247,244,239,0.85) 100%
    );
  }
  .hero-scroll-hint { left: 24px; }
}

/* ============================================================
   HERO — full bleed gradient + circles
   ============================================================ */
.hero {
  position: relative !important;
  min-height: 92vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-bottom: 0.5px solid var(--border) !important;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(247,244,239,0.98) 0%,
    rgba(247,244,239,0.92) 35%,
    rgba(247,244,239,0.50) 60%,
    rgba(247,244,239,0.08) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 100px 80px;
  animation: fadeUp 0.9s ease both;
}
.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(52px, 6.5vw, 92px) !important;
  font-weight: 500 !important;
  line-height: 1.0 !important;
  color: var(--charcoal) !important;
  letter-spacing: -2px !important;
  margin-bottom: 24px !important;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-line {
  display: block;
  width: 36px;
  height: 0.5px;
  background: var(--teal);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes scrollPulse {
  0%,100% { width: 36px; opacity: 1; }
  50% { width: 52px; opacity: 0.5; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 80px 24px 100px; max-width: 100%; }
  .hero-scroll-hint { left: 24px; }
  .hero-overlay {
    background: rgba(247,244,239,0.94) !important;
  }
}

/* ============================================================
   SPA PALETTE OVERRIDES — warm luxury, no blue
   ============================================================ */

/* Logo — warm sage instead of teal */
.logo-wordmark { color: var(--sage-dark) !important; }
.logo-wordmark em { color: var(--charcoal) !important; }
.hero-brand-wordmark { color: var(--sage-dark) !important; }
.hero-brand-wordmark em { color: var(--charcoal) !important; }
.footer-big-wordmark { color: var(--sage-dark) !important; }
.footer-big-wordmark em { color: #3a3530 !important; }
.footer-wordmark { color: var(--sage-dark) !important; }

/* Nav CTA button — gold */
.nav-link--cta { color: var(--gold) !important; border-color: var(--gold) !important; }
.nav-link--cta:hover { background: var(--gold) !important; color: white !important; }

/* Eyebrows — gold */
.hero-eyebrow { color: var(--gold) !important; }
.page-eyebrow { color: var(--gold) !important; }
.pcard-tag { color: var(--gold) !important; }
.product-tag { color: var(--gold) !important; }

/* Buttons — warm sage */
.btn--primary { background: var(--sage-dark) !important; }
.btn--primary:hover { background: var(--teal-dark) !important; }
.btn--outline { border-color: var(--charcoal) !important; color: var(--charcoal) !important; }
.pcard-cta { color: var(--sage-dark) !important; border-color: var(--sage-dark) !important; }
.pcard-cta:hover { background: var(--sage-dark) !important; color: white !important; }
.pcard-badge { background: var(--sage-dark) !important; }

/* Product price — gold */
.pcard-price { color: var(--gold) !important; }
.pcard-price span { color: var(--muted) !important; }

/* Hero scroll hint — gold */
.hero-scroll-line { background: var(--gold) !important; }

/* Trust icons — gold */
.trust-icon { color: var(--gold) !important; }
.trust-title { color: var(--charcoal) !important; }

/* Nav underline — gold */
.nav-underline { background: var(--gold) !important; }

/* CTA band */
.cta-band { background: var(--charcoal) !important; }
.cta-band-label { color: var(--sage-light) !important; }

/* Footer nav label */
.footer-nav-label { color: var(--gold) !important; }
.footer-social-links a:hover { color: var(--gold) !important; border-color: var(--gold) !important; }

/* About stats */
.about-stat-num { color: var(--sage-dark) !important; }

/* Contact detail label */
.contact-detail-label { color: var(--gold) !important; }
.form-submit { background: var(--sage-dark) !important; }
.form-submit:hover { background: var(--teal-dark) !important; }
.form-input:focus { border-bottom-color: var(--gold) !important; }

/* Hero overlay — adjusted for spa photo */
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(245,240,232,0.92) 0%,
    rgba(245,240,232,0.82) 35%,
    rgba(245,240,232,0.35) 62%,
    rgba(245,240,232,0.0) 100%
  ) !important;
}

/* Ingredients line on Recovery Blend */
.pcard-desc-ingredients {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 8px 0;
}

/* ============================================================
   AVEMMED — blue accents restored
   ============================================================ */

/* Logo back to original teal/blue */
.logo-wordmark { color: #3dafc8 !important; }
.logo-wordmark em { color: var(--charcoal) !important; }
.hero-brand-wordmark { color: #3dafc8 !important; }
.hero-brand-wordmark em { color: var(--charcoal) !important; }
.footer-big-wordmark { color: #3dafc8 !important; }
.footer-wordmark { color: #3dafc8 !important; }

/* Most Popular badge — blue */
.pcard-badge { background: #3dafc8 !important; }

/* View Peptides / primary button — blue */
.btn--primary { background: #3dafc8 !important; }
.btn--primary:hover { background: #2a8fa8 !important; }
