/* TriVital landing */
:root {
  --paper: #F8F4EC;
  --ink: #1A1714;
  --muted: #4F4943;
  --line: #E4D9C8;
  --gold: #C47A2C;
  --gold-deep: #A86422;
  --white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: Manrope, system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.shell {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 4px;
}
.brand-link img {
  width: 78px;
  mix-blend-mode: multiply;
}
nav {
  display: flex;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
nav a { padding: 8px 0; }
nav a:hover, nav a.active { color: var(--ink); }

.eyebrow {
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(56px, 13vw, 108px);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 26px;
}
.lede {
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 20px 2px 6px;
  text-align: center;
}
.stage img.bottle {
  width: min(360px, 88vw);
  filter: drop-shadow(0 18px 28px rgba(60, 38, 12, 0.14));
}

.note {
  margin: 0 auto 20px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.015em;
}
.note:last-of-type { margin-bottom: 0; }

.pillars {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 48px 0 40px;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 0 0 48px;
}
.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
}
.fact b {
  display: block;
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.fact span {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  justify-content: center;
  padding: 8px 0 64px;
}
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.btn:hover { background: #000; }

footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px 12px 24px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.04em;
}
footer b { color: var(--ink); font-weight: 600; }

.contact {
  padding: 24px 2px 48px;
  text-align: center;
}
.contact h1 { margin-bottom: 12px; }
.contact .sub {
  color: var(--muted);
  font-size: 24px;
  margin-bottom: 24px;
}
.card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px 22px;
  text-align: left;
}
.card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}
.card .role {
  color: var(--gold-deep);
  font-size: 20px;
  font-weight: 650;
  margin: 10px 0 18px;
}
.row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.row label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.row a, .row span {
  font-size: 24px;
  font-weight: 550;
}
.row a:hover { color: var(--gold-deep); }

@media (min-width: 900px) {
  .shell { width: min(1360px, calc(100% - 48px)); }
  header.top {
    padding: 12px 0 4px;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .brand-link img { width: 168px; }
  nav { font-size: 17px; gap: 32px; letter-spacing: 0.16em; padding-top: 18px; }
  .stage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    column-gap: 28px;
    row-gap: 0;
    padding: 8px 0 0;
    text-align: left;
  }
  .stage .copy { text-align: left; padding-top: 8px; }
  .eyebrow { margin-bottom: 36px; }
  h1 {
    font-size: 108px;
    margin-bottom: 56px;
    letter-spacing: 0.005em;
  }
  .lede,
  .note {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    text-align: left;
  }
  .lede {
    font-size: 34px;
    margin-bottom: 56px;
    letter-spacing: 0.02em;
  }
  .note {
    font-size: 32px;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
  }
  .stage img.bottle {
    width: min(640px, 48vw);
    justify-self: end;
  }
  .pillars {
    padding: 56px 0 48px;
    font-size: 17px;
    letter-spacing: 0.28em;
    gap: 64px;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .fact { padding: 36px 26px 32px; }
  .fact b { font-size: 24px; margin-bottom: 20px; }
  .fact span { font-size: 20px; line-height: 1.55; }
  .cta-row { padding: 12px 0 72px; }
}
