:root {
  --forest: #14251f;
  --forest-2: #21382f;
  --gold: #d8b45f;
  --paper: #f7f1e6;
  --ink: #17201b;
  --muted: #59655d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(20, 37, 31, 0.96), rgba(33, 56, 47, 0.88) 48%, rgba(247, 241, 230, 0.92)),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

.simple-page {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 14px 40px;
}

.simple-hero {
  padding: 34px 0 18px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 10vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.simple-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.simple-card,
.included {
  border-radius: 8px;
  background: rgba(247, 241, 230, 0.98);
  box-shadow: 0 22px 70px rgba(6, 20, 15, 0.24);
}

.simple-card {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

button {
  min-height: 54px;
  border: 1px solid rgba(20, 37, 31, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

button.active {
  background: var(--forest);
  color: #fff;
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
}

input[type="number"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(20, 37, 31, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  font-size: 20px;
  font-weight: 900;
}

.switch {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(20, 37, 31, 0.16);
  border-radius: 8px;
  background: #fff;
}

.switch input {
  width: 22px;
  height: 22px;
}

.result {
  padding: 18px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.result span,
.result small {
  display: block;
}

.result span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.result strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(42px, 12vw, 72px);
  line-height: 1;
}

.result small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.actions a {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #171109;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.actions a + a {
  background: #fff;
  color: var(--forest);
}

.included {
  margin-top: 14px;
  padding: 18px;
}

.included h2 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 24px;
}

.included ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 520px) {
  .actions,
  .choices {
    grid-template-columns: 1fr;
  }
}
