/* No. 2 — Water, Grown by the Farmers Who Own It
   Palette: field green #1E4D2B · corn gold #E8A820 · water blue #2E86AB · cream #FAF6EC */

:root {
  --green: #1E4D2B;
  --green-dark: #163B21;
  --gold: #E8A820;
  --gold-bright: #F4C531;
  --blue: #2E86AB;
  --cream: #FAF6EC;
  --ink: #1C241D;
  --muted: #5C665E;
  --line: #E4DCC8;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.1; font-weight: 700; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { height: 42px; width: auto; }
.brand-word { font-family: var(--serif); font-weight: 900; font-size: 1.35rem; letter-spacing: -0.02em; }
.links { display: flex; align-items: center; gap: 26px; }
.links a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.links a:hover { color: var(--green); }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 12px 22px; border-radius: 999px; font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 6px 18px rgba(30,77,43,0.25); }
.btn-ghost { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-nav { background: var(--green); color: #fff; padding: 9px 18px; font-size: 0.88rem; }

.menu-btn { display: none; background: none; border: none; cursor: pointer; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.25s ease; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232,168,32,0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(46,134,171,0.10), transparent 55%),
    var(--cream);
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; padding: 72px 24px 64px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
}
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--green-dark); }
.lede { font-size: 1.12rem; color: var(--muted); margin: 20px 0 30px; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; align-items: flex-end; }
.hero-bottle { width: min(300px, 70%); filter: drop-shadow(0 24px 48px rgba(30,77,43,0.25)); }

/* ---------- Story strip ---------- */
.strip {
  background:
    repeating-linear-gradient(105deg, rgba(232,168,32,0.14) 0 6px, transparent 6px 14px),
    var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.strip-inner { max-width: 900px; margin: 0 auto; padding: 110px 24px; text-align: center; }
.strip h2 { font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 24px; }
.strip h2 span { color: var(--gold-bright); }
.strip p { color: rgba(255,255,255,0.85); font-size: 1.12rem; max-width: 56ch; margin: 0 auto; }

/* ---------- Pillars ---------- */
.pillars {
  max-width: 1120px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.pillar { border-top: 3px solid var(--gold); padding-top: 22px; }
.pillar h3 { color: var(--green-dark); }
.pillar-num { font-family: var(--serif); font-weight: 900; font-size: 1.5rem; color: var(--gold); }
.pillar h3 { font-size: 1.4rem; margin: 12px 0 10px; }
.pillar p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Product ---------- */
.product { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-inner {
  max-width: 1120px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
}
.product-visual { display: flex; justify-content: center; align-items: flex-end; }
.product-bottle { width: min(280px, 80%); filter: drop-shadow(0 18px 36px rgba(30,77,43,0.18)); }
.quote { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--green); border-left: 3px solid var(--gold); padding-left: 18px; margin: 22px 0 8px; }
.quote-attrib { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.product-copy h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 18px; }
.product-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.facts { list-style: none; }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.facts span { display: inline-block; width: 110px; font-weight: 700; color: var(--green); }

/* ---------- Ownership ---------- */
.ownership { background: #fff; border-top: 1px solid var(--line); }
.ownership-inner {
  max-width: 1120px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start;
}
.ownership h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.own-steps { display: grid; gap: 28px; }
.own-step { display: grid; grid-template-columns: 60px 1fr; gap: 16px; align-items: start; border-top: 1px solid var(--line); padding-top: 20px; }
.own-num {
  font-family: var(--serif); font-weight: 900; font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.own-step h3 { font-size: 1.2rem; margin: 0 0 6px; color: var(--green-dark); }
.own-step p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.own-note { grid-column: 1 / -1; font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-inner { max-width: 760px; margin: 0 auto; padding: 80px 24px; }
.faq h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 30px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--ink);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.6rem; color: var(--gold); transition: transform 0.2s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p { overflow: hidden; color: var(--muted); padding: 0 0 20px; font-size: 0.98rem; }

/* ---------- Waitlist ---------- */
.waitlist { background: var(--cream); }
.waitlist-inner { max-width: 640px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.waitlist h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.waitlist p { color: var(--muted); margin-bottom: 28px; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.waitlist-form input[type=email] {
  flex: 1; min-width: 240px; padding: 13px 18px; font-size: 1rem;
  border: 2px solid var(--line); border-radius: 999px; background: #fff; font-family: var(--sans);
}
.waitlist-form input[type=email]:focus { outline: none; border-color: var(--green); }
.form-note { margin-top: 16px; font-weight: 600; color: var(--green); min-height: 1.4em; }
.hidden { display: none; }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.8); }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 40px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 900; font-size: 1.3rem; color: #fff; }
.footer-brand .brand-mark { height: 38px; width: auto; }
.footer-note { font-size: 0.9rem; }
.prelaunch-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-style: italic; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner, .product-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-bottle { width: 200px; }
  .own-steps { grid-template-columns: 1fr; }
  .ownership-inner { grid-template-columns: 1fr; }
  .menu-btn { display: block; }
  .links {
    position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 20px 24px; gap: 16px;
    display: none;
  }
  .links.open { display: flex; }
}
