:root {
  --sand: #e8d5bd;
  --cream: #fbf5ea;
  --terracotta: #c67c5a;
  --gold: #d5bb7b;
}

[x-cloak] {
  display: none !important;
}

body {
  font-family: "Manrope", sans-serif;
}

.hero-grain {
  background-image: radial-gradient(rgba(198, 124, 90, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--terracotta), #d89a67, var(--gold));
  box-shadow: 0 14px 26px -14px rgba(198, 124, 90, 0.75);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-warm:hover {
  transform: translateY(-1px);
  filter: saturate(1.1);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  border: 1px solid rgba(251, 245, 234, 0.45);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.btn-mini,
.btn-mini-alt {
  border-radius: 0.8rem;
  font-size: 0.8rem;
  padding: 0.45rem 0.65rem;
  font-weight: 600;
}

.btn-mini {
  background: #f0e6d8;
}

.btn-mini-alt {
  background: #d9a441;
  color: #fff;
}

.chip {
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.84rem;
  padding: 0.45rem 0.85rem;
  transition: all 0.2s ease;
}

.choice-pill {
  border: 1px solid rgba(198, 124, 90, 0.25);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 0.42rem 0.78rem;
  transition: all 0.2s ease;
}

.dark .choice-pill {
  background: rgba(41, 37, 36, 0.9);
}

.choice-pill-active {
  background: linear-gradient(135deg, #c67c5a, #d9a441);
  border-color: #c67c5a;
  color: #fff;
}

.card-form {
  border-radius: 1.5rem;
  border: 1px solid rgba(198, 124, 90, 0.2);
  background: rgba(255, 255, 255, 0.86);
  padding: 1.5rem;
  box-shadow: 0 18px 36px -18px rgba(198, 124, 90, 0.4);
}

.dark .card-form {
  background: rgba(41, 37, 36, 0.76);
}

.input-warm {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(198, 124, 90, 0.26);
  background: rgba(255, 253, 248, 0.88);
  padding: 0.7rem 0.9rem;
}

.dark .input-warm {
  background: rgba(41, 37, 36, 0.85);
}

.input-warm:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(198, 124, 90, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
