:root {
  color-scheme: light;
  --bg: #f4efe7;
  --panel: rgba(255, 250, 244, 0.88);
  --panel-strong: #fffaf3;
  --ink: #1f2933;
  --muted: #52606d;
  --line: rgba(31, 41, 51, 0.12);
  --accent: #b85c38;
  --accent-soft: #f2d4c4;
  --success: #2f855a;
  --shadow: 0 24px 60px rgba(31, 41, 51, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(184, 92, 56, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(87, 121, 148, 0.18), transparent 24%),
    linear-gradient(135deg, #f7f0e7 0%, #e2edf4 100%);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

h1,
h2,
h3 {
  margin: 0;
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(31, 41, 51, 0.16);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

textarea {
  min-height: 6rem;
  resize: vertical;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: white;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease;
}

button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

button:hover {
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 640px) {
  .hero,
  .panel {
    padding: 1rem;
    border-radius: 20px;
  }
}
