/* ============================================
   BIOHARMONY · GLOBAL STYLES
   Paleta: verde profundo + crema + dorado
   Tipografía: Lora (serif) + Raleway (sans)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --green-deep:    #1F3D2B;
  --green-medium:  #2F5D43;
  --green-soft:    #4A7359;
  --cream:         #F5EFE2;
  --cream-light:   #FAF6EC;
  --cream-warm:    #EFE6D2;
  --gold:          #C9A961;
  --gold-dark:     #A8893F;
  --gold-soft:     #DBC288;

  /* Neutrals */
  --ink:           #1A2E22;
  --ink-soft:      #4B5C52;
  --line:          #E0D6C2;
  --white:         #FFFFFF;

  /* Type */
  --font-serif:    'Lora', Georgia, serif;
  --font-sans:     'Raleway', -apple-system, sans-serif;

  /* Layout */
  --container:     1200px;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;

  /* Shadows (soft UI evolution) */
  --shadow-sm:     0 1px 2px rgba(31, 61, 43, 0.06), 0 1px 3px rgba(31, 61, 43, 0.04);
  --shadow:        0 4px 12px rgba(31, 61, 43, 0.08), 0 2px 4px rgba(31, 61, 43, 0.04);
  --shadow-lg:     0 12px 32px rgba(31, 61, 43, 0.12), 0 4px 12px rgba(31, 61, 43, 0.06);

  /* Motion */
  --t-fast:        150ms ease;
  --t:             250ms ease;
  --t-slow:        400ms ease;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-light);
}

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

a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-dark); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.7; }

/* ============ CONTAINER & SECTION ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  cursor: pointer;
  text-align: center;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream-light);
}
.btn-primary:hover {
  background: var(--green-medium);
  color: var(--cream-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--cream-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--green-deep);
  color: var(--green-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--cream-light);
}

.btn-ghost {
  color: var(--green-deep);
  padding: 0.5rem 0;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold-dark); }
.btn-ghost::after { content: ' →'; transition: transform var(--t); display: inline-block; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--gold-dark); }
.logo img { height: 64px; width: auto; display: block; }
.site-footer .logo img { height: 56px; }
.site-footer .logo img { filter: brightness(0) invert(1); opacity: 0.95; }

/* ==== PRODUCT IMAGE (real photo) ==== */
.product-img {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.product-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--t-slow);
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img.tall { min-height: 320px; }
.product-img.full { min-height: 480px; aspect-ratio: 4/5; }
.product-img.square { aspect-ratio: 1/1; min-height: auto; padding: 2rem; }
.pp-thumbs .product-img { aspect-ratio: 1/1; min-height: auto; padding: 0.5rem; cursor: pointer; border: 1.5px solid transparent; border-radius: var(--radius-sm); transition: border-color var(--t); }
.pp-thumbs .product-img:hover { border-color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--green-deep);
  cursor: pointer;
  transition: background var(--t);
}
.icon-btn:hover { background: var(--cream-warm); }

.menu-toggle { display: none; }

/* ==== LANGUAGE SWITCHER ==== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
  background: var(--cream-light);
}
.lang-switch a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  color: var(--ink-soft);
  line-height: 1;
  transition: all var(--t);
}
.lang-switch a.active {
  background: var(--green-deep);
  color: var(--cream-light);
}
.lang-switch a:not(.active):hover { color: var(--green-deep); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ============ IMAGE PLACEHOLDERS (para Higgsfield) ============ */
.img-ph {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  border: 1.5px dashed var(--gold-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--green-medium);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.img-ph::before {
  content: '◌';
  position: absolute;
  font-size: 4rem;
  color: var(--gold-soft);
  opacity: 0.35;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% - 30px));
  font-weight: 300;
}
.img-ph .ph-label {
  position: relative;
  z-index: 1;
  max-width: 90%;
  background: rgba(250, 246, 236, 0.92);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.img-ph .ph-label small {
  display: block;
  color: var(--gold-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.img-ph.tall { min-height: 480px; }
.img-ph.full { min-height: 560px; aspect-ratio: 4/5; }
.img-ph.wide { min-height: 320px; aspect-ratio: 16/9; }
.img-ph.square { aspect-ratio: 1/1; min-height: auto; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { margin-bottom: 2rem; max-width: 540px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============ TRUST BAND ============ */
.trust-band {
  background: var(--green-deep);
  color: var(--cream-light);
  padding: 1.4rem 0;
}
.trust-band .container {
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--ink-soft); font-size: 1.08rem; }

/* ============ SYMPTOM CARDS ============ */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.symptom-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.symptom-card .axis-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.symptom-card .symptom-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.45;
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}
.symptom-card .symptom-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.symptom-card:hover .symptom-cta { color: var(--gold-dark); }

@media (max-width: 880px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .symptom-grid { grid-template-columns: 1fr; } }

/* ============ AXES SECTION ============ */
.axes-section { background: var(--cream); }
.axes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.axis-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  border: 1px solid var(--line);
}
.axis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.axis-card .img-ph { border-radius: 0; border-left: none; border-right: none; border-top: none; min-height: 200px; }
.axis-card-body { padding: 1.5rem; }
.axis-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.axis-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; }
@media (max-width: 880px) { .axes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .axes-grid { grid-template-columns: 1fr; } }

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card .img-ph { border: none; border-radius: 0; min-height: 320px; }
.product-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.product-axis-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.product-card h3 { margin-bottom: 0.75rem; }
.product-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.5rem; flex: 1; }
.product-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--cream-warm);
  color: var(--green-medium);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.product-status.new { background: var(--gold-soft); color: var(--green-deep); }

@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ============ FOUNDER ============ */
.founder { background: var(--green-deep); color: var(--cream-light); }
.founder h2 { color: var(--cream-light); }
.founder .eyebrow { color: var(--gold); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.founder p { color: rgba(245, 239, 226, 0.85); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.5rem; }
.founder .btn-gold { margin-top: 1rem; }
.founder .img-ph {
  background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-soft) 100%);
  border-color: var(--gold-soft);
  color: var(--cream-light);
}
.founder .img-ph .ph-label { background: rgba(31, 61, 43, 0.85); color: var(--cream-light); border-color: var(--gold); }
.founder .img-ph .ph-label small { color: var(--gold); }
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--cream-light);
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.6;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream-warm);
  border: 1.5px dashed var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--gold-dark); font-weight: 600;
  text-align: center; padding: 4px;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--green-deep); }
.testimonial-info { font-size: 0.82rem; color: var(--ink-soft); }
.testimonial-axis {
  display: inline-block; margin-top: 1rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============ BLOG / EDU ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--t);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .img-ph { border-radius: 0; border: none; min-height: 220px; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.blog-card h4 { margin: 0.6rem 0 0.5rem; font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.35; color: var(--green-deep); }
.blog-card p { font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.newsletter h2 { margin-bottom: 0.75rem; }
.newsletter p { color: var(--ink-soft); margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-sans); font-size: 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t);
}
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
}
@media (max-width: 540px) {
  .newsletter-form { flex-direction: column; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--green-deep);
  color: rgba(245, 239, 226, 0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.site-footer .logo { color: var(--cream-light); display: block; margin-bottom: 1rem; }
.site-footer .logo span { color: var(--gold); }
.site-footer h5 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.7rem; }
.footer-grid a { color: rgba(245, 239, 226, 0.75); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { font-size: 0.92rem; line-height: 1.65; max-width: 320px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ PRODUCT PAGE ============ */
.pp-hero { padding: 3rem 0 4rem; background: var(--cream-light); }
.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.pp-gallery .img-ph { aspect-ratio: 1/1; min-height: auto; }
.pp-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 0.75rem;
}
.pp-thumbs .img-ph { aspect-ratio: 1/1; min-height: auto; padding: 0.5rem; }
.pp-thumbs .img-ph::before { font-size: 1.5rem; transform: translate(-50%, -50%); }
.pp-thumbs .img-ph .ph-label { display: none; }

.pp-info { position: sticky; top: 100px; }
.pp-status { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 100px; background: var(--cream-warm); color: var(--green-medium); margin-bottom: 1rem; }
.pp-status.new { background: var(--gold-soft); color: var(--green-deep); }
.pp-info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.pp-subtitle { font-size: 0.95rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.pp-bullets { list-style: none; margin: 1.75rem 0; }
.pp-bullets li { display: flex; gap: 0.75rem; font-size: 0.95rem; padding: 0.45rem 0; color: var(--ink); }
.pp-bullets svg { width: 20px; height: 20px; color: var(--green-medium); flex-shrink: 0; margin-top: 2px; }
.pp-price { font-family: var(--font-serif); font-size: 2rem; color: var(--green-deep); margin: 1.25rem 0 1.5rem; }
.pp-price small { font-size: 0.85rem; color: var(--ink-soft); margin-left: 0.5rem; font-family: var(--font-sans); }
.pp-cta { display: flex; gap: 0.75rem; flex-direction: column; }
.pp-cta .btn { padding: 1.05rem 1.5rem; }

@media (max-width: 880px) {
  .pp-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pp-info { position: static; }
}

/* ============ INGREDIENT BLOCKS ============ */
.ingredient-list {
  display: grid; gap: 1.25rem;
}
.ingredient {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.ingredient h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.ingredient .dose {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: var(--cream-warm);
  border-radius: 4px;
}
.ingredient p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }

/* ============ BENEFITS GRID ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: left;
}
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 22px; height: 22px; color: var(--green-medium); }
.benefit-card h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--green-deep); }
@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============ SUPPLEMENT FACTS TABLE ============ */
.facts-table {
  background: var(--white);
  border: 2px solid var(--green-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-family: var(--font-sans);
}
.facts-header {
  background: var(--green-deep);
  color: var(--cream-light);
  padding: 1rem 1.5rem;
}
.facts-header h3 { color: var(--cream-light); font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.facts-meta { font-size: 0.85rem; padding: 0.75rem 1.5rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.facts-table table { width: 100%; border-collapse: collapse; }
.facts-table th {
  text-align: left; padding: 0.75rem 1.5rem;
  background: var(--cream-warm); color: var(--green-deep);
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1.5px solid var(--green-deep);
}
.facts-table th:last-child, .facts-table td:last-child { text-align: right; }
.facts-table td { padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.facts-table td.indent { padding-left: 2.5rem; color: var(--ink-soft); font-size: 0.88rem; }
.facts-footer { padding: 1rem 1.5rem; font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }

/* ============ COMBINES WITH ============ */
.combines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.combine-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--t);
}
.combine-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.combine-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  background: var(--cream-warm);
  border: 1px dashed var(--gold-soft);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--gold-dark); text-align: center; padding: 4px; font-weight: 600;
}
.combine-card h4 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--green-deep); }
.combine-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 0.5rem; }
@media (max-width: 880px) { .combines-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform var(--t);
  font-weight: 300;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

/* ============ AXIS INFO BOX ============ */
.axis-box {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-medium) 100%);
  color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; align-items: center;
}
.axis-box h3 { color: var(--cream-light); margin-bottom: 1rem; }
.axis-box .eyebrow { color: var(--gold); }
.axis-box p { color: rgba(245, 239, 226, 0.85); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.axis-box .img-ph {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-soft);
  color: var(--cream-light);
  min-height: 220px;
}
.axis-box .img-ph .ph-label { background: rgba(31, 61, 43, 0.85); color: var(--cream-light); border-color: var(--gold); }
.axis-box .img-ph .ph-label small { color: var(--gold); }
@media (max-width: 880px) { .axis-box { grid-template-columns: 1fr; padding: 2rem; } }

/* ============ ABOUT PAGE ============ */
.about-hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
}
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-hero .img-ph { aspect-ratio: 4/5; min-height: 480px; }
@media (max-width: 880px) { .about-hero-grid { grid-template-columns: 1fr; } }

.story-block {
  max-width: 760px; margin: 0 auto;
}
.story-block p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.story-block p:first-of-type::first-letter {
  font-size: 3.5rem; float: left; line-height: 1; margin: 4px 12px 0 0;
  font-family: var(--font-serif); color: var(--gold-dark); font-weight: 600;
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.value-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: left;
}
.value-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-weight: 500;
  display: block;
}
.value-card h3 {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  color: var(--green-deep);
}
.value-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--gold);
  color: var(--green-deep);
  text-align: center;
  padding: 4rem 0;
}
.cta-strip h2 { color: var(--green-deep); margin-bottom: 0.75rem; }
.cta-strip p { color: var(--green-medium); margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.alt-bg { background: var(--cream); }
.divider { height: 1px; background: var(--line); margin: 2rem 0; border: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ==== EDITORIAL PHOTO (full bleed image replaces .img-ph) ==== */
.editorial-img {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--cream-warm);
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-img.full { aspect-ratio: 4/5; min-height: 480px; }
.editorial-img.wide { aspect-ratio: 16/9; min-height: 220px; }
.editorial-img.box { aspect-ratio: 4/3; min-height: 220px; }
.axis-card .editorial-img { border-radius: 0; }
.blog-card .editorial-img { border-radius: 0; }
.axis-box .editorial-img { aspect-ratio: 4/3; min-height: 240px; }
