/* ---------- Tokens ---------- */
:root {
  --ivory: #FAF6EF;
  --ivory-deep: #F1EADC;
  --ink: #2A231C;
  --ink-soft: #5C5245;
  --amber: #C17A2E;
  --amber-deep: #9C5F1F;
  --olive: #4B5A3A;
  --line: #DCD2C0;
  --white: #FFFFFF;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1100px;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; max-width: 62ch; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--amber-deep);
  color: var(--white);
  border: none;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { background: #7C4B18; }
.btn:disabled { opacity: 0.7; cursor: default; }
.btn-small { padding: 9px 18px; font-size: 14px; }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: #1a1510; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.site-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media { order: -1; max-width: 280px; margin: 0 auto; }
}

.kicker {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  position: relative;
  z-index: 1;
}

.ink-amber {
  color: var(--amber-deep);
  position: relative;
  display: inline-block;
}

.ink-amber::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 6px;
  height: 0.42em;
  background: var(--amber);
  opacity: 0.22;
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: fill-line 1.1s 0.35s cubic-bezier(.4,0,.2,1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .ink-amber::after { animation: none; transform: scaleX(1); }
}

@keyframes fill-line {
  to { transform: scaleX(1); }
}

.lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 46ch;
}

.hero-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 440px;
}
.hero-form input,
.waitlist-form-full input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}
.hero-form input:focus,
.waitlist-form-full input:focus {
  border-color: var(--amber-deep);
}
.hero-form input::placeholder,
.waitlist-form-full input::placeholder {
  color: var(--ink-soft);
  opacity: 1;
}
.form-status {
  font-size: 14px;
  color: var(--olive);
  font-weight: 600;
  margin-top: 12px;
  min-height: 1.2em;
}
.waitlist .form-status { color: var(--ink); }

@media (max-width: 480px) {
  .hero-form { flex-direction: column; }
}

.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
  margin-bottom: 0;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.bottle-frame {
  position: relative;
  max-width: 340px;
}
.bottle-frame::before {
  content: "";
  position: absolute;
  inset: 8% 18%;
  background: radial-gradient(closest-side, rgba(193,122,46,0.25), transparent 72%);
  filter: blur(24px);
  z-index: 0;
}
.bottle-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Sections ---------- */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--ivory-deep);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
@media (max-width: 780px) {
  .section-grid { grid-template-columns: 1fr; gap: 20px; }
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.section-head p {
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
}
.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.fact-table th, .fact-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.fact-table thead th {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.fact-table tbody tr:hover {
  background: rgba(193,122,46,0.06);
}
.compare-table th[scope="row"] {
  font-weight: 600;
  color: var(--ink-soft);
}
.compare-table td, .compare-table th {
  font-size: 14px;
}

/* ---------- Story ---------- */
.story {
  background: var(--ink);
  color: var(--ivory);
}
.story h2 { color: var(--ivory); }
.story p { color: #DCD3C4; max-width: 68ch; }
.story-grid { grid-template-columns: 1fr; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  font-family: var(--serif);
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  color: var(--amber-deep);
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  color: var(--ink-soft);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ---------- Waitlist ---------- */
.waitlist {
  background: var(--amber-deep);
  color: var(--white);
  text-align: center;
}
.waitlist h2 { color: var(--white); }
.waitlist p { color: rgba(255,255,255,0.95); margin: 8px auto 24px; }
.waitlist-inner { max-width: 560px; }
.waitlist-form-full {
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .waitlist-form-full { flex-direction: column; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 28px 0 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 8px;
}
