/* =============================================
   NOURISHA BOTANICALS — Design System
   Brand Colors (from Logo SVG):
   - Forest Green:  #2b432d
   - Warm Cream:    #f9f2e9
   - Accent Green:  #4a6b4d (lighter shade for highlights)
   - Deep Ink:      #1a2b1c
   ============================================= */

:root {
  /* — Brand Palette — */
  --forest-green:     #2b432d;
  --forest-green-dk:  #1a2b1c;
  --forest-green-lt:  #4a6b4d;
  --forest-green-xl:  #6a9b6e;
  --warm-cream:       #f9f2e9;
  --warm-cream-dk:    #f0e4cc;
  --warm-cream-lt:    #fdfaf5;
  --warm-cream-xlt:   #fffdf9;

  /* — Typography — */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Outfit', system-ui, sans-serif;

  /* — Spacing — */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    7rem;

  /* — Shape — */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   28px;
  --radius-full: 9999px;

  /* — Shadows — */
  --shadow-sm:  0 4px 16px rgba(42, 67, 45, 0.06);
  --shadow-md:  0 12px 40px rgba(42, 67, 45, 0.1);
  --shadow-lg:  0 24px 60px rgba(42, 67, 45, 0.12);

  /* — Transition — */
  --ease:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--warm-cream-xlt);
  color: var(--forest-green-dk);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--forest-green); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--forest-green-dk); }
ul { list-style: none; }
em { font-style: italic; }

/* ── Accessibility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
:focus-visible {
  outline: 2px solid var(--forest-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── Brand Accent Bar ── */
.top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green), var(--forest-green-lt), var(--forest-green));
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  padding: 0;
  background-color: var(--warm-cream);
  border-bottom: 1px solid rgba(42, 67, 45, 0.15);
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: center;
}

.brand-link { display: inline-flex; }

/* Logo SVG is portrait with cream (#f9f2e9) background — display large so it fills header naturally */
.brand-logo {
  height: 120px;
  width: auto;
  transition: opacity 0.2s ease;
}
.brand-logo:hover { opacity: 0.8; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--forest-green);
  color: var(--warm-cream-xlt);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--forest-green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 67, 45, 0.2);
  color: var(--warm-cream-xlt);
}
.btn-primary:active { transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: var(--space-xl) 0;
  text-align: center;
  overflow: hidden;
  /* Same beige as header so there's no seam */
  background-color: var(--warm-cream);
}

.hero-bg-motif {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(40vw, 500px);
  opacity: 0.7;
  pointer-events: none;
}

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

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Eyebrow badge */
.eyebrow-badge {
  display: inline-block;
  background-color: rgba(42, 67, 45, 0.08);
  color: var(--forest-green);
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(42, 67, 45, 0.12);
  cursor: default;
}

@keyframes comingSoonPulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 67, 45, 0.25); }
  70% { box-shadow: 0 0 0 12px rgba(42, 67, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 67, 45, 0); }
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.pulse-effect {
  animation: comingSoonPulse 2.5s infinite;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse-effect:hover {
  transform: translateY(-4px);
}

.pulse-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 4s infinite linear;
}


.hero-logo-img {
  display: block;
  max-width: 420px;
  width: 90%;
  margin: -1.75rem auto -1rem;
  filter: drop-shadow(0 4px 6px rgba(43, 67, 45, 0.05));
  transform: scale(1.15); /* Slightly increased from base size, but not too big */
}

/* Screen-reader utility for visually hidden text */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Brand Name */
.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  margin-bottom: 1.5rem;
}

.brand-name-display {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--forest-green);
  letter-spacing: -0.01em;
}
.brand-name-second {
  font-style: italic;
  font-weight: 400;
  color: var(--forest-green-dk);
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--forest-green-lt);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Description */
.hero-description {
  font-size: 1.05rem;
  color: #4a5e3e;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── Email Form ── */
.form-wrapper {
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest-green);
  margin-bottom: 0.6rem;
  text-align: left;
  letter-spacing: 0.03em;
}

.input-row {
  display: flex;
  gap: 0.5rem;
  background: var(--warm-cream-xlt);
  border: 1.5px solid rgba(42, 67, 45, 0.18);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.375rem 0.375rem 0.375rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.input-row:focus-within {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(42, 67, 45, 0.1), var(--shadow-sm);
}

.input-row input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--forest-green-dk);
  min-width: 0; /* flex fix */
}
.input-row input[type="email"]:focus { outline: none; }
.input-row input[type="email"]::placeholder { color: #97b09a; }

/* Smaller btn inside row */
.input-row .btn { padding: 0.65rem 1.4rem; font-size: 0.9rem; }

.trust-note {
  font-size: 0.8rem;
  color: var(--forest-green-lt);
  margin-top: 0.8rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-icon { font-size: 0.6rem; color: var(--forest-green-xl); }

.form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.5em;
  text-align: left;
  font-weight: 500;
}
.form-message.success { color: var(--forest-green); }
.form-message.error   { color: #a33; }

/* Secondary link */
.hero-secondary-action { margin-top: 2rem; }
.link-soft {
  font-size: 0.9rem;
  color: var(--forest-green-lt);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.link-soft:hover {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}

/* ── Decorative Divider ── */
.section-divider {
  width: 100%;
  height: 40px;
  overflow: hidden;
  margin: -1px 0;
}
.section-divider svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════
   SHARED SECTION ELEMENTS
══════════════════════════════════════════ */
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-green-lt);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--forest-green);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6a7e5e;
  max-width: 480px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   OUR STORY SECTION
══════════════════════════════════════════ */
.story-section {
  padding: var(--space-xl) 0;
  background-color: var(--warm-cream-xlt);
}

/* Story Grid: visual | text */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
  }
}

.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark-large {
  width: min(260px, 80vw);
  height: auto;
  background: var(--warm-cream);
  border-radius: 200px 200px 100px 100px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.logo-mark-img {
  width: 100%;
  height: auto;
}

.visual-ring {
  position: absolute;
  inset: -20px;
  border-radius: 220px 220px 120px 120px;
  border: 1px solid rgba(42, 67, 45, 0.12);
  z-index: 1;
}

/* Story text */
.story-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--forest-green);
  margin-bottom: 1.2rem;
}

.story-body {
  font-size: 1.05rem;
  color: #4a5e3e;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.story-quote {
  border-left: 3px solid var(--forest-green);
  padding: 1rem 1.5rem;
  margin: 2rem 0 0;
  background: rgba(42, 67, 45, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest-green);
  line-height: 1.6;
}

/* ── Dual Nourishment Cards ── */
.nourishment-section {
  text-align: center;
  margin-bottom: 5rem;
}

.nourishment-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--forest-green-dk);
  margin-bottom: 0.75rem;
}

.nourishment-subtitle {
  font-size: 1rem;
  color: #6a7e5e;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.nourishment-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .nourishment-cards { grid-template-columns: 1fr 1fr; }
}

.nourishment-card {
  background: var(--warm-cream);
  border: 1px solid rgba(42,67,45,0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: var(--ease);
}
.nourishment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  color: var(--forest-green);
  margin-bottom: 1.2rem;
}

.nourishment-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest-green-dk);
  margin-bottom: 0.8rem;
}

.nourishment-card p {
  font-size: 0.97rem;
  color: #536b47;
  line-height: 1.75;
}

.teaser-video {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: opacity 0.5s ease-in-out;
}

.teaser-video.fade-out {
  opacity: 0;
}

/* ── Values Pillars ── */
.values-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 860px) {
  .values-pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 2px solid rgba(42,67,45,0.15);
}

.pillar-mark {
  display: flex;
  justify-content: center;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-green-dk);
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.9rem;
  color: #6a7e5e;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   LAUNCH / SUBSCRIBE SECTION
══════════════════════════════════════════ */
.launch-section {
  padding: var(--space-xl) 0;
  background: var(--warm-cream);
}

.launch-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--warm-cream-xlt);
  border: 1px solid rgba(42, 67, 45, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.launch-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--forest-green);
  font-size: 0.65rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.launch-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.launch-subtitle {
  font-size: 1.05rem;
  color: #6a7e5e;
  margin-bottom: 2.5rem;
}

.benefits-list {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-check {
  color: var(--forest-green);
  font-size: 0.75rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
  letter-spacing: 0;
}

.benefits-list strong {
  color: var(--forest-green-dk);
  font-weight: 600;
}

.benefits-list span {
  color: #6a7e5e;
  font-size: 0.93rem;
}

.launch-cta { font-size: 1rem; padding: 1rem 2.5rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background-color: var(--forest-green-dk);
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Footer logo — same portrait capsule as the Our Story emblem panel */
.footer-logo-wrap {
  background-color: var(--warm-cream);
  border-radius: 160px 160px 80px 80px;
  padding: 2rem 1.6rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--warm-cream);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(249, 242, 233, 0.6);
  letter-spacing: 0.03em;
  font-style: italic;
  font-family: var(--font-serif);
}

.footer-line {
  width: 60px;
  height: 1px;
  background: rgba(249, 242, 233, 0.15);
  margin: 0.75rem auto;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(249, 242, 233, 0.4);
}

/* ══════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .input-row {
    flex-direction: column;
    border-radius: var(--radius-md);
    gap: 0.5rem;
    padding: 0.75rem;
  }
  .input-row input[type="email"] {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(42, 67, 45, 0.12);
  }
  .input-row .btn { width: 100%; justify-content: center; }
  .trust-note { justify-content: center; }

  .hero-bg-motif { right: -20%; opacity: 0.4; }

  .values-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .values-pillars { grid-template-columns: 1fr; }
}
