@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --deep: #0B3D35;
  --teal: #0D6B5E;
  --teal-light: #1a8a7a;
  --seafoam: #6DB8AD;
  --salt: #F7F3EC;
  --cream: #EDE5D4;
  --sand: #D4B896;
  --gold: #C49A3C;
  --gold-light: #E2B96A;
  --bloom: #C96A45;
  --dark: #0A1F1C;
  --mid: #3A5550;
  --text: #1C3330;
  --text-light: #5A7470;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 30px rgba(11,61,53,0.12);
  --shadow-lg: 0 12px 60px rgba(11,61,53,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--salt);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

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

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.tag-teal { color: var(--teal); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #a8831f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,154,60,0.3);
}

.btn-lg { padding: 20px 56px; font-size: 13px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(247,243,236,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(11,61,53,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  /* Logo has white bg - works on scrolled nav */
}

.navbar:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
  /* Invert to white for dark hero background */
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--deep);
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

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

.nav-cta { margin-left: 20px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--salt);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.mobile-nav a {
  font-size: 28px;
  font-family: var(--font-display);
  color: var(--deep);
  letter-spacing: 0.05em;
}

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--deep);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(13,107,94,0.3) 100%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

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

.hero-text .tag { color: var(--gold-light); }

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-title em {
  font-style: italic;
  color: var(--seafoam);
}

.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--seafoam);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

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

.hero-product-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,184,173,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-product img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float-product 6s ease-in-out infinite;
}

@keyframes float-product {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--teal);
  padding: 20px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item svg { opacity: 0.8; }

/* ---- PROBLEM / SOLUTION ---- */
.problem-section {
  background: var(--salt);
}

.problem-text {
  max-width: 680px;
}

.problem-text h2 { margin-bottom: 24px; color: var(--deep); }

.problem-text p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.problem-text p strong { color: var(--text); font-weight: 500; }

.problem-visual {
  position: relative;
}

.problem-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.problem-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.problem-item-text h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}

.problem-item-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- PRODUCT FEATURE ---- */
.feature-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.feature-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,184,173,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-text .tag { color: var(--gold-light); }
.feature-text h2 { color: var(--white); margin-bottom: 24px; }

.feature-text p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 32px;
}

.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: 8px;
}

.feature-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--seafoam);
  line-height: 1;
  margin-bottom: 6px;
}

.feature-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.feature-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* ---- HOW IT WORKS PREVIEW ---- */
.how-section { background: var(--cream); }

.how-header { text-align: center; margin-bottom: 70px; }
.how-header h2 { color: var(--deep); margin-bottom: 16px; }
.how-header p { font-size: 17px; color: var(--text-light); max-width: 540px; margin: 0 auto; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.timeline-day {
  min-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.timeline-day-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.timeline-day-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.timeline-content {
  padding: 8px 0;
  flex: 1;
}

.timeline-content h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- INGREDIENTS ---- */
.ingredients-section { background: var(--salt); }

.ingredients-header { margin-bottom: 60px; }
.ingredients-header h2 { color: var(--deep); margin-bottom: 16px; }
.ingredients-header p { font-size: 17px; color: var(--text-light); max-width: 560px; }

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

.ingredient-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid rgba(11,61,53,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--seafoam);
}

.ingredient-expand {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,61,53,0.08);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  animation: fadeSlideIn 0.3s ease;
}

.ingredient-card.featured .ingredient-expand {
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
}

.ingredient-expand.open { display: block; }

.ingredient-expand ul {
  margin: 10px 0 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ingredient-expand ul li { font-size: 13px; }

.ingredient-expand .science-note {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(11,61,53,0.04);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

.ingredient-card.featured .ingredient-expand .science-note {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--seafoam);
  color: rgba(255,255,255,0.5);
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s;
}

.learn-more-btn:hover { gap: 10px; }

.ingredient-card.featured .learn-more-btn { color: var(--seafoam); }

.learn-more-btn .btn-arrow { font-size: 14px; transition: transform 0.2s; }
.learn-more-btn.open .btn-arrow { transform: rotate(90deg); }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ingredient-card.featured {
  background: var(--deep);
  border-color: var(--teal);
}

.ingredient-card.featured .ingredient-name { color: var(--white); }
.ingredient-card.featured .ingredient-desc { color: rgba(255,255,255,0.65); }
.ingredient-card.featured .ingredient-tag { background: rgba(255,255,255,0.1); color: var(--seafoam); }

.ingredient-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.ingredient-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--deep);
  margin-bottom: 8px;
}

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

.ingredient-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---- DIFFERENCE SECTION ---- */
.diff-section { background: var(--teal); }

.diff-header { text-align: center; margin-bottom: 60px; }
.diff-header h2 { color: var(--white); margin-bottom: 16px; }
.diff-header p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 520px; margin: 0 auto; }

.diff-table {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.diff-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--deep);
  padding: 20px 32px;
}

.diff-table-header span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.diff-table-header .saltbloom-col { color: var(--seafoam); }

.diff-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(11,61,53,0.06);
  align-items: center;
}

.diff-row:last-child { border-bottom: none; }
.diff-row:nth-child(even) { background: rgba(11,61,53,0.02); }

.diff-feature { font-size: 14px; color: var(--text); font-weight: 500; }

.diff-val {
  font-size: 20px;
  text-align: center;
}

/* ---- REVIEWS ---- */
.reviews-section { background: var(--cream); }

.reviews-header { text-align: center; margin-bottom: 60px; }
.reviews-header h2 { color: var(--deep); margin-bottom: 16px; }

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

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.review-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.review-verified {
  font-size: 10px;
  color: var(--teal);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(109,184,173,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-content .tag { color: var(--gold-light); }
.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.68); font-size: 17px; max-width: 520px; margin: 0 auto 40px; }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(11,61,53,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 20px;
}

.faq-icon {
  min-width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--teal);
  transition: all 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: white; }

.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 680px;
}

.faq-item.open .faq-answer { display: block; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {}

.footer-logo-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.2s;
}

.footer-social:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--seafoam); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 500px;
  line-height: 1.6;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,53,0.88) 0%, rgba(11,61,53,0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

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

.page-hero .tag { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ---- PRODUCT PAGE ---- */
.product-section { background: var(--salt); padding: 80px 0; }

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

.product-gallery {}

.product-main-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream);
}

.product-main-img img { width: 100%; }

.product-thumbs {
  display: flex;
  gap: 12px;
}

.product-thumb {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: var(--cream);
}

.product-thumb.active { border-color: var(--teal); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.product-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.product-review-count { font-size: 13px; color: var(--text-light); }

.product-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.1;
}

.product-subtitle {
  font-size: 16px;
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.product-price-main {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--deep);
}

.product-price-per {
  font-size: 13px;
  color: var(--text-light);
}

.product-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(11,61,53,0.08);
}

.product-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.product-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(11,61,53,0.12);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.product-badge svg { color: var(--teal); }

.product-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid rgba(11,61,53,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.product-qty-btn {
  width: 44px; height: 44px;
  background: var(--cream);
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-qty-btn:hover { background: var(--sand); }
.product-qty-num {
  width: 56px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border: none;
  background: white;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopify-btn-wrapper {
  margin-bottom: 16px;
}

.shopify-btn-wrapper .btn {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 18px;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  padding: 16px;
  background: var(--cream);
  border-radius: 6px;
  margin-bottom: 28px;
}

.product-accordion {}

.product-accordion-item {
  border-bottom: 1px solid rgba(11,61,53,0.08);
}

/* ---- ABOUT PAGE ---- */
.about-story { background: var(--salt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { color: var(--deep); margin-bottom: 24px; }
.about-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  background: var(--deep);
}

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

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

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.value-item h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ---- AMBASSADOR ---- */
.ambassador-section { background: var(--salt); }

.ambassador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ambassador-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.ambassador-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.perk-text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}

.perk-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.ambassador-form {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.ambassador-form h3 {
  color: var(--deep);
  margin-bottom: 8px;
}

.ambassador-form p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

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

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(11,61,53,0.15);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--salt);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus { border-color: var(--teal); }
.form-input::placeholder { color: rgba(90,116,112,0.5); }

textarea.form-input { min-height: 100px; resize: vertical; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .product-grid,
  .about-grid,
  .ambassador-grid { grid-template-columns: 1fr; gap: 48px; }

  .hero-product { order: 1; }
  .feature-image { order: -1; }

  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .section { padding: 70px 0; }
  .section-sm { padding: 40px 0; }

  .hero-content { padding: 100px 0 60px; }

  .nav-logo img { height: 42px; }

  .navbar:not(.scrolled) .nav-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-product { margin-top: 0; }
  .hero-product img { max-width: 280px; margin: 0 auto; }
  .hero-badges { gap: 10px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }

  .trust-bar-inner { gap: 24px; }

  .ingredients-grid { grid-template-columns: 1fr; }
  .feature-stats { grid-template-columns: 1fr 1fr; }

  .diff-table-header,
  .diff-row { grid-template-columns: 2fr 1fr 1fr; padding: 16px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }

  .ambassador-form { padding: 32px 24px; }
  .timeline::before { left: 24px; }
  .timeline-day { min-width: 48px; }
  .timeline-day-circle { width: 48px; height: 48px; }
}
