:root {
  --ink: #14241c;
  --court: #1c3328;
  --clay: #c45c32;
  --clay-deep: #a34824;
  --cream: #f6efe4;
  --muted: #8a7f72;
  --line: rgba(196, 92, 50, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

h1, h2, h3, .brand, .price__amount {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  color: var(--clay);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--clay { background: var(--clay); color: #fff8f2; }
.btn--clay:hover { background: #d46a3d; }
.btn--clay:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--clay); color: #f0c4b0; }
.btn--block { width: 100%; margin-top: 12px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 36, 28, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 24px; }
.brand__mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--clay);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-top: 2px solid var(--clay);
}
.nav__links { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: 14px; }
.nav__links a:not(.btn):hover { color: #f0c4b0; }

.hero {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(44px, 6.4vw, 74px); margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: #f0c4b0; }
.lead { color: #e4d7c8; font-size: 18px; max-width: 42ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 32px; }
.stats { display: flex; gap: 28px; }
.stats dt { font-family: "Fraunces", serif; font-size: 32px; color: #f0c4b0; }
.stats dd { font-size: 13px; color: var(--muted); }

.hero__photo { position: relative; }
.hero__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px 4px 28px 4px;
  filter: saturate(0.92);
}
.hero__photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--clay);
  color: #fff8f2;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
}

.wrap { width: min(1120px, 92%); margin: 0 auto; padding: 80px 0; }
.intro { max-width: 560px; margin-bottom: 36px; }
.intro h2, .band h2, .pay h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 10px; }
.intro--center { text-align: center; margin-inline: auto; }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card {
  background: var(--court);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.card span { color: #f0c4b0; font-size: 12px; letter-spacing: 0.14em; }
.card h3 { font-size: 28px; margin: 8px 0; }
.card p { color: #dccfc0; }

.band { background: #101c18; }
.band__grid {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.band p { color: #e4d7c8; }
.ticks { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.ticks li { padding-left: 22px; position: relative; }
.ticks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  position: absolute;
  left: 0;
  top: 8px;
}
.band__img {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 4px 28px 4px 28px;
}

.price {
  max-width: 420px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--ink);
  padding: 32px;
  text-align: center;
  border-radius: 24px;
}
.price__badge {
  display: inline-block;
  background: #f3d5c4;
  color: #7a3018;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
}
.price__amount { font-size: 56px; margin: 14px 0 18px; }
.price__amount small { font-size: 18px; font-family: "Outfit", sans-serif; font-weight: 600; letter-spacing: 0; }
.price ul { list-style: none; text-align: left; display: grid; gap: 8px; color: #4d4a43; margin-bottom: 22px; }
.price .btn--clay { background: var(--ink); color: var(--cream); }
.price .btn--clay:hover { background: #1e3328; }

.pay { background: #0e1814; }
.pay__grid {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.pay p { color: #e4d7c8; }
.form { background: var(--court); border: 1px solid var(--line); padding: 26px; border-radius: 20px; }
.field { display: block; margin-bottom: 14px; }
.field span { display: block; font-size: 13px; margin-bottom: 6px; color: #e4d7c8; }
.field input, .field select, .card-input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  font-size: 16px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--clay); }
.field-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; }

.message { margin-top: 16px; padding: 12px; overflow-wrap: anywhere; border-radius: 10px; }
.message a { text-decoration: underline; font-weight: 700; }
.message--error { background: #3a1b1b; color: #f3c7c7; }
.message--success { background: #1c3324; color: #c8efd4; }
.message--info { background: #2a2418; color: #ead9a8; }

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 248, 242, 0.25);
  border-top-color: #fff8f2;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

.footer { border-top: 1px solid var(--line); padding: 28px 0 36px; color: var(--muted); font-size: 14px; }
.footer__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer strong { display: block; color: var(--cream); font-family: "Fraunces", serif; font-size: 22px; }

@media (max-width: 900px) {
  .hero, .cards, .band__grid, .pay__grid { grid-template-columns: 1fr; }
  .nav__links a:not(.btn) { display: none; }
  .hero__photo img { height: 320px; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}
