/* =============================================
   ROYAL SPIRULINA — CONTENT PAGE STYLES
   Shared styles for info, content, and support pages
   ============================================= */

/* ===== RESPONSIVE OVERRIDES FOR PAGE HERO ===== */
@media (max-width: 768px) {
  .page-hero {
    min-height: 280px;
    height: 35vh;
  }
  .page-hero-content h1 {
    font-size: 32px;
  }
}

/* ===== TWO-COLUMN CONTENT SECTION ===== */
.section-two-col {
  padding: 140px var(--content-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.section-two-col.bg-white { background: var(--white); }
.section-two-col.bg-ivory { background: var(--ivory); }

/* ===== ORIGIN / VISUAL CARDS ===== */
.origin-visual {
  position: relative;
  min-height: 520px;
}

.origin-card-main {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: linear-gradient(180deg, var(--emerald) 0%, var(--emerald-light) 100%);
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  overflow: hidden;
}

.origin-card-main::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
}

.origin-card-main::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}

.origin-card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.origin-card-main p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.origin-card-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: -30px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.origin-card-accent h4 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--emerald);
  font-weight: 400;
}

.origin-card-accent p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 500;
  margin-top: 6px;
}

/* ===== TIMELINE ===== */
.origin-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.origin-timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.origin-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.origin-timeline-item span {
  font-size: 14px;
  color: var(--charcoal-light);
  font-weight: 400;
}

.origin-timeline-item strong {
  color: var(--emerald-light);
  font-weight: 600;
}

/* ===== NUTRIENT BREAKDOWN ===== */
.wholefood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wholefood-nutrients {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.nutrient-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nutrient-row:last-child { border-bottom: none; }

.nutrient-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.nutrient-label {
  font-size: 13px;
  color: var(--charcoal-light);
  font-weight: 400;
  flex: 1;
}

.nutrient-value {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--emerald-light);
  font-weight: 400;
}

/* ===== PROTEIN COMPARISON BAR CHART ===== */
.wholefood-protein-block {
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-top: 40px;
}

.protein-bar-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.protein-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.protein-bar-name {
  font-size: 12px;
  color: var(--charcoal);
  font-weight: 500;
  min-width: 100px;
  text-align: right;
}

.protein-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.protein-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--emerald-light);
  transition: width 1s ease;
}

.protein-bar-fill.gold { background: var(--gold); }

.protein-bar-pct {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--charcoal);
  min-width: 44px;
}

.amino-acids-block { margin-top: 36px; }

.amino-acids-block h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.amino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amino-tag {
  padding: 6px 14px;
  background: var(--gold-dim);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--charcoal-light);
  font-weight: 500;
  border-radius: 2px;
}

/* ===== STAT CARDS (4-column grid) ===== */
.section-cards {
  padding: 140px var(--content-padding);
}

.section-cards.bg-ivory { background: var(--ivory); }
.section-cards.bg-white { background: var(--white); }

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

.stat-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 48px 32px 40px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.stat-card-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 24px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  background: rgba(201,168,76,0.05);
}

.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--emerald);
  font-weight: 400;
  margin-bottom: 8px;
}

.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.stat-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.stat-card:hover::after { transform: scaleX(1); }

/* ===== SPLIT LAYOUT (dark/light halves) ===== */
.section-split {
  position: relative;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-left {
  background: var(--emerald);
  padding: 120px 80px;
  position: relative;
}

.split-left::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
}

.split-left .section-title { color: var(--white); }
.split-left .section-text { color: rgba(255,255,255,0.5); }

.split-right {
  background: var(--ivory-dark);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature checklist in dark panel */
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

.feature-check-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* Numbered steps in light panel */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.step-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.step-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== HIGHLIGHTS / NUMBERED LIST ===== */
.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.highlight-number {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--gold-dim);
}

.highlight-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.highlight-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== BENEFITS GRID (3 or 4 col) ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

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

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.benefit-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--emerald);
  font-weight: 400;
  margin-bottom: 8px;
}

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.benefits-note {
  text-align: center;
  max-width: 500px;
  margin: 48px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== WHO BENEFITS / CARD GRID ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.who-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.who-icon {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.who-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.who-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.who-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border-radius: 2px;
}

/* ===== HIGHLIGHTS INTRO ===== */
.highlights-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.highlights-intro .section-label { justify-content: center; }
.highlights-intro .section-text { margin-bottom: 0; }

/* ===== SECTION PADDED ===== */
.section-padded {
  padding: 140px var(--content-padding);
}

.section-padded.bg-white { background: var(--white); }
.section-padded.bg-ivory { background: var(--ivory); }

/* ===== SUSTAINABILITY SPLIT ===== */
.section-sustainability { padding: 0; }

.sustainability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sustainability-left {
  background: var(--ivory-dark);
  padding: 120px 80px;
}

.sustainability-right {
  background: var(--white);
  padding: 120px 80px;
}

.sustainability-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

/* ===== SUSTAIN ICON (for feature list) ===== */
.sustain-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.sustain-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.sustain-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== COMPARISON WRAP ===== */
.comparison-inner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.comparison-stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

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

.comp-stat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--emerald);
  font-weight: 400;
  margin-bottom: 8px;
}

.comp-stat p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* Comparison table */
.comparison-table-wrap {
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.comparison-table .comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-table .comparison-row:last-child { border-bottom: none; }

.comparison-row-header {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.comparison-row-header.spirulina-col { color: var(--gold); }

.comparison-row-nutrient {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}

.comparison-row-value {
  font-size: 13px;
  text-align: center;
}

.comparison-row-value.highlight {
  color: var(--emerald-light);
  font-weight: 600;
}

.comparison-row-value.dim {
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== WHO TAGS ===== */
.who-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== SUSTAINABILITY / STAT SECTION ===== */
.sustain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

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

.sustain-stat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--emerald);
  font-weight: 400;
  margin-bottom: 8px;
}

.sustain-stat p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.sustain-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sustain-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sustain-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.sustain-feature span {
  font-size: 14px;
  color: var(--charcoal-light);
  font-weight: 400;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.comparison-row {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row .comp-label {
  flex: 1;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 400;
}

.comparison-row .comp-value {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--emerald-light);
  font-weight: 400;
  min-width: 100px;
  text-align: right;
}

/* ===== PHYCOCYANIN FEATURE SECTION ===== */
.section-phycocyanin {
  padding: 0;
}

.phyco-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.phyco-left {
  background: linear-gradient(135deg, #0A2D4A 0%, #1A4B6A 100%);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phyco-left .section-title { color: var(--white); }
.phyco-left .section-text { color: rgba(255,255,255,0.6); }

.phyco-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phyco-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phyco-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}

.phyco-feature span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.phyco-right {
  background: linear-gradient(135deg, #0D3356 0%, #1A5580 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.phyco-orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}

.phyco-orb-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,180,255,0.25), rgba(26,75,106,0.5));
  border: 1px solid rgba(100,180,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.4;
}

/* ===== SCIENCE / QUOTE SECTION ===== */
.science-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.science-stat {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}

.science-stat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--emerald);
  font-weight: 400;
  margin-bottom: 8px;
}

.science-stat p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.science-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 0;
  position: relative;
}

.science-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold-dim);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.science-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.science-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

/* ===== PROCESS TIMELINE ===== */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--emerald-light));
}

.timeline-step {
  position: relative;
  margin-bottom: 64px;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-num-circle {
  position: absolute;
  left: -60px;
  top: 0;
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  z-index: 1;
}

.timeline-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-dim);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border-radius: 2px;
  margin-bottom: 12px;
}

.timeline-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.timeline-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== COMPARISON COLUMNS (dark background) ===== */
.section-comparison {
  background: var(--charcoal);
  padding: 120px var(--content-padding);
}

.comparison-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.comparison-col {
  padding: 48px;
  border-radius: var(--radius);
}

.comparison-col.col-negative {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.comparison-col.col-positive {
  background: rgba(201,168,76,0.13);
  border: 1px solid rgba(201,168,76,0.28);
}

.comparison-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 32px;
}

.col-negative h3 { color: rgba(255,255,255,0.5); }
.col-positive h3 { color: var(--gold); }

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comparison-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.col-negative .comparison-icon {
  background: rgba(192,57,43,0.2);
  color: #E74C3C;
}

.col-positive .comparison-icon {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
}

.comparison-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

/* ===== QUALITY CARDS ===== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quality-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.quality-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.quality-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.quality-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== WARNING CALLOUT ===== */
.warning-callout {
  background: #3A2A1A;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.warning-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.warning-callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
}

.warning-callout p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== BADGE ROW ===== */
.section-badges {
  background: var(--emerald);
  padding: 80px var(--content-padding);
  text-align: center;
}

.badges-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
}

.badges-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  padding: 12px 28px;
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  border-radius: 2px;
  transition: all var(--transition);
}

.badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235C5C52' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--emerald);
  color: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10,58,42,0.3);
}

/* Contact info card */
.contact-info-card {
  background: var(--emerald-mid);
  color: rgba(255,255,255,0.92);
  padding: 48px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-info-item h4,
.contact-info-content strong {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-weight: 400;
}

.contact-info-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-item a:hover { color: var(--gold); }

.contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.15);
  margin: 8px 0;
}

.contact-hours-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-hours-text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-weight: 400;
}

/* ===== FAQ CARDS ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.faq-card:hover::before { transform: scaleX(1); }

.faq-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold-dim);
  font-weight: 400;
  margin-bottom: 16px;
}

.faq-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.faq-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== TESTIMONIAL / REVIEW CARDS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 48px 40px;
  transition: all 0.4s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-author-info span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--success);
  font-weight: 600;
  margin-top: 4px;
}

.verified-badge::before {
  content: '\2713';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== VIDEO CARDS ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

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

.video-card-thumb {
  height: 240px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid var(--gold);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.video-card:hover .play-btn {
  background: var(--gold);
}

.video-card:hover .play-btn::after {
  border-left-color: var(--emerald);
}

.video-card-info {
  background: var(--emerald);
  padding: 24px 28px;
}

.video-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.video-card-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* -- Real-thumbnail scrim so play button stays legible -- */
.video-card-thumb.has-video {
  position: relative;
}
.video-card-thumb.has-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.video-card-thumb.has-video .play-btn {
  position: relative;
  z-index: 1;
}

/* ===== VIDEO LIGHTBOX MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
}
.video-modal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.video-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}
.video-modal-close:hover {
  color: #fff;
}

/* ===== SHARE STORY CTA ===== */
.share-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PAGE-LEVEL SECTION ===== */
.section-content {
  padding: 140px var(--content-padding);
}

.section-content.bg-white { background: var(--white); }
.section-content.bg-ivory { background: var(--ivory); }
.section-content.bg-emerald { background: var(--emerald); }

/* ===== SECTION PROCESS (How It's Grown) ===== */
.section-process {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

.process-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.process-intro .section-label { justify-content: center; }
.process-intro .section-text { margin-bottom: 0; }

/* ===== SECTION SCIENCE ===== */
.section-science {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

.science-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

/* ===== PHYCOCYANIN FEATURE h4/p ===== */
.phyco-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.phyco-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.phyco-source {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.phyco-source a {
  color: var(--gold);
  text-decoration: none;
}

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

.phyco-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 8px;
}

.phyco-visual p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ===== COMPARISON COL ADDITIONS ===== */
.comparison-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}

.col-negative h2 { color: rgba(255,255,255,0.90); }
.col-positive h2 { color: #FAF7F0; }

.comparison-col-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.col-negative .comparison-col-label { color: rgba(255,255,255,0.65); }
.col-positive .comparison-col-label { color: var(--gold); }

.comparison-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item-text {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

/* ===== FREEZE-DRIED SECTION ===== */
.section-freeze {
  background: var(--ivory);
  padding: 120px var(--content-padding);
}

.freeze-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.freeze-col {
  padding: 48px;
  border-radius: var(--radius);
}

.col-spray {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}

.col-freeze {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
}

.freeze-col-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.col-spray .freeze-col-label { color: var(--text-muted); }
.col-freeze .freeze-col-label { color: var(--gold); }

.freeze-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}

.col-spray h2 { color: var(--text-muted); }
.col-freeze h2 { color: var(--charcoal); }

.freeze-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.freeze-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.freeze-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.col-spray .freeze-icon {
  background: rgba(192,57,43,0.1);
  color: #E74C3C;
}

.col-freeze .freeze-icon {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

.freeze-item-text {
  font-size: 14px;
  color: var(--charcoal-light);
  font-weight: 300;
}

/* ===== SECTION WARNING ===== */
.section-warning {
  padding: 80px var(--content-padding);
  background: var(--charcoal);
}

.warning-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.warning-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
}

.warning-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== SECTION PROTEIN ===== */
.section-protein {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

.protein-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.protein-stat {
  background: var(--emerald);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin-bottom: 48px;
}

.protein-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.protein-stat h3 sup {
  font-size: 32px;
  font-weight: 400;
}

.protein-stat-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.protein-stat-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px auto;
}

.protein-stat-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.protein-comparison {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px;
}

.protein-comparison-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.protein-compare-bar {
  margin-bottom: 16px;
}

.protein-compare-bar:last-child {
  margin-bottom: 0;
}

.protein-compare-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 6px;
  font-weight: 400;
}

.protein-compare-track {
  height: 8px;
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  overflow: hidden;
}

.protein-compare-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.protein-compare-fill.muted {
  background: rgba(0,0,0,0.12);
}

.protein-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.protein-fact {
  padding: 20px;
  background: rgba(201,168,76,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.protein-fact-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.protein-fact-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SECTION AMINO ===== */
.section-amino {
  padding: 140px var(--content-padding);
  background: var(--white);
}

.section-amino .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

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

.amino-card {
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.amino-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-sm);
}

.amino-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.amino-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.amino-function {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SECTION VITAMINS ===== */
.section-vitamins {
  padding: 140px var(--content-padding);
  background: var(--emerald);
}

.section-vitamins .section-label .section-label-line {
  background: rgba(255,255,255,0.15);
}

.section-vitamins .section-label span {
  color: var(--gold);
}

.section-vitamins .section-title {
  color: var(--white);
}

.section-vitamins .section-text {
  color: rgba(255,255,255,0.6);
}

.vitamins-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vitamins-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.vitamins-highlight-stat {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.vitamins-highlight-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.vitamins-highlight-label strong {
  color: rgba(255,255,255,0.85);
}

.vitamins-grid-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vitamin-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}

.vitamin-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.3);
}

.vitamin-pill-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.vitamin-pill-alt {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ===== SECTION MINERALS ===== */
.section-minerals {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

.section-minerals .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.minerals-comparison {
  max-width: 900px;
  margin: 0 auto;
}

.mineral-comparison-row {
  display: grid;
  grid-template-columns: 120px 80px 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mineral-comparison-header {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  padding-bottom: 16px;
}

.mineral-comp-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

.mineral-comp-amount {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.mineral-comp-vs {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.mineral-comp-rda {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.mineral-comp-rda strong {
  color: var(--charcoal-light);
  font-weight: 600;
  margin-right: 4px;
}

.minerals-also {
  max-width: 900px;
  margin: 48px auto 0;
  text-align: center;
}

.minerals-also-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.minerals-also-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.mineral-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  font-size: 12px;
  color: var(--charcoal-light);
  font-weight: 400;
}

/* ===== SECTION BIOACTIVE ===== */
.section-bioactive {
  padding: 140px var(--content-padding);
  background: var(--white);
}

.section-bioactive .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

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

.bioactive-card {
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.bioactive-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-sm);
}

.bioactive-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.bioactive-icon.blue { background: rgba(10,45,74,0.1); color: #0A2D4A; }
.bioactive-icon.green { background: rgba(10,58,42,0.1); color: var(--emerald); }
.bioactive-icon.orange { background: rgba(211,140,50,0.12); color: #D38C32; }
.bioactive-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.bioactive-icon.red { background: rgba(192,57,43,0.1); color: #C0392B; }
.bioactive-icon.teal { background: rgba(0,128,128,0.1); color: #008080; }

.bioactive-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.bioactive-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.bioactive-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bioactive-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bioactive-benefit {
  font-size: 12px;
  color: var(--charcoal-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.bioactive-benefit::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

/* ===== SECTION OMEGA ===== */
.section-omega {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

.omega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.omega-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.omega-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.omega-label {
  flex-shrink: 0;
  width: 80px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.omega-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.omega-detail p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.enzymes-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
}

.enzymes-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.enzymes-box-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.enzymes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enzyme-row {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.enzyme-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== SECTION PIGMENTS ===== */
.section-pigments {
  padding: 140px var(--content-padding);
  background: var(--emerald);
}

.section-pigments .section-label .section-label-line {
  background: rgba(255,255,255,0.15);
}

.section-pigments .section-label span {
  color: var(--gold);
}

.section-pigments .section-title {
  color: var(--white);
}

.section-pigments .section-text {
  color: rgba(255,255,255,0.6);
}

.pigments-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pigments-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pigment-bar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pigment-bar:hover {
  background: rgba(255,255,255,0.08);
}

.pigment-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pigment-swatch.green { background: #2ECC71; }
.pigment-swatch.blue { background: #2980B9; }
.pigment-swatch.orange { background: #E67E22; }

.pigment-info {
  flex: 1;
}

.pigment-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.pigment-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.pigment-tag {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  padding-top: 2px;
}

/* ===== SECTION CONTAINERS (references, testimonials, contact) ===== */
.section-videos {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

.section-reviews {
  padding: 140px var(--content-padding);
  background: var(--white);
}

.section-share {
  padding: 100px var(--content-padding);
  background: var(--emerald);
  text-align: center;
}

.section-share .section-title {
  color: var(--white);
}

.section-share .section-text {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 32px;
}

.section-share .section-label .section-label-line {
  background: rgba(255,255,255,0.15);
}

.section-share .section-label span {
  color: var(--gold);
}

.section-contact {
  padding: 140px var(--content-padding);
  background: var(--white);
}

.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.contact-form-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-panel {
  position: relative;
}

.card-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-hours-note {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  font-style: italic;
}

.section-faq {
  padding: 140px var(--content-padding);
  background: var(--ivory);
}

/* ===== REFERENCES PAGE ===== */
.disclaimer-bar {
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 16px var(--content-padding);
  text-align: center;
}

.disclaimer-bar p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.section-categories {
  padding: 140px var(--content-padding);
  background: var(--white);
}

.section-categories .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

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

.category-card {
  display: block;
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.category-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}

.category-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-arrow {
  font-size: 16px;
  color: var(--gold);
  transition: var(--transition);
}

.category-card:hover .card-arrow {
  transform: translateX(4px);
}

.section-countries {
  padding: 120px var(--content-padding);
  background: var(--ivory);
}

.section-countries .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.country-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.country-item:hover {
  border-color: rgba(201,168,76,0.2);
}

.country-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.country-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-two-col,
  .wholefood-grid,
  .split-inner,
  .phyco-inner,
  .contact-grid,
  .comparison-cols,
  .comparison-inner,
  .freeze-inner,
  .sustainability-inner,
  .comparison-inner-wrap,
  .protein-inner,
  .vitamins-inner,
  .omega-inner,
  .pigments-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .split-left,
  .split-right,
  .phyco-left,
  .phyco-right {
    padding: 80px 48px;
  }

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

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

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

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

  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-list {
    max-width: 100%;
  }

  .origin-visual {
    min-height: 400px;
  }

  .contact-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .section-two-col,
  .section-content,
  .section-cards {
    padding: 80px var(--content-padding);
  }

  .cards-grid,
  .benefits-grid,
  .benefits-grid.cols-4,
  .who-grid,
  .science-stats,
  .quality-grid,
  .videos-grid,
  .faq-grid,
  .reviews-grid,
  .amino-cards,
  .bioactive-grid,
  .categories-grid,
  .countries-grid {
    grid-template-columns: 1fr;
  }

  .sustain-stats,
  .protein-facts {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .mineral-comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .mineral-comparison-header {
    display: none;
  }

  .mineral-comp-vs {
    grid-column: 1 / -1;
  }

  .mineral-comp-rda {
    grid-column: 1 / -1;
    text-align: left;
  }

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

  .highlight-item {
    flex-direction: column;
    gap: 16px;
  }

  .warning-callout,
  .warning-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .badges-row {
    flex-direction: column;
    align-items: center;
  }

  .origin-card-accent {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -10px;
  }

  .origin-card-accent h4 { font-size: 32px; }

  .timeline { padding-left: 48px; }

  .timeline-num-circle {
    left: -48px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .comparison-cols {
    gap: 32px;
  }

  .comparison-col {
    padding: 32px;
  }

  .split-left,
  .split-right,
  .phyco-left,
  .phyco-right {
    padding: 60px 32px;
  }
}


/* =============================================
   REFERENCE DETAIL PAGE
   ============================================= */

/* -- Container -- */
.ref-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* -- Loading state -- */
.ref-loading {
  text-align: center;
  padding: 80px 20px;
}

.ref-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--ivory-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: refSpin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes refSpin { to { transform: rotate(360deg); } }

.ref-loading p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-muted);
  font-style: italic;
}

/* -- Error state -- */
.ref-error {
  text-align: center;
  padding: 60px 20px;
}

.ref-error h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.ref-error p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ref-error a {
  display: inline-block;
  text-decoration: none;
  background: var(--emerald);
  color: var(--white);
  padding: 12px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}

.ref-error a:hover {
  background: var(--emerald-light);
}

/* -- Reference Body (rendered WP content) -- */
.ref-body {
  line-height: 1.8;
  color: var(--charcoal);
}

.ref-body hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin: 40px 0;
}

.ref-body p {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Paper titles */
.ref-body p > strong:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--emerald);
  display: block;
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Author/publication line (usually after <br> inside same <p> as the title) */
.ref-body p > br + em,
.ref-body p > br {
  display: block;
}

/* Abstract paragraphs — the paragraph after a title paragraph */
.ref-body p + p:not(:has(strong:first-child)) {
  color: var(--charcoal-light);
  font-size: 14px;
  padding-left: 20px;
  border-left: 2px solid rgba(201,168,76,0.15);
  margin-bottom: 12px;
}

/* Links inside references */
.ref-body a {
  color: var(--emerald-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.ref-body a:hover {
  color: var(--gold);
}

/* Lists in the hub pages */
.ref-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ref-body ul li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 14px;
  color: var(--charcoal-light);
  position: relative;
  line-height: 1.65;
}

.ref-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Intro text (first paragraph before any <hr>) */
.ref-body > p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--charcoal-light);
  font-style: italic;
  border-left: none;
  padding-left: 0;
  margin-bottom: 32px;
}

/* -- Country item hover/link styles -- */
a.country-item {
  text-decoration: none;
  cursor: pointer;
  display: block;
}

a.country-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

a.country-item h4 {
  color: var(--charcoal);
}

a.country-item span {
  color: var(--text-muted);
}

/* -- Back link (reuse blog pattern, scoped to ref pages too) -- */
.ref-container .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--emerald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.ref-container .back-link:hover {
  color: var(--gold);
}

.ref-container .back-link .arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.ref-container .back-link:hover .arrow {
  transform: translateX(-4px);
}

/* -- Responsive -- */
@media (max-width: 768px) {
  .ref-container {
    padding: 40px 16px 60px;
  }

  .ref-body p > strong:first-child {
    font-size: 15px;
  }

  .ref-body p {
    font-size: 14px;
  }

  .ref-body p + p:not(:has(strong:first-child)) {
    padding-left: 16px;
    font-size: 13px;
  }
}
