/* ============================================================
   AMINOFRESH — premium editorial design system
   Type: Fraunces (display) + Outfit (text)
   Palette: warm ivory, deep wine, muted gold
   ============================================================ */

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

:root {
  --wine: #7E1B2C;
  --wine-2: #5C1220;
  --gold: #C6A14B;
  --gold-2: #A07E2E;
  --gold-soft: #E3CB8A;
  --ivory: #FAF5EB;
  --ivory-2: #F1E9D8;
  --paper: #FFFDF7;
  --blush: #F8EDE6;
  --ink: #241812;
  --ink-2: #55443A;
  --muted: #7E6D60;
  --line: rgba(80, 56, 32, 0.14);
  --shadow-tint: rgba(92, 18, 32, 0.10);
  --wa-green: #1FA855;

  --font-display: 'Fraunces', Georgia, serif;
  --font-text: 'Outfit', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px var(--shadow-tint);
  --shadow-md: 0 12px 32px -8px rgba(92, 18, 32, 0.18);
  --shadow-lg: 0 28px 64px -16px rgba(92, 18, 32, 0.28);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* legacy aliases kept for markup compatibility */
  --red: var(--wine);
  --red-dark: var(--wine-2);
  --cream: var(--ivory-2);
  --white: var(--paper);
  --black: var(--ink);
  --gray: var(--muted);
  --gray-light: var(--ivory-2);
  --gray-border: var(--line);
}

/* WOMEN+ page — rose-wine tint of the same system */
body.women-page {
  --wine: #A72F3F;
  --wine-2: #7E1B2C;
  --ivory: #FAF2EC;
  --ivory-2: #F4E5DB;
  --blush: #F6E3D8;
  --shadow-tint: rgba(167, 47, 63, 0.10);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  font-size: 16px;
}

body {
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

/* film grain over everything — breaks digital flatness */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--wine);
  color: var(--ivory);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

em, .highlight {
  font-style: italic;
  font-weight: 500;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.text-center .section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 22px;
  color: var(--ink);
}

.section-title .highlight,
h1 .highlight {
  color: var(--wine);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 56px;
  text-wrap: pretty;
}

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

/* giant outlined watermark word behind sections */
[data-watermark] {
  position: relative;
  overflow: hidden;
}

[data-watermark]::before {
  content: attr(data-watermark);
  position: absolute;
  top: 6px;
  left: -1.5%;
  z-index: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5.5rem, 15vw, 13rem);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 27, 44, 0.09);
  pointer-events: none;
  user-select: none;
}

[data-watermark] > .container {
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary {
  background: var(--wine);
  color: var(--ivory);
  border-color: var(--wine);
}

.btn-primary:hover {
  background: var(--wine-2);
  border-color: var(--wine-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(160, 126, 46, 0.35);
}

/* outline adapts: ink on light sections, ivory inside wine sections */
.btn-outline,
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(36, 24, 18, 0.45);
}

.btn-outline:hover,
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cta .btn-outline,
.amino-acids .btn-outline {
  color: var(--ivory);
  border-color: rgba(250, 245, 235, 0.55);
}

.cta .btn-outline:hover,
.amino-acids .btn-outline:hover {
  background: var(--ivory);
  color: var(--wine);
  border-color: var(--ivory);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #FFFFFF;
  border-color: var(--wa-green);
}

.btn-whatsapp:hover {
  background: #178C46;
  border-color: #178C46;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(23, 140, 70, 0.45);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: transform 0.4s ease, background var(--transition),
              padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.nav-hidden {
  transform: translateY(-110%);
}

.navbar.scrolled {
  background: rgba(250, 245, 235, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 26px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 22px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.navbar-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}

.navbar-nav a:hover {
  color: var(--ink);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-nav a.active {
  color: var(--wine);
}

.navbar-nav .navbar-cta a.btn {
  padding: 12px 26px;
  font-size: 0.72rem;
  color: var(--ivory);
}

.navbar-nav .navbar-cta a.btn:hover {
  color: var(--ivory);
}

.navbar-cta .btn::after { display: none; }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 520px at 88% 12%, rgba(198, 161, 75, 0.16), transparent 62%),
    radial-gradient(900px 600px at -8% 100%, rgba(126, 27, 44, 0.07), transparent 60%),
    var(--ivory);
  overflow: hidden;
}

.hero::before {
  content: attr(data-watermark);
  position: absolute;
  top: 90px;
  left: -1%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(6rem, 16vw, 15rem);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 27, 44, 0.08);
  pointer-events: none;
  user-select: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-top: 110px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(160, 126, 46, 0.45);
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255, 253, 247, 0.6);
}

.hero-badge img { height: 16px; }

.hero-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 .highlight {
  color: var(--wine);
  font-style: italic;
  display: inline;
}

.hero-tagline {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 47ch;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: stretch;
}

.hero-stat {
  text-align: left;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.hero-stat-icon { display: none; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 560;
  color: var(--wine);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 10px;
  font-weight: 600;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-wrapper {
  position: relative;
}

.hero-product-wrapper::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(198, 161, 75, 0.55), rgba(198, 161, 75, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-product-wrapper img {
  position: relative;
  z-index: 1;
  max-height: min(520px, 62vh);
  filter: drop-shadow(0 32px 48px rgba(92, 18, 32, 0.28));
}

.hero-product-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border: 1px dashed rgba(160, 126, 46, 0.5);
  border-radius: 50%;
  animation: spin 46s linear infinite;
}

.hero-product-ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* two cans on the brand home */
.hero-duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-duo img.duo-classic {
  max-height: min(400px, 50vh);
  z-index: 1;
  transform: rotate(-5deg) translateX(10px);
}

.hero-duo img.duo-women {
  max-height: min(470px, 58vh);
  margin-left: -72px;
  z-index: 2;
  transform: rotate(3deg);
}

/* ===== MARQUEE RIBBON ===== */
.marquee {
  background: var(--wine);
  color: var(--ivory);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 2;
  margin: -14px 0 14px;
  box-shadow: var(--shadow-md);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  color: var(--gold-soft);
  font-size: 0.8rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--ivory);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.features-strip .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.women-pillars .container {
  grid-template-columns: repeat(5, 1fr);
}

.feature-item {
  text-align: center;
  padding: 16px 10px;
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item img {
  height: 58px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.feature-item span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about {
  padding: 130px 0 120px;
  background: var(--ivory);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 0.92;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-light-burst {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(198, 161, 75, 0.5), rgba(198, 161, 75, 0) 68%);
  border-radius: 50%;
}

/* retire the busy powder-splash art — keep the composition clean */
.av-scoop,
.av-powder-cloud,
.av-pour-stream,
.av-splash-particle,
.av-mist {
  display: none;
}

.about-product-img {
  position: relative;
  z-index: 1;
  max-height: 380px;
  filter: drop-shadow(0 28px 44px rgba(92, 18, 32, 0.26));
}

.about-image-badge {
  position: absolute;
  bottom: 6%;
  right: 2%;
  width: 128px;
  height: 128px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--ivory);
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-image-badge::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(227, 203, 138, 0.65);
  border-radius: 50%;
}

.about-image-badge .number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
}

.about-image-badge .label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  max-width: 90px;
  line-height: 1.4;
}

.about-text > p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 62ch;
  text-wrap: pretty;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  margin-top: 40px;
}

.about-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-highlight-icon img {
  max-height: 38px;
  object-fit: contain;
}

.about-highlight-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.about-highlight-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 120px 0 140px;
  background: var(--ivory-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* offset alternating cards — break the flat grid.
   margin-top (not transform) so the grid reserves the space
   and staggered cards never overlap the next row */
@media (min-width: 1025px) {
  .benefits-grid > .benefit-card:nth-child(even) {
    margin-top: 28px;
  }
}

.benefit-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--ivory-2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon img {
  height: 36px;
  object-fit: contain;
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* numbered WOMEN+ benefits — big italic serif numerals */
.women-benefits {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1025px) {
  .women-benefits > .benefit-card:nth-child(even) {
    margin-top: 24px;
  }
}

.women-benefits .benefit-card {
  position: relative;
  padding: 34px 34px 34px 100px;
}

.women-benefits .benefit-card::before {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  left: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
}

.women-benefits .benefit-card h3 {
  font-size: 1.08rem;
}

/* ===== NUTRITION ===== */
.nutrition {
  padding: 120px 0;
  background: var(--ivory);
}

.nutrition .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.nutrition-content {
  position: sticky;
  top: 130px;
}

.nutrition-content p {
  color: var(--muted) !important;
  text-wrap: pretty;
}

.nutrition-serving-info {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-size: 0.85rem;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

/* nutrition dashboard: macro cards, chips, %RDA rings */
.nutrition-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.macro-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.macro-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.macro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.macro-card-lead {
  background:
    radial-gradient(160px 120px at 85% 0%, rgba(198, 161, 75, 0.25), transparent 70%),
    var(--wine);
}

.macro-value {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--wine);
  font-variant-numeric: tabular-nums;
}

.macro-card-lead .macro-value {
  color: var(--ivory);
}

.macro-value small {
  font-family: var(--font-text);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-left: 5px;
}

.macro-card-lead .macro-value small {
  color: var(--gold-soft);
}

.macro-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

.macro-card-lead .macro-label {
  color: rgba(250, 245, 235, 0.7);
}

.macro-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.macro-chip {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 18px;
  border: 1px dashed rgba(160, 126, 46, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.6);
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.micro-ring {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.micro-ring:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ring {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 10px;
}

.ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring circle {
  fill: none;
  stroke-width: 6;
}

.ring-bg {
  stroke: var(--ivory-2);
}

.ring-fill {
  stroke: var(--gold);
  stroke-linecap: round;
}

.ring-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--wine);
  font-variant-numeric: tabular-nums;
}

.micro-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.micro-amt {
  font-size: 0.72rem;
  color: var(--muted);
}

.nutrition-footnote {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== AMINO ACIDS (wine band) ===== */
.amino-acids {
  padding: 120px 0;
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(198, 161, 75, 0.14), transparent 60%),
    var(--wine);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.amino-acids::before {
  content: 'AMINO';
  position: absolute;
  top: 10px;
  right: -1%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 245, 235, 0.10);
  pointer-events: none;
}

.amino-acids .container {
  position: relative;
  z-index: 1;
}

.amino-acids .section-label { color: var(--gold-soft); }
.amino-acids .section-label::before,
.amino-acids .text-center .section-label::after { background: var(--gold-soft); }
.amino-acids .section-title { color: var(--ivory); }
.amino-acids .section-subtitle { color: rgba(250, 245, 235, 0.7); }

/* BCAA spotlight cards + supporting tile wall */
.amino-code {
  width: 44px;
  height: 44px;
  border: 1px dashed rgba(227, 203, 138, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.amino-tag {
  font-style: normal;
  font-family: var(--font-text);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  flex-shrink: 0;
}

.bcaa-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0 26px;
}

.bcaa-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(198, 161, 75, 0.20), rgba(198, 161, 75, 0.04) 55%),
    rgba(250, 245, 235, 0.04);
  border: 1px solid rgba(227, 203, 138, 0.35);
  border-radius: 26px;
  padding: 32px 30px 30px;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.bcaa-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 203, 138, 0.7);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.4);
}

/* ghost letter watermark inside each card */
.bcaa-card::before {
  content: attr(data-code);
  position: absolute;
  bottom: -26px;
  right: -6px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 6.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(227, 203, 138, 0.14);
  pointer-events: none;
}

.bcaa-card .amino-code {
  border-style: solid;
  background: rgba(198, 161, 75, 0.16);
}

.bcaa-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bcaa-mg {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 2.9rem;
  line-height: 1;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}

.bcaa-mg small {
  font-family: var(--font-text);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(227, 203, 138, 0.75);
  margin-left: 8px;
}

.bcaa-card h3 {
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.bcaa-card p {
  font-size: 0.86rem;
  color: rgba(250, 245, 235, 0.66);
  line-height: 1.65;
}

.amino-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.amino-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(250, 245, 235, 0.05);
  border: 1px solid rgba(250, 245, 235, 0.12);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}

.amino-tile:hover {
  background: rgba(250, 245, 235, 0.10);
  border-color: rgba(227, 203, 138, 0.45);
  transform: translateY(-3px);
}

.amino-tile .amino-code {
  width: 40px;
  height: 40px;
  font-size: 0.84rem;
}

.amino-tile-name {
  flex: 1;
  font-size: 0.88rem;
  color: var(--ivory);
}

.amino-tile-mg {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.05rem;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.amino-tile-mg small {
  font-family: var(--font-text);
  font-size: 0.58rem;
  color: rgba(250, 245, 235, 0.5);
  margin-left: 3px;
  letter-spacing: 0.08em;
}

.amino-footnote {
  font-size: 0.75rem;
  color: rgba(250, 245, 235, 0.45);
  font-style: italic;
  margin-top: 30px;
}

/* ===== HOW TO USE — circular orbit ===== */
.how-to-use {
  padding: 120px 0 150px;
  background:
    radial-gradient(720px 720px at 50% 60%, rgba(198, 161, 75, 0.13), transparent 70%),
    var(--ivory-2);
  position: relative;
  overflow: hidden;
}

.steps-orbit {
  position: relative;
  width: min(660px, 92vw);
  aspect-ratio: 1;
  margin: 80px auto 30px;
}

.orbit-ring {
  position: absolute;
  inset: 11%;
  border: 2px dashed rgba(160, 126, 46, 0.15);
  border-radius: 50%;
  animation: spin-in-place 70s linear infinite;
}

@keyframes spin-in-place {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-ring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 224px;
  height: 224px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.orbit-center img {
  max-height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(92, 18, 32, 0.22));
}

.orbit-center-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.steps-orbit .step-card {
  position: absolute;
  width: 220px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

/* clockwise placements */
.steps-5 .step-card[data-step="01"] { top: 5%;  left: 50%; }
.steps-5 .step-card[data-step="02"] { top: 36%; left: 94%; }
.steps-5 .step-card[data-step="03"] { top: 88%; left: 77%; }
.steps-5 .step-card[data-step="04"] { top: 88%; left: 23%; }
.steps-5 .step-card[data-step="05"] { top: 36%; left: 6%;  }

.steps-4 .step-card[data-step="01"] { top: 5%;  left: 50%; }
.steps-4 .step-card[data-step="02"] { top: 50%; left: 95%; }
.steps-4 .step-card[data-step="03"] { top: 95%; left: 50%; }
.steps-4 .step-card[data-step="04"] { top: 50%; left: 5%;  }

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: calc(50% - 64px);
  width: 32px;
  height: 32px;
  background: var(--wine);
  color: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.82rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover .step-icon {
  transform: translateY(-6px) scale(1.06);
  box-shadow: var(--shadow-md);
}

.step-icon img {
  height: 75px;
  object-fit: contain;
}

.step-body h3 {
  font-size: 1.1rem;
  margin: 16px 0 6px;
  color: var(--ink);
}

.step-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 215px;
}

/* ===== CERTIFICATIONS — editorial split + seal medallions ===== */
.certifications {
  padding: 120px 0 140px;
  background:
    radial-gradient(820px 480px at 88% 8%, rgba(198, 161, 75, 0.14), transparent 62%),
    var(--ivory-2);
}

.cert-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 76px;
  align-items: center;
}

.cert-intro > p {
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 44ch;
  text-wrap: pretty;
}

.cert-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px dashed var(--line);
  max-width: 340px;
}

.cert-stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--wine);
}

.cert-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
  max-width: 200px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cert-item {
  background: var(--paper);
  border-radius: 22px;
  padding: 30px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

/* stagger the middle column like the benefit cards */
@media (min-width: 1025px) {
  .cert-grid .cert-item:nth-child(3n - 1) {
    margin-top: 20px;
  }
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* seal well: logo in an ivory circle with a double gold ring */
.cert-item img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  padding: 17px;
  background: var(--ivory);
  border: 1px solid rgba(160, 126, 46, 0.4);
  border-radius: 50%;
  outline: 1px dashed rgba(160, 126, 46, 0.45);
  outline-offset: 5px;
  transition: transform var(--transition);
}

.cert-item:hover img {
  transform: rotate(-6deg) scale(1.05);
}

.cert-item span {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ===== CTA BAND ===== */
.cta {
  padding: 130px 0;
  background:
    radial-gradient(800px 420px at 15% 100%, rgba(198, 161, 75, 0.18), transparent 60%),
    var(--wine);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: 'AMINOFRESH';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 245, 235, 0.10);
  pointer-events: none;
  white-space: nowrap;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--ivory);
  margin-bottom: 18px;
}

.cta p {
  color: rgba(250, 245, 235, 0.75);
  max-width: 52ch;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ORDER / QR ===== */
.order-section {
  padding: 120px 0;
  background: var(--ivory);
}

.order-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.order-text p {
  color: var(--muted);
  margin-bottom: 8px;
  max-width: 52ch;
  text-wrap: pretty;
}

/* numbered mini order flow */
.order-steps {
  list-style: none;
  margin: 24px 0 34px;
  max-width: 440px;
}

.order-steps li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px dashed var(--line);
  font-size: 0.94rem;
  color: var(--ink-2);
  text-align: left;
}

.order-steps li:last-child {
  border-bottom: 1px dashed var(--line);
}

.order-steps li span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold-2);
  min-width: 30px;
  flex-shrink: 0;
}

.order-text .cta-buttons {
  justify-content: flex-start;
}

.order-qr {
  background: var(--paper);
  border-radius: 24px;
  padding: 40px 34px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform var(--transition);
  max-width: 340px;
  justify-self: center;
}

.order-qr:hover {
  transform: rotate(0deg) scale(1.02);
}

.order-qr img {
  width: 168px;
  height: 168px;
  margin: 0 auto 22px;
  image-rendering: pixelated;
}

.order-qr p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.order-qr strong {
  color: var(--ink);
  font-weight: 600;
}

.order-qr a {
  color: var(--wine);
  font-weight: 600;
}

.order-qr a:hover { color: var(--wine-2); }

/* perforated order-ticket variant */
.order-ticket {
  padding: 0;
  overflow: visible;
}

.ticket-top {
  padding: 36px 32px 26px;
}

.ticket-top img {
  width: 156px;
  height: 156px;
  margin-bottom: 18px;
}

.ticket-top p {
  font-size: 0.86rem;
}

.ticket-divider {
  position: relative;
  border-top: 2px dashed var(--line);
}

/* punched notches — filled with the section background */
.ticket-divider::before,
.ticket-divider::after {
  content: '';
  position: absolute;
  top: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ivory);
}

.ticket-divider::before { left: -11px; }
.ticket-divider::after { right: -11px; }

.ticket-stub {
  padding: 20px 32px 28px;
}

.ticket-stub-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.ticket-stub-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wine);
  font-variant-numeric: tabular-nums;
}

/* ===== IMPORTANT INFO ===== */
.important-info {
  padding: 110px 0;
  background: var(--ivory-2);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.info-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 34px 30px;
}

.info-card h4 {
  color: var(--wine);
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-family: var(--font-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.info-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.info-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.info-card li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.nonveg-mark {
  display: inline-block;
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-left: 4px;
}

.info-disclaimer {
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  max-width: 72ch;
}

/* ===== PRODUCTS (brand home) ===== */
.products {
  padding: 130px 0 150px;
  background: var(--ivory);
}

/* interactive duel stage — hover a side and it takes over */
.duel-stage {
  display: flex;
  margin-top: 64px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 680px;
}

.duel-panel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
  overflow: hidden;
  cursor: pointer;
  outline-offset: -4px;
  transition: flex 0.7s cubic-bezier(0.5, 0, 0.15, 1),
              filter 0.5s ease;
}

.duel-classic {
  background:
    radial-gradient(560px 420px at 50% 30%, rgba(198, 161, 75, 0.30), transparent 68%),
    #F6EEDA;
}

.duel-women {
  background:
    radial-gradient(560px 420px at 50% 30%, rgba(167, 47, 63, 0.16), transparent 68%),
    #F8E9E0;
}

.duel-panel.is-active {
  flex: 1.75;
}

.duel-panel:not(.is-active) {
  filter: saturate(0.45) brightness(0.98);
}

/* giant editorial index number */
.duel-num {
  position: absolute;
  top: 22px;
  right: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 6.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(126, 27, 44, 0.22);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.5s ease;
}

.duel-women .duel-num {
  -webkit-text-stroke-color: rgba(167, 47, 63, 0.26);
}

.duel-panel.is-active .duel-num {
  -webkit-text-stroke-color: rgba(126, 27, 44, 0.40);
}

.duel-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 26px 0 18px;
}

.duel-media img {
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(92, 18, 32, 0.24));
  transition: transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
  transform: scale(0.86);
}

.duel-panel.is-active .duel-media img {
  transform: scale(1) translateY(-6px);
}

.duel-body {
  position: relative;
  z-index: 1;
}

.duel-tag {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.duel-women .duel-tag {
  color: #A72F3F;
}

.duel-body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--ink);
  margin-bottom: 8px;
}

.duel-desc {
  color: var(--ink-2);
  font-size: 0.95rem;
  max-width: 44ch;
  margin-bottom: 4px;
  text-wrap: pretty;
}

/* details unfold only on the active side */
.duel-details {
  max-height: 0;
  opacity: 0;
  transform: translateY(18px);
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.5, 0, 0.15, 1),
              opacity 0.45s ease 0.12s,
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

.duel-panel.is-active .duel-details {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.duel-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0 24px;
  margin-top: 14px;
  border-top: 1px dashed var(--line);
}

.duel-points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.duel-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
  font-weight: 700;
}

.duel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 4px;
}

.duel-actions .btn {
  padding: 13px 26px;
  font-size: 0.74rem;
}

/* ===== COMPARE ===== */
.compare {
  padding: 120px 0 140px;
  background: var(--ivory-2);
}

/* head-to-head panel: classic tint | paper spine | blush tint */
.vs-wrap {
  margin-top: 64px;
  background: linear-gradient(90deg,
    #FBF5E7 0%, #FBF5E7 43%,
    var(--paper) 43%, var(--paper) 57%,
    #FAEFE8 57%, #FAEFE8 100%);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.vs-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 48px 48px 8px;
}

.vs-product {
  min-width: 0;
  text-align: center;
  padding-bottom: 20px;
  transition: transform var(--transition);
}

.vs-product:hover {
  transform: translateY(-6px);
}

.vs-product img {
  height: 200px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 18px 28px rgba(92, 18, 32, 0.22));
}

/* the WOMEN+ can render is narrower — balance its visual weight */
.vs-head .vs-product:last-of-type img {
  height: 220px;
}

.vs-product h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.vs-product-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.vs-badge {
  width: 68px;
  height: 68px;
  background: var(--wine);
  color: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.vs-badge::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(227, 203, 138, 0.6);
  border-radius: 50%;
}

.vs-rows {
  padding: 0 48px;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
}

.vs-feature {
  min-width: 0;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.vs-val {
  min-width: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.vs-val strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 560;
  color: var(--wine);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

/* rose accent for the WOMEN+ column */
.vs-row .vs-val:last-child strong {
  color: #A72F3F;
}

.vs-val small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.vs-val span {
  display: inline-block;
  max-width: 30ch;
  line-height: 1.5;
}

.diet-mark {
  display: inline-block;
  height: 16px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}

.vs-cards { display: none; }

.vs-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 34px 48px 48px;
  border-top: 1px dashed var(--line);
  margin-top: 18px;
}

.vs-ctas .btn {
  justify-self: center;
  padding: 13px 30px;
  font-size: 0.74rem;
}

.vs-btn-women {
  background: #A72F3F;
  border-color: #A72F3F;
}

.vs-btn-women:hover {
  background: #7E1B2C;
  border-color: #7E1B2C;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 170px 0 110px;
  background:
    radial-gradient(900px 480px at 92% 0%, rgba(198, 161, 75, 0.14), transparent 60%),
    var(--ivory);
  min-height: 100dvh;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-hero-content h1 {
  margin-bottom: 22px;
}

.contact-hero-content h1 .highlight {
  color: var(--wine);
  font-style: italic;
  display: block;
}

.contact-hero-content > p {
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 46ch;
  text-wrap: pretty;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 400px;
}

.contact-quick-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cq-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--wine);
  color: var(--ivory);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cq-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.cq-value {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}

.contact-form-wrapper { position: relative; }

.contact-form {
  background: var(--paper);
  border-radius: 26px;
  padding: 46px 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.contact-form > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-text);
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(126, 109, 96, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(126, 27, 44, 0.10);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: #1E1410;
  color: rgba(250, 245, 235, 0.68);
  padding: 84px 0 0;
}

.footer-mid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 64px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 46ch;
}

.footer-col h4 {
  font-family: var(--font-text);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.footer-col-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-size: 0.9rem;
  color: rgba(250, 245, 235, 0.68);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold-soft);
}

.footer-contact-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 245, 235, 0.12);
  padding: 26px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250, 245, 235, 0.45);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--wine);
  color: var(--ivory);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--wine-2);
  transform: translateY(-3px);
}

/* ===== LEGACY .reveal — content stays visible without JS;
   GSAP sets initial states at runtime ===== */
.reveal { opacity: 1; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-product-ring { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }

  .hero-tagline { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stat { text-align: center; }
  .hero-image { order: -1; }
  .hero-product-wrapper img { max-height: 320px; }
  .hero-product-ring { width: 320px; height: 320px; }
  .hero-duo img.duo-classic { max-height: 250px; }
  .hero-duo img.duo-women { max-height: 300px; margin-left: -48px; }

  .features-strip .container,
  .women-pillars .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .about .container,
  .nutrition .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual { max-width: 360px; }
  .about-product-img { max-height: 280px; }
  .nutrition-content { position: static; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .women-benefits { grid-template-columns: 1fr; }

  .bcaa-trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .amino-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* orbit unwinds into rounded pill rows */
  .steps-orbit {
    width: auto;
    max-width: 560px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 48px auto 0;
  }

  .orbit-ring { display: none; }

  .orbit-center {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 26px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    padding: 18px 26px;
    box-shadow: var(--shadow-md);
  }

  .orbit-center img { max-height: 62px; }
  .orbit-center-label { text-align: left; }

  .steps-orbit .step-card,
  .steps-5 .step-card[data-step],
  .steps-4 .step-card[data-step] {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 18px;
    background: var(--paper);
    border-radius: 999px;
    padding: 14px 72px 14px 18px;
    box-shadow: var(--shadow-sm);
  }

  .step-card::before {
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
  }

  .step-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    background: var(--ivory-2);
    border: none;
    box-shadow: none;
  }

  .step-icon img { height: 38px; }

  .step-body h3 { margin: 0 0 3px; font-size: 1.02rem; }
  .step-body p { font-size: 0.86rem; max-width: none; }

  /* duel stacks vertically — both sides fully open, no hover states */
  .duel-stage {
    flex-direction: column;
    min-height: 0;
  }

  .duel-panel,
  .duel-panel.is-active,
  .duel-panel:not(.is-active) {
    flex: 1;
    filter: none;
    cursor: auto;
    padding: 36px 28px;
  }

  .duel-media img,
  .duel-panel.is-active .duel-media img {
    transform: none;
    max-height: 230px;
  }

  .duel-details,
  .duel-panel.is-active .duel-details {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .duel-num { font-size: 4.5rem; }

  .duel-actions { flex-wrap: nowrap; }

  .duel-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .order-text p { margin-left: auto; margin-right: auto; }
  .order-text .cta-buttons { justify-content: center; }
  .order-qr { justify-self: center; }

  .info-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact-hero-content { text-align: center; }
  .contact-hero-content > p { margin: 0 auto 40px; }
  .contact-quick-links { align-items: center; }
  .contact-quick-item { width: 100%; }

  .footer-mid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 768px) {
  .navbar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 20, 16, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1001;
  }

  .navbar-overlay.open { display: block; }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100dvh;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 36px 36px;
    gap: 26px;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
  }

  .navbar-nav.open { right: 0; }

  .navbar-nav a {
    color: var(--ink) !important;
    font-size: 1rem;
  }

  .navbar-cta { width: 100%; }

  .navbar-cta .btn {
    width: 100%;
    background: var(--wine);
    border-color: var(--wine);
    color: var(--ivory);
  }

  .navbar-toggle {
    display: flex;
    z-index: 1003;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 56px;
  }

  /* .hero now owns the top/bottom clearance; avoid stacking with the 1024px .container padding */
  .hero .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .hero-product-wrapper img { max-height: 260px; }
  .hero-duo img.duo-classic { max-height: 200px; }
  .hero-duo img.duo-women { max-height: 240px; margin-left: -36px; }

  .marquee { transform: rotate(0) scale(1); margin: 0; }

  .features-strip .container,
  .women-pillars .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .bcaa-trio {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .women-benefits .benefit-card {
    padding: 30px 26px 30px 84px;
  }

  .macro-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .micro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile: the side-by-side table gives way to two full standalone spec cards */
  .vs-wrap { display: none; }

  .vs-cards {
    display: flex;
    flex-direction: column;
  }

  .vs-card {
    background: var(--paper);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    padding: 40px 26px 32px;
    text-align: center;
    margin-bottom: 34px;
  }

  .vs-card-b {
    background: #FBF0EC;
    margin-bottom: 0;
  }

  .vs-cards-divider {
    align-self: center;
    width: 46px;
    height: 46px;
    margin: -23px auto 0;
    border-radius: 50%;
    background: var(--wine);
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
  }

  .vs-cards-divider::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(227, 203, 138, 0.6);
    border-radius: 50%;
  }

  .vs-card-img { height: 150px; object-fit: contain; margin: 0 auto 16px; display: block; }

  .vs-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .vs-card-tag {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 22px;
  }

  .vs-card-stats {
    text-align: left;
    border-top: 1px dashed var(--line);
  }

  .vs-card-stats li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
  }

  .vs-card-label {
    flex: 0 0 auto;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .vs-card-value {
    flex: 0 1 auto;
    min-width: 0;
    text-align: right;
    font-size: 0.86rem;
    color: var(--ink-2);
  }

  .vs-card-value strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 560;
    color: var(--wine);
    line-height: 1.05;
  }

  .vs-card-b .vs-card-value strong { color: #A72F3F; }

  .vs-card-value small {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
  }

  .vs-card-value .diet-mark { margin-right: 4px; }

  .vs-card-cta {
    display: block;
    width: 100%;
    margin-top: 28px;
  }

  .footer-mid { grid-template-columns: 1fr; gap: 36px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .contact-form { padding: 34px 26px; }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-watermark]::before,
  .hero::before,
  .cta::before,
  .amino-acids::before {
    font-size: clamp(3.4rem, 15vw, 6rem);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 22px; }

  .amino-wall {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 22px;
  }

  .hero-stat {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

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

  .women-pillars .container { grid-template-columns: repeat(2, 1fr); }

  .product-card-body { padding: 28px 24px; }

  .order-qr { transform: rotate(0); }
}
