/* ============================================================
   DROP 'N' SLOW® — Landing Page Stylesheet
   Color palette extracted from brand imagery:
   Forest Green: #2A4A2A
   Olive/Mid Green: #3D6B35
   Gold/Amber: #C8972A
   Dark Gold: #A07820
   Warm Cream: #F5EFE3
   Off-White: #FAF7F2
   Charcoal: #1C1C1A
   Dark Brown: #2E1F0E
   ============================================================ */

:root {
  --green-deep: #1E3A1E;
  --green-forest: #2A4A2A;
  --green-mid: #3D6B35;
  --green-light: #5A8C4E;
  --gold: #C8972A;
  --gold-dark: #A07820;
  --gold-light: #E0B84A;
  --cream: #F5EFE3;
  --offwhite: #FAF7F2;
  --charcoal: #1C1C1A;
  --brown-dark: #2E1F0E;
  --text-body: #3A3530;
  --text-muted: #6B6358;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
p { font-size: 16px; line-height: 1.75; color: var(--text-body); }

em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200,151,42,0.4);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.eyebrow-tag.light { color: var(--gold-light); border-color: rgba(224,184,74,0.5); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 42, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,151,42,0.2);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.logo-drop, .logo-slow { color: var(--cream); }
.logo-n { color: var(--gold); }
.logo-reg { font-size: 12px; color: var(--gold); vertical-align: super; margin-left: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(245,239,227,0.8);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--brown-dark); transform: translateY(-1px); }

.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(--cream);
  border-radius: 2px;
  transition: transform var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-deep);
  padding: 16px 32px 24px;
  gap: 16px;
  border-top: 1px solid rgba(200,151,42,0.15);
}
.mobile-menu a {
  color: rgba(245,239,227,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
}
.mobile-menu .mobile-cta {
  background: var(--gold);
  color: var(--brown-dark);
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: 8px;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(200,151,42,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,151,42,0.45); }
.btn-gold:active { transform: translateY(0); }
.btn-gold.large { font-size: 17px; padding: 18px 40px; }
.btn-gold.mt-20 { margin-top: 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid rgba(245,239,227,0.4);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(245,239,227,0.1); border-color: rgba(245,239,227,0.7); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--green-forest);
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid var(--green-forest);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.btn-outline-dark:hover { background: var(--green-forest); color: var(--cream); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55) saturate(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,20,0.85) 0%, rgba(26,42,20,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 20px;
}
.hero-desc {
  color: rgba(245,239,227,0.85);
  font-size: 18px;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-price-badge {
  display: inline-block;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(200,151,42,0.35);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  max-width: 220px;
}
.price-amazon {
  font-size: 11px;
  font-weight: 500;
  color: rgba(245,239,227,0.65);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.price-amazon strong { color: var(--gold-light); }
.price-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.price-sub {
  font-size: 11px;
  color: rgba(245,239,227,0.55);
}

.hero-product {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-deep);
  border-top: 1px solid rgba(200,151,42,0.2);
  border-bottom: 1px solid rgba(200,151,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.stat-n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,239,227,0.55);
  margin-top: 5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,151,42,0.25);
  flex-shrink: 0;
}

/* ============================================================
   LIFESTYLE SPLIT
   ============================================================ */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.lifestyle-img-col {
  position: relative;
  overflow: hidden;
}
.lifestyle-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lifestyle-img-col:hover img { transform: scale(1.03); }
.img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26,42,20,0.85);
  color: var(--gold-light);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.lifestyle-text-col {
  background: var(--cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.lifestyle-text-col h2 { color: var(--green-forest); margin-bottom: 4px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--offwhite);
  padding: 100px 32px;
}
.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { color: var(--green-forest); }

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(61,107,53,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(42,74,42,0.12); }
.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(200,151,42,0.18);
  line-height: 1;
  z-index: 1;
}
.step-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.step-img-product {
  object-fit: contain;
  background: #0a0a0a;
  padding: 20px;
}
.step-body { padding: 24px 28px 32px; }
.step-body h3 { color: var(--green-forest); margin-bottom: 10px; }
.step-body p { font-size: 15px; color: var(--text-muted); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  background: var(--green-deep);
  padding: 100px 32px;
}
.benefits-inner { max-width: 1200px; margin: 0 auto; }
.benefits-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.benefits-header h2 { color: var(--cream); margin-bottom: 14px; }
.benefits-header p { color: rgba(245,239,227,0.65); font-size: 17px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  background: rgba(200,151,42,0.06);
  border-color: rgba(200,151,42,0.35);
}
.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200,151,42,0.12);
  border: 1px solid rgba(200,151,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.benefit-card h3 { color: var(--cream); margin-bottom: 10px; font-size: 20px; }
.benefit-card p { color: rgba(245,239,227,0.6); font-size: 14px; line-height: 1.7; }

/* ============================================================
   FULL BANNER
   ============================================================ */
.full-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.full-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.8);
}
.full-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,42,20,0.9) 0%, rgba(26,42,20,0.6) 60%, rgba(26,42,20,0.3) 100%);
}
.full-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 32px;
  text-align: center;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 16px;
}
blockquote::before { content: '\201C'; }
blockquote::after { content: '\201D'; }
cite {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ============================================================
   BLOG CTA
   ============================================================ */
.blog-cta-section {
  background: var(--offwhite);
  padding: 100px 32px;
}
.blog-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.blog-cta-text h2 { color: var(--green-forest); margin-bottom: 16px; }
.blog-cta-text p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; line-height: 1.8; }
.blog-cta-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(42,74,42,0.18);
}
.blog-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-cta-img:hover img { transform: scale(1.04); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 32px;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
}
.final-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,42,20,0.75);
}
.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}
.final-cta-content h2 {
  color: var(--cream);
  margin-bottom: 16px;
}
.final-cta-content > p {
  color: rgba(245,239,227,0.7);
  font-size: 17px;
  margin-bottom: 36px;
}
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-badges span {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(245,239,227,0.6);
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(200,151,42,0.15);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-logo sup { font-size: 13px; color: var(--gold); vertical-align: super; }

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,239,227,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 12px;
  color: rgba(245,239,227,0.3);
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 60px 24px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-price-badge { margin: 0 auto; }
  .product-img { max-width: 300px; margin: 0 auto; }

  .stats-bar { gap: 8px; }
  .stat-item { padding: 0 24px; }
  .stat-divider { display: none; }

  .lifestyle-split { grid-template-columns: 1fr; }
  .lifestyle-img-col { height: 320px; }
  .lifestyle-text-col { padding: 48px 32px; }

  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .blog-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-cta-img { order: -1; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
  .trust-badges { flex-direction: column; align-items: center; }
  .lifestyle-text-col { padding: 40px 24px; }
  .step-body { padding: 20px 20px 28px; }
}
