:root {
  --ink: #102028;
  --muted: #4f6168;
  --accent: #0f766e;
  --accent-2: #d97706;
  --paper: #f6f2e8;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Serif 4", "Georgia", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fef6e5 0%, #f7efe2 45%, #e8ebe6 100%);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.hero {
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent-2);
  margin-bottom: 16px;
  font-family: "Source Sans 3", "Helvetica", sans-serif;
}

h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 12px;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.card {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.card.subtle {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

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

label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 8px;
}

label small {
  color: var(--muted);
  font-size: 12px;
}

input,
textarea,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  font-size: 15px;
  font-family: "Source Sans 3", "Helvetica", sans-serif;
}

input::placeholder,
textarea::placeholder {
  color: rgba(79, 97, 104, 0.7);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(15, 118, 110, 0.25);
  border-color: var(--accent);
}

.check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.check input {
  margin-top: 2px;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.hint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.hint.red {
  color: #b42318;
}

.actions {
  display: flex;
  justify-content: flex-end;
}

button,
.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
  font-family: "Source Sans 3", "Helvetica", sans-serif;
}

.alert {
  background: #fff7ed;
  border-left: 4px solid var(--accent-2);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0;
}

.divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 18px 0;
}

@media (max-width: 720px) {
  .page {
    padding: 32px 18px 60px;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
  .actions {
    justify-content: center;
  }
}
.box {
  background: #f2f4f5;
  border-radius: 12px;
  padding: 16px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.row:last-child {
  margin-bottom: 0;
}

.inline {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.short {
  width: 90px;
}

.helper {
  font-size: 12px;
  color: var(--muted);
}

.note {
  margin: 0;
  color: var(--ink);
}

.mail {
  color: #1d4ed8;
  text-decoration: underline;
}
