:root {
  --ground: #EDF2ED;
  --check: rgba(122, 154, 132, 0.15);
  --paper: #FFFFFF;
  --ink: #22362D;
  --ink-soft: #5D7065;
  --sage: #7A9A84;
  --pine: #2C4A3B;
  --butter: #F0C24E;
  --line: #DBE4DC;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 0;
  font-family: Karla, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--ground);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 24px, var(--check) 24px 48px),
    repeating-linear-gradient(90deg, transparent 0 24px, var(--check) 24px 48px);
}

/* ---- nav ---- */

.nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover { color: var(--pine); }
.nav a[aria-current="page"] { color: var(--pine); border-bottom-color: var(--butter); }
.nav a:focus-visible { outline: 3px solid var(--butter); outline-offset: 3px; }

/* ---- masthead ---- */

.masthead {
  max-width: 600px;
  margin: 0 auto;
  padding: 44px 4px 30px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.masthead h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 8vw, 46px);
  line-height: 1.06;
  margin: 10px 0 14px;
  color: var(--pine);
}

.lede {
  margin: 0 auto;
  max-width: 440px;
  color: var(--ink-soft);
}

/* ---- layout ---- */

main { max-width: 560px; margin: 0 auto; padding-bottom: 40px; }
main.wide { max-width: 640px; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  margin-bottom: 18px;
}

.card h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--pine);
}

.card h3 {
  font-family: Karla, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 6px;
  color: var(--ink);
}

.card h3:first-of-type { margin-top: 0; }
.card p { margin: 0 0 14px; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0 0 14px; padding-left: 20px; }
.card li { margin-bottom: 7px; }

.section-hint { margin-top: -8px; margin-bottom: 22px; }

/* ---- buttons ---- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 26px auto 0;
  max-width: 440px;
}

.cta {
  flex: 1 1 190px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 11px;
  padding: 15px 18px;
  color: var(--paper);
  background: var(--pine);
  border: 2px solid var(--pine);
}

.cta:hover { background: #22392E; border-color: #22392E; }

.cta.ghost {
  color: var(--pine);
  background: transparent;
  border-color: var(--sage);
}

.cta.ghost:hover { background: #E4EDE6; }
.cta:focus-visible { outline: 3px solid var(--butter); outline-offset: 2px; }

/* ---- steps: a real sequence, so the numbers carry information ---- */

.steps { counter-reset: step; }

.step {
  position: relative;
  border-top: 1.5px dashed var(--sage);
  padding: 20px 0 20px 46px;
  counter-increment: step;
}

.step:first-of-type { border-top: 0; padding-top: 4px; }
.step:last-of-type { padding-bottom: 4px; }

.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #E4EDE6;
  color: var(--pine);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step:first-of-type::before { top: 2px; }
.step h3 { margin: 0 0 4px; font-size: 17px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---- carries grid ---- */

.carries { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.carry {
  border: 1.5px dashed var(--sage);
  border-radius: 11px;
  padding: 14px 15px;
}

.carry strong { display: block; font-size: 15px; margin-bottom: 2px; }
.carry span { font-size: 13.5px; color: var(--ink-soft); }

/* ---- shipping tiers ---- */

.tiers { margin: 0 0 14px; }

.tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1.5px dashed var(--sage);
  padding: 12px 0;
}

.tier:first-child { border-top: 0; padding-top: 0; }
.tier span { font-size: 15px; color: var(--ink-soft); }
.tier strong { font-size: 16px; color: var(--pine); white-space: nowrap; }
.tier.free strong { color: var(--pine); }

/* ---- q and a ---- */

.qa { border-top: 1px solid var(--line); padding: 18px 0; }
.qa:first-of-type { border-top: 0; padding-top: 0; }
.qa:last-of-type { padding-bottom: 0; }
.qa h3 { margin: 0 0 6px; }
.qa p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---- fields ---- */

.field { margin-bottom: 22px; border: 0; padding: 0; }
.field:last-child { margin-bottom: 0; }

label, legend {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  padding: 0;
}

.opt { font-weight: 400; font-size: 13px; color: var(--ink-soft); }
.hint { margin: -2px 0 8px; font-size: 14px; color: var(--ink-soft); }

input[type="text"], input[type="tel"], input[type="email"], textarea, select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 12px 13px;
}

textarea { resize: vertical; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235D7065' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 12px;
  padding-right: 36px;
}

input::placeholder, textarea::placeholder { color: #A9B6AC; }

input:focus, textarea:focus, select:focus {
  outline: 3px solid var(--butter);
  outline-offset: 1px;
  border-color: var(--sage);
}

.row { display: flex; gap: 12px; }
.row .field { flex: 1; }
.row .field:first-child { flex: 2; }

.choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.choice:last-child { margin-bottom: 0; }
.choice input { flex-shrink: 0; margin: 3px 0 0; accent-color: var(--pine); width: 18px; height: 18px; }
.choice:has(input:checked) { border-color: var(--sage); background: #F5F9F5; }
.choice:has(input:focus-visible) { outline: 3px solid var(--butter); outline-offset: 1px; }
.confirm { margin-top: 4px; }

.item {
  border: 1.5px dashed var(--sage);
  border-radius: 11px;
  padding: 18px 16px;
  margin-bottom: 16px;
}

.item-tag {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

button {
  width: 100%;
  font-family: Karla, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--paper);
  background: var(--pine);
  border: 0;
  border-radius: 11px;
  padding: 17px;
  margin-top: 6px;
  cursor: pointer;
}

button:hover { background: #22392E; }
button:focus-visible { outline: 3px solid var(--butter); outline-offset: 2px; }

.footnote { text-align: center; font-size: 14px; color: var(--ink-soft); margin: 18px 0 0; }
.hp { position: absolute; left: -9999px; }

/* ---- thank you ---- */

.thanks {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 44px 26px;
  text-align: center;
}

.thanks h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--pine);
  margin: 0 0 14px;
}

.thanks p { color: var(--ink-soft); margin: 0 auto 22px; max-width: 400px; }

.back {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: var(--pine);
  text-decoration: none;
  border-bottom: 2px solid var(--butter);
  padding-bottom: 2px;
}

/* ---- footer ---- */

.foot {
  border-top: 1.5px dashed var(--sage);
  max-width: 560px;
  margin: 0 auto;
  padding: 26px 0 44px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
}

.foot p { margin: 0 0 8px; }
.foot a { color: var(--pine); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--sage); }
.foot a:hover { border-bottom-color: var(--pine); }
.foot .mark { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: 12px; }

@media (max-width: 420px) {
  .row { display: block; }
  .row .field { margin-bottom: 22px; }
  .carries { grid-template-columns: 1fr; }
}
