@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --bg: #f6f0e7;
  --bg-strong: #f0e4d2;
  --ink: #2b2118;
  --ink-soft: #5a4a3b;
  --accent: #b65d3d;
  --accent-dark: #8f3e22;
  --olive: #54684f;
  --cream: #fff9f1;
  --card: #ffffff;
  --shadow: 0 30px 70px rgba(43, 33, 24, 0.18);
  --radius: 28px;
  --radius-small: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: radial-gradient(circle at top left, #fff5e6 0%, var(--bg) 45%, #f3eadb 100%);
  color: var(--ink);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--olive);
  margin: 0 0 16px;
}

.hero__logo {
  width: min(400px, 90vw);
  height: auto;
  margin: 0 0 16px;
  display: block;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(1.95rem, 3.2vw, 2.9rem);
  line-height: 1.1;
}

.hero__title {
  white-space: nowrap;
}

.hero__title span {
  display: inline;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
}

.lead--title {
  font-size: 1.5rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.hero__stats div {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.stat__value {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.stat__label {
  display: block;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.hero__panel {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel__badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(182, 93, 61, 0.12);
  color: var(--accent-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.panel__note {
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--bg-strong);
  border-radius: var(--radius-small);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

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

.grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.field span {
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9c9b4;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  background: #fffdfa;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(182, 93, 61, 0.16);
}

.field.full {
  grid-column: 1 / -1;
}

.field.is-hidden {
  display: none;
}

.payment {
  margin-top: 32px;
  background: var(--bg-strong);
  padding: 28px;
  border-radius: var(--radius);
}

.payment.is-hidden {
  display: none;
}

.payment__discount {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--accent-dark);
}

.payment__discount.is-hidden {
  display: none;
}

.payment__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.option {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--cream);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.option:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 93, 61, 0.4);
  box-shadow: 0 12px 24px rgba(43, 33, 24, 0.12);
}

.option input {
  accent-color: var(--accent);
  margin-top: 4px;
}

.option strong {
  display: block;
}

.option small {
  color: var(--ink-soft);
}

.payment__summary {
  background: #fff9f1;
  border-radius: var(--radius-small);
  padding: 14px 18px;
  margin-bottom: 18px;
}

.payment__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.payment__hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info__card {
  background: rgba(255, 255, 255, 0.75);
  padding: 24px;
  border-radius: var(--radius-small);
  box-shadow: 0 20px 50px rgba(43, 33, 24, 0.1);
}

.info__card--full {
  grid-column: 1 / -1;
}

.info__card ol {
  padding-left: 18px;
  margin: 0;
  color: var(--ink-soft);
}

.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-card {
  max-width: 520px;
  text-align: center;
}

.status-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 18px;
}

.status-link:hover {
  background: var(--accent-dark);
}

.background-shape {
  position: fixed;
  inset: auto -120px -160px auto;
  width: 360px;
  height: 360px;
  background: linear-gradient(140deg, rgba(84, 104, 79, 0.2), rgba(182, 93, 61, 0.2));
  border-radius: 48% 52% 60% 40%;
  z-index: -1;
}

.background-orb {
  position: fixed;
  top: -120px;
  right: 10vw;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(182, 93, 61, 0.25), transparent 70%);
  z-index: -1;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid,
  .grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__title {
    white-space: normal;
  }
}

@media (min-width: 981px) {
  .hero__title {
    white-space: normal;
  }

  .hero__title span {
    display: block;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 36px 18px 72px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .payment__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .info {
    grid-template-columns: 1fr;
  }
}
