*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #FBF7EE;
  color: #1B2A26;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: #16432f; }
strong { font-weight: 600; }
p { margin: 0 0 12px; }
ul, ol { padding-left: 22px; margin: 8px 0 16px; }
li { margin-bottom: 6px; }

/* ── Container ───────────────────────────────────────── */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero layout ─────────────────────────────────────── */
.wrap.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

/* ── Legal layout ────────────────────────────────────── */
.wrap.legal {
  padding-top: 48px;
  padding-bottom: 72px;
}

/* ── Back link ───────────────────────────────────────── */
.back {
  display: inline-block;
  font-size: 14px;
  color: #7a7060;
  text-decoration: none;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.back::before { content: '← '; }
.back:hover { color: #16432f; }

/* ── Logo ────────────────────────────────────────────── */
.logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

/* ── Eyebrow ─────────────────────────────────────────── */
.eyebrow {
  font-family: 'SF Mono', Menlo, ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #8F7641;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* ── Headings ────────────────────────────────────────── */
h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 68px;
  line-height: 1.0;
  margin: 0 0 16px;
  color: #16432f;
}
h1 em { font-style: italic; font-weight: 500; }

.wrap.legal h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 6px;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 23px;
  color: #16432f;
  margin: 36px 0 8px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1B2A26;
  margin: 20px 0 6px;
}
h3 em { font-style: italic; color: #16432f; font-weight: 500; }

/* ── Tagline ─────────────────────────────────────────── */
.tagline {
  font-size: 19px;
  color: #3D5048;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

/* ── Features grid ───────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin: 0 0 40px;
  text-align: left;
  width: 100%;
}

.feature {
  background: #fff;
  border: 0.5px solid #E5DBC4;
  border-radius: 12px;
  padding: 20px 18px;
}
.feature h3 { margin: 0 0 8px; font-size: 17px; }
.feature p  { margin: 0; font-size: 14px; color: #5a5340; line-height: 1.5; }

/* ── CTA button ──────────────────────────────────────── */
.cta-row {
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: #16432f;
  color: #FBF7EE;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cta:hover { opacity: 0.88; }

.cta--disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Footer / small links ────────────────────────────── */
.footer {
  font-size: 13px;
  color: #8a7f6e;
  margin-top: 8px;
}
.footer a { color: #8a7f6e; text-decoration: underline; }
.footer a:hover { color: #16432f; }

/* ── Legal: last-updated label ───────────────────────── */
.updated {
  display: block;
  font-family: 'SF Mono', Menlo, ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7f6e;
  margin: 0 0 32px;
}

/* ── Dividers ────────────────────────────────────────── */
hr {
  border: none;
  border-top: 0.5px solid #E5DBC4;
  margin: 32px 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 520px) {
  h1 { font-size: 52px; }
  .wrap.legal h1 { font-size: 32px; }
  .features { grid-template-columns: 1fr; }
  .cta { width: 100%; text-align: center; }
}
