/* ============================
   Now What? — Landing Page Styles
   Clean, calm, print-friendly aesthetic
   ============================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --warm-white: #FAF7F2;
  --cream: #F0EBE1;
  --warm-gray: #8C8279;
  --charcoal: #2D2926;
  --deep-brown: #4A3F35;
  --sage: #7A9E7E;
  --sage-light: #E8F0E7;
  --sand: #D4C4A8;
  --sand-light: #F5EFE4;
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-head: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 17px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--deep-brown);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1rem; }

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--deep-brown); }

/* ── Layout ── */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-brown);
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--sage);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-family: var(--font-head);
  display: none;
}
@media (min-width: 600px) { .nav-tagline { display: block; } }

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--sage);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-head);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--deep-brown);
  color: var(--warm-white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.hero-cta:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

/* ── SECTION SPACING ── */
section { padding: 4.5rem 0; }
section:nth-child(even) { background: var(--warm-white); }
section:nth-child(odd) { background: var(--cream); }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--warm-gray);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ── ORIGIN STORY ── */
.origin-body {
  max-width: 640px;
  margin: 0 auto;
}
.origin-body p {
  font-size: 1.05rem;
  color: var(--deep-brown);
}
.steady-note {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  border-radius: 0 4px 4px 0;
}
.steady-note p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  font-style: italic;
  margin: 0;
}
.steady-note strong {
  color: var(--deep-brown);
  font-style: normal;
}

/* ── PRODUCT CARD ── */
.product-section { padding: 5rem 0; }
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.product-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.product-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 1.25rem;
}
.product-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
}
.product-desc {
  font-size: 1rem;
  color: var(--warm-gray);
  margin-bottom: 1.75rem;
}
.product-highlights {
  list-style: none;
  margin-bottom: 1.75rem;
}
.product-highlights li {
  font-family: var(--font-head);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}
.product-highlights li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}
.buy-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
  text-decoration: none;
}
.buy-button:hover {
  background: #5c7d60;
  color: white;
}

/* ── STEADY NOTE CALLOUT ── */
.steady-callout {
  background: var(--sand-light);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 1.5rem;
  margin-top: 1.75rem;
}
.steady-callout-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}
.steady-callout p {
  font-size: 0.95rem;
  color: var(--deep-brown);
  margin: 0;
}

/* ── CORE CARD ── */
.core-card {
  margin-top: 2.5rem;
  border-color: var(--sage);
  background: #f9fbf8;
}
.core-card .product-badge {
  background: var(--cream);
  color: var(--deep-brown);
}

/* ── NOTIFY FORM ── */
.notify-form {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream);
}
.notify-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
}
.notify-form-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.notify-input {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  background: var(--warm-white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.notify-input:focus {
  border-color: var(--sage);
}
.notify-button {
  background: var(--deep-brown);
  color: var(--warm-white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.notify-button:hover {
  background: var(--charcoal);
}
.notify-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.coming-soon-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 580px) {
  .coming-soon-grid { grid-template-columns: 1fr 1fr; }
}
.coming-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 1.75rem;
}
.coming-card .soon-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--warm-gray);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.coming-card h3 { margin-bottom: 0.5rem; }
.coming-card p { font-size: 0.9rem; color: var(--warm-gray); margin: 0; }
.coming-card .price-tag {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 600;
  margin-top: 0.75rem;
}

/* ── STATES TEASER ── */
.states-teaser {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-align: center;
  margin: 1.5rem 0 0;
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: var(--deep-brown);
  color: var(--sand);
  padding: 2.5rem 0;
  text-align: center;
}
footer p {
  font-family: var(--font-head);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.7;
}
footer strong {
  color: var(--sand);
  opacity: 1;
}