:root {
  --bg-deep: #081220;
  --bg-mid: #143f57;
  --ink: #102a43;
  --paper: #f7f4ee;
  --accent-main: #f7b267;
  --accent-strong: #ee6c4d;
  --accent-soft: #64c5b1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(247, 178, 103, 0.25), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(100, 197, 177, 0.2), transparent 35%),
    linear-gradient(140deg, var(--bg-deep), var(--bg-mid));
  display: grid;
  place-items: center;
  padding: 24px;
}

.layout {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero,
.contact-card {
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(4px);
  animation: riseIn 0.8s ease both;
}

.hero {
  background: rgba(8, 18, 32, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.badge {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-main);
}

h1 {
  margin: 0 0 14px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  max-width: 13ch;
}

.lead {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.timeline {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 14px;
}

.timeline-item p {
  margin: 0;
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 0 8px rgba(100, 197, 177, 0.12);
}

.contact-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation-delay: 0.1s;
}

.contact-card h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
}

.card-text {
  margin: 10px 0 22px;
  color: rgba(16, 42, 67, 0.8);
}

.contact-form {
  display: grid;
  gap: 10px;
}

label {
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d4dd;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(238, 108, 77, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--accent-strong), #ff9d6f);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

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

.status-message {
  min-height: 1.4rem;
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.status-success {
  color: #00733e;
}

.status-error {
  color: #b21d1d;
}

.reveal {
  transform: translateY(14px);
  opacity: 0;
  animation: riseIn 0.8s ease forwards;
}

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

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

  .hero,
  .contact-card {
    padding: 24px;
  }
}
