/* Stonecutter Farm — transactional landing. Palette matches print assets. */
:root {
  --ink:    #1F2A1B;
  --accent: #2E5339;
  --paper:  #FBF7EE;
  --rule:   #D9D2BE;
  --muted:  #6B6F5F;

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

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: var(--accent); }

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.wrap {
  width: 100%;
  max-width: 440px;
}

.mark {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(32px, 7vw, 44px);
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0 0 36px;
  color: var(--ink);
}

/* ---------- Card ---------- */
.card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: 4px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 18px;
}
.price-row:first-of-type { padding-top: 0; }

.price {
  font-weight: 500;
  font-size: 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-block { width: 100%; }
.btn + .btn-block { margin-top: 10px; }
.price-row + .btn-block { margin-top: 22px; }

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}
.btn-primary:hover { background: #244429; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- Meta ---------- */
.meta {
  font-style: normal;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 22px;
}
.meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.meta a:hover { color: var(--accent); }

/* ---------- Thanks page ---------- */
.thanks { text-align: center; padding: 36px 28px; }
.thanks-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(40px, 7vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0 0 18px;
}
.thanks-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px;
}
.thanks-body a { color: var(--accent); }
.thanks-signoff {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  margin: 0 0 26px;
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding: 22px 16px;
}
