﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Playfair+Display:wght@600&display=swap');

:root {
  --ink: #121212;
  --muted: #4c4c4c;
  --accent: #e7602f;
  --accent-deep: #9b2f12;
  --card: #fdf7f2;
  --shadow: rgba(18, 18, 18, 0.12);
  --stroke: rgba(18, 18, 18, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 10% 0%, #ffe7d9, transparent 60%),
    radial-gradient(800px 400px at 90% 10%, #fff2cc, transparent 60%),
    #f6efe7;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.card {
  width: min(680px, 100%);
  background: var(--card);
  padding: 36px clamp(24px, 4vw, 40px);
  border-radius: 22px;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  margin: 8px 0 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--accent-deep);
  font-weight: 600;
  margin: 0;
}

.subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(231, 96, 47, 0.3);
  border-color: var(--accent);
}

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

.two-col {
  display: grid;
  gap: 16px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}

button {
  border: none;
  background: linear-gradient(120deg, var(--accent), #ff9a4a);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(231, 96, 47, 0.25);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.status {
  min-height: 22px;
  color: var(--accent-deep);
  font-weight: 500;
}

.easter {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  color: var(--accent-deep);
  font-weight: 600;
  background: var(--card);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.easter img {
  width: min(360px, 100%);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.2);
}

.hidden {
  display: none;
}

body.easter-mode .card {
  display: none;
}

body.easter-mode .page {
  align-items: center;
}

@media (min-width: 700px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
