/* ============================================
   TAPPED IN VITALITY — Botanical Luxury
   ============================================ */

:root {
  --forest: #1f3a2e;
  --forest-deep: #142318;
  --moss: #5a7a5e;
  --sage: #a8b8a0;
  --cream: #f5efe1;
  --cream-warm: #ebe2cd;
  --bone: #faf6ec;
  --gold: #b08d4f;
  --gold-warm: #c9a667;
  --ink: #1a1814;
  --whisper: #6b6555;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1200px;
  --gutter: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 58, 46, 0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
}
.logo-mark {
  font-size: 22px;
  color: var(--gold);
  transform: translateY(-1px);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--forest);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--forest);
  border-radius: 100px;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em !important;
}
.nav-cta:hover {
  background: var(--forest);
  color: var(--cream) !important;
}

@media (max-width: 680px) {
  .nav-links { gap: 18px; }
  .nav-links li:not(:last-child) { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--gutter) 80px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(176, 141, 79, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(90, 122, 94, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-bg-leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
  opacity: 0.06;
  pointer-events: none;
}
.hero-bg-leaf-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  transform: rotate(35deg);
}
.hero-bg-leaf-2 {
  width: 400px; height: 400px;
  bottom: -150px; left: -100px;
  transform: rotate(-15deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.02;
  color: var(--forest-deep);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-title-line { display: block; }
.hero-title-emphasis {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--whisper);
  font-weight: 300;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-microcopy {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 400;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: rgba(31, 58, 46, 0.15);
  overflow: hidden;
}
.scroll-indicator span {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--forest);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 58, 46, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ============================================
   STRIP
   ============================================ */
.strip {
  background: var(--forest);
  color: var(--sage);
  padding: 22px var(--gutter);
  text-align: center;
}
.strip p {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================
   SECTIONS - SHARED
   ============================================ */
section { padding: clamp(80px, 12vh, 140px) var(--gutter); }
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest-deep);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
}
.divider-left { margin: 0 0 36px 0; }

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy { text-align: center; background: var(--bone); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  margin-top: 40px;
  text-align: left;
}
.phil-card {
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid rgba(176, 141, 79, 0.18);
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.phil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 58, 46, 0.08);
}
.phil-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.phil-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 14px;
}
.phil-card p {
  color: var(--whisper);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ============================================
   STORY
   ============================================ */
.story {
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
}
.story-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
}
.story-lead {
  font-size: 1.15rem;
  color: var(--forest-deep);
  margin-bottom: 20px;
  line-height: 1.65;
  font-weight: 400;
}
.story-text p {
  color: var(--whisper);
  margin-bottom: 18px;
  line-height: 1.75;
}
.story-card {
  background: var(--forest);
  color: var(--cream);
  padding: 48px 40px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 24px 50px rgba(31, 58, 46, 0.18);
}
.story-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(176, 141, 79, 0.4);
  border-radius: 2px;
  pointer-events: none;
}
.story-card-inner { position: relative; }
.story-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 24px;
}
.story-card-list {
  list-style: none;
}
.story-card-list li {
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(176, 141, 79, 0.18);
  font-weight: 400;
}
.story-card-list li:last-child { border-bottom: none; }

/* ============================================
   STORE TEASE
   ============================================ */
.store-tease {
  text-align: center;
  background: var(--cream);
  position: relative;
}
.store-lead {
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--whisper);
  font-size: 1.08rem;
  line-height: 1.7;
}
.store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: left;
}
.store-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(176, 141, 79, 0.25);
}
.feat-icon {
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
}
.store-feature p {
  font-size: 0.95rem;
  color: var(--forest-deep);
  line-height: 1.55;
}

/* ============================================
   NOTIFY FORM
   ============================================ */
.notify-form {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.notify-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--forest-deep);
  margin-bottom: 22px;
  font-weight: 400;
}
.notify-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 540px) {
  .notify-row { flex-direction: column; }
}
.notify-row input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(31, 58, 46, 0.2);
  background: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--forest-deep);
  border-radius: 100px;
  outline: none;
  transition: border-color 0.3s;
}
.notify-row input:focus { border-color: var(--gold); }
.notify-row .btn { white-space: nowrap; }
.notify-fineprint {
  font-size: 12px;
  color: var(--moss);
  letter-spacing: 0.04em;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer-section {
  padding: 36px var(--gutter);
  background: var(--forest-deep);
}
.disclaimer {
  max-width: 880px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.7;
  color: var(--sage);
  text-align: center;
  letter-spacing: 0.02em;
}
.disclaimer strong { color: var(--gold-warm); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-deep);
  color: var(--sage);
  padding: 60px var(--gutter) 40px;
  text-align: center;
  border-top: 1px solid rgba(176, 141, 79, 0.15);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-brand .logo-mark { color: var(--gold-warm); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}
