:root {
  --bg: #f2ecdf;
  --bg-deep: #ece2d0;
  --text: #1f2430;
  --muted: #5f6775;
  --accent: #c2542f;
  --accent-deep: #8f361d;
  --card: rgba(255, 250, 243, 0.8);
  --line: rgba(31, 36, 48, 0.12);
  --success: #1f7a55;
  --warning: #9c5a13;
  --danger: #a5382b;
  --shadow: 0 18px 45px rgba(60, 40, 20, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(234, 154, 94, 0.35), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(83, 160, 138, 0.22), transparent 42%),
    linear-gradient(145deg, var(--bg), var(--bg-deep));
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  filter: blur(55px);
  opacity: 0.35;
}

.ambient-left {
  background: #e07a4b;
  top: -7rem;
  left: -6rem;
}

.ambient-right {
  background: #2b7a67;
  right: -5rem;
  bottom: -9rem;
}

.page {
  width: min(960px, 92vw);
  margin: 3rem auto 4rem;
  display: grid;
  gap: 1.2rem;
}

.hero {
  padding: 1rem 0.2rem;
}

.eyebrow {
  margin: 0 0 0.4rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

h1 span {
  color: var(--accent);
}

.subhead {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.card h2 {
  margin-bottom: 0.7rem;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
}

.hint {
  margin-top: 0;
  color: var(--muted);
}

.contact-line {
  margin: 0.9rem 0 0;
}

.contact-line a {
  color: var(--accent-deep);
  font-weight: 700;
}

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

label {
  font-weight: 700;
  font-size: 0.95rem;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  border: 1px solid rgba(37, 51, 66, 0.22);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  background: #fffdfa;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(194, 84, 47, 0.34);
  border-color: rgba(194, 84, 47, 0.8);
}

textarea {
  resize: vertical;
}

button {
  margin-top: 0.4rem;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #fff9f3;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.form-message {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.form-message.success {
  color: var(--success);
}

.form-message.warning {
  color: var(--warning);
}

.form-message.error {
  color: var(--danger);
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.country-list span {
  border: 1px solid rgba(43, 122, 103, 0.35);
  background: rgba(43, 122, 103, 0.09);
  color: #245949;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 650ms ease forwards;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 260ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .page {
    margin-top: 1.6rem;
  }

  .card {
    border-radius: 14px;
    padding: 1rem;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}
