:root{
  --bg:#FAFAF8;
  --ink:#10100F;
  --muted:#74716A;
  --line:#DEDBD3;
  --milk:#F7F4EE;
  --strawberry:#EEC7C8;
  --matcha:#CBD5BE;
  --blueberry:#C9C8DD;
  --shadow: 0 24px 70px rgba(16,16,15,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing:-.02em;
}
a{color:inherit;text-decoration:none}
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;
  padding:28px clamp(22px,4vw,56px);
  mix-blend-mode:difference;color:white;
}
.brand-mark{font-weight:700;letter-spacing:.16em;font-size:15px}
nav{display:flex;gap:26px;font-size:13px;text-transform:uppercase;letter-spacing:.08em}
.section{min-height:100vh;padding:120px clamp(22px,6vw,90px);display:flex;flex-direction:column;justify-content:center}
.hero{text-align:center;position:relative}
.hero h1{
  font-size:clamp(72px,17vw,250px);
  line-height:.78;margin:26px 0 30px;
  letter-spacing:.11em;font-weight:600;
}
.eyebrow{
  margin:0 0 20px;
  font-size:12px;text-transform:uppercase;letter-spacing:.18em;color:var(--muted);
}
.tagline{font-size:clamp(30px,5vw,72px);line-height:1;margin:0 0 26px;font-weight:500}
.intro{font-size:clamp(18px,2vw,25px);color:var(--muted);margin:0 0 36px}
.button,button{
  border:1px solid var(--ink);background:var(--ink);color:var(--bg);
  padding:15px 24px;border-radius:999px;font-weight:600;font-size:14px;cursor:pointer;
}
.scroll-note{position:absolute;bottom:34px;left:0;right:0;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--muted)}
.narrow{max-width:900px}
.statement h2,.manifesto h2,.waitlist h2,.lifestyle h2,.products h2{
  font-size:clamp(42px,7vw,104px);line-height:.95;margin:0 0 28px;font-weight:500;
}
.statement p,.manifesto p{font-size:clamp(20px,2.3vw,31px);line-height:1.3;color:var(--muted);max-width:760px}
.ingredients{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:80px}
.ingredients div{
  border-top:1px solid var(--line);padding:24px 0;
}
.ingredients span{display:block;color:var(--muted);font-size:12px;letter-spacing:.16em;margin-bottom:36px}
.ingredients strong{font-size:28px}
.ingredients p{font-size:16px;color:var(--muted);margin:10px 0 0}
.lifestyle{min-height:86vh}
.lifestyle-card{
  min-height:62vh;border-radius:36px;padding:clamp(28px,5vw,70px);
  display:flex;flex-direction:column;justify-content:flex-end;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.9), transparent 30%),
    linear-gradient(135deg, #e8dfd2, #c9d0c7 45%, #f5eee4);
  box-shadow:var(--shadow);
}
.lifestyle-card h2{max-width:980px}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:54px}
.section-head h2{max-width:800px;margin:0}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:end}
.bottle{
  height:520px;border-radius:46px 46px 34px 34px;background:var(--milk);
  border:1px solid rgba(16,16,15,.08);box-shadow:var(--shadow);
  position:relative;display:flex;flex-direction:column;align-items:center;justify-content:space-between;
  padding:42px 22px 38px;text-align:center;overflow:hidden;
}
.bottle:before{content:"";position:absolute;top:0;left:0;right:0;height:42%;background:rgba(255,255,255,.5)}
.bottle .cap{width:68px;height:28px;background:var(--ink);border-radius:14px;margin-top:-22px;z-index:1}
.bottle .label{z-index:1;margin-top:110px}
.bottle h3{font-size:38px;letter-spacing:.14em;margin:0 0 16px;font-weight:600}
.bottle p{text-transform:uppercase;letter-spacing:.16em;font-size:12px;margin:0;color:var(--muted)}
.bottle small{z-index:1;text-transform:uppercase;letter-spacing:.13em;font-size:10px;color:var(--muted)}
.strawberry{background:linear-gradient(var(--milk) 0 58%, var(--strawberry) 58%)}
.matcha{background:linear-gradient(var(--milk) 0 58%, var(--matcha) 58%)}
.blueberry{background:linear-gradient(var(--milk) 0 58%, var(--blueberry) 58%)}
.manifesto{background:#F3F0EA}
.waitlist{text-align:center;min-height:80vh}
.waitlist-box{max-width:760px;margin:auto}
.signup-form{margin:34px auto 0;max-width:560px;text-align:left}
.signup-form label{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.16em;color:var(--muted);margin-bottom:12px}
.form-row{display:flex;gap:10px}
input{
  flex:1;border:1px solid var(--line);background:white;border-radius:999px;padding:16px 20px;font-size:16px;outline:none;
}
.form-note{text-align:center;color:var(--muted);font-size:14px;margin-top:16px}
.site-footer{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:38px clamp(22px,4vw,56px);border-top:1px solid var(--line);font-size:14px;color:var(--muted)
}
.site-footer strong{color:var(--ink);letter-spacing:.16em}
.site-footer div{display:flex;gap:22px}
@media(max-width:850px){
  nav{display:none}
  .ingredients,.product-grid{grid-template-columns:1fr}
  .product-grid{gap:16px}
  .bottle{height:430px}
  .section-head{display:block}
  .form-row{flex-direction:column}
  .site-footer{flex-direction:column;align-items:flex-start}
  .hero h1{letter-spacing:.06em}
}
