:root {
  --plum-deep: #402234;
  --plum: #5a3349;
  --plum-card: #573049;
  --cream: #faf5ec;
  --cream-card: #fffdf8;
  --yellow: #fdbf0d;
  --ink: #2e1a28;
  --body: #5c4a56;
  --font-display: 'Aleo', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --container: 960px;
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, p { margin: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(253, 191, 13, 0.18), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(90, 51, 73, 0.12), transparent 50%),
    var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-header {
  background: var(--plum-deep);
  color: #fff;
  padding: 14px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.link-back {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

.link-back:hover { color: #fff; }

.booking {
  padding: 56px 0 72px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 10px;
}

.booking h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hl { color: var(--plum); }

.lead {
  color: var(--body);
  max-width: 52ch;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.plan {
  background: var(--plum-card);
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  position: relative;
  border: 2px solid transparent;
}

.plan--featured {
  background: linear-gradient(165deg, #6a3a56 0%, var(--plum-deep) 100%);
  border-color: var(--yellow);
  box-shadow: 0 14px 36px rgba(64, 34, 52, 0.28);
}

.plan__flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.plan__term {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.plan__price sup {
  font-size: 1rem;
  margin-right: 2px;
}

.plan__cycle {
  opacity: 0.8;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
}

.plan__list li {
  padding-left: 1.3em;
  position: relative;
  opacity: 0.92;
  font-size: 0.95rem;
}

.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(253, 191, 13, 0.3);
}

.btn--yellow:hover:not(:disabled) {
  box-shadow: 0 7px 22px rgba(253, 191, 13, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.status {
  margin: 8px 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(64, 34, 52, 0.12);
  font-size: 0.95rem;
}

.status.is-error {
  border-color: #e63329;
  color: #8a1c16;
  background: #fff5f4;
}

.status.is-ok {
  border-color: #3aa757;
  color: #1e5c32;
  background: #f2fbf5;
}

.notes {
  color: var(--body);
  font-size: 0.92rem;
  display: grid;
  gap: 6px;
  max-width: 60ch;
}

.notes a {
  color: var(--plum);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(64, 34, 52, 0.1);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--body);
  font-size: 0.88rem;
}

.footer__legal a:hover { color: var(--plum); }

.booking--success .next-steps {
  margin: 0 0 22px;
  padding-left: 1.2em;
  color: var(--body);
  display: grid;
  gap: 8px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions .btn {
  width: auto;
  min-width: 180px;
}

.actions .btn--ghost {
  background: var(--plum);
  border-color: var(--plum);
}

.plan--single {
  max-width: 420px;
}

.booking--single .lead {
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .plans { grid-template-columns: 1fr; }
  .booking { padding-top: 36px; }
  .actions .btn { width: 100%; }
}
