/* ============================
   DESIGN TOKENS & RESET
   ============================ */
:root {
  --bg-dark: #0D0D0B;
  --bg-card: #161614;
  --bg-light: #1A1A17;
  --bg-accent: #111110;
  --gold: #D4A017;
  --gold-light: #E8B830;
  --gold-dim: rgba(212, 160, 23, 0.15);
  --green: #6A9E5B;
  --text-primary: #F0EDE6;
  --text-secondary: #A09B8C;
  --text-muted: #6B6560;
  --border: rgba(212, 160, 23, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px rgba(0,0,0,0.5);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   SECTION BASE
   ============================ */
.section-dark  { background: var(--bg-dark);   padding: 100px 0; }
.section-light { background: var(--bg-light);  padding: 100px 0; }
.section-accent{ background: var(--bg-accent); padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-header p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h2 em { font-style: italic; color: var(--gold); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #B88A0C);
  color: #0D0D0B;
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 160, 23, 0.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240, 237, 230, 0.25);
}
.btn-ghost:hover {
  background: rgba(240,237,230,0.06);
  border-color: rgba(240,237,230,0.45);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 13, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--gold) !important;
  color: #0D0D0B !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   HERO
   ============================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,11,0.85) 0%,
    rgba(13,13,11,0.4) 60%,
    rgba(13,13,11,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation-delay: 0.1s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation-delay: 0.2s;
}
.hero-small {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  animation-delay: 0.3s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation-delay: 0.4s;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation-delay: 0.5s;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span { font-size: 1.4rem; color: var(--gold); }
.stat p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.05em; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   STORY
   ============================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text h2 { margin-bottom: 24px; }
.story-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.story-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.badge-item span { font-size: 1rem; }
.story-visual {
  position: relative;
}
.story-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.story-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story-img-wrap:hover img { transform: scale(1.04); }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(22, 22, 20, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
}
.floating-card.card-2 { animation-delay: -2s; }
.card-1 { top: 20px; left: -30px; }
.card-2 { bottom: 30px; right: -30px; }
.fc-icon { font-size: 1.5rem; }
.floating-card strong { display: block; font-size: 0.85rem; color: var(--text-primary); }
.floating-card p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================
   NUTRIENTS
   ============================ */
.nutrients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nutrient-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.nutrient-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.n-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--clr, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr, var(--gold));
  box-shadow: 0 0 20px rgba(var(--clr), 0.15);
}
.nutrient-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.nutrient-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   INGREDIENTS
   ============================ */
.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ingredients-img {
  position: relative;
}
.ingredients-img img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.img-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  font-style: italic;
}
.ing-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.ing-item:last-child { border-bottom: none; }
.ing-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  min-width: 44px;
}
.ing-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.ing-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}
.ing-info em { color: var(--gold); font-style: italic; }
.ing-origin {
  font-size: 0.78rem;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================
   PROCESS
   ============================ */
.process-img-wrap {
  margin-bottom: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.process-img-wrap img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--gold);
  font-size: 1.2rem;
  padding-top: 20px;
  flex-shrink: 0;
}

/* ============================
   SHIPPING
   ============================ */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.ship-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.ship-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.ship-icon { font-size: 2rem; margin-bottom: 16px; }
.ship-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.ship-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.destinations { text-align: center; }
.destinations h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-weight: 400;
}
.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.dest-tags span {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}
.dest-tags span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testi-card.featured {
  border-color: var(--gold);
  position: relative;
  background: linear-gradient(135deg, rgba(212,160,23,0.07), var(--bg-card));
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card > p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================
   CTA / ORDER
   ============================ */
.section-cta {
  position: relative;
  padding: 120px 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212,160,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content > p {
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.order-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); }
#submitBtn {
  margin-top: 8px;
  font-size: 1rem;
}
#submitBtn svg { width: 18px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.success-icon { font-size: 3rem; margin-bottom: 20px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-secondary); }

/* ============================
   FOOTER
   ============================ */
#footer {
  background: #0A0A08;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 260px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li, .footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--gold); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .nutrients-grid { grid-template-columns: repeat(2, 1fr); }
  .shipping-grid  { grid-template-columns: repeat(2, 1fr); }
  .testi-grid     { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .process-steps  { flex-direction: column; }
  .step-connector { display: none; }
  .step { width: 100%; }
}
@media (max-width: 768px) {
  .section-dark, .section-light, .section-accent, .section-cta { padding: 72px 0; }
  .story-grid          { grid-template-columns: 1fr; gap: 40px; }
  .ingredients-layout  { grid-template-columns: 1fr; }
  .card-1, .card-2     { display: none; }
  .hero-stats          { flex-wrap: wrap; gap: 20px; }
  .stat-divider        { display: none; }
  .shipping-grid       { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,11,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 10; }
}
