:root {
  --blue: #0d5874;
  --blue-dark: #07394b;
  --gold: #d8c23c;
  --text: #21313a;
  --muted: #667985;
  --card: rgba(255, 255, 255, 0.94);
  --border: rgba(13, 88, 116, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 194, 60, 0.20), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(13, 88, 116, 0.20), transparent 28%),
    linear-gradient(135deg, #f8fbfc 0%, #edf5f8 50%, #fffdf0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(13, 88, 116, 0.06) 1px, transparent 1px),
    linear-gradient(30deg, rgba(216, 194, 60, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.hero-card {
  position: relative;
  width: min(100%, 980px);
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 30px 90px rgba(7, 57, 75, 0.14);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(216, 194, 60, 0.22);
}

.brand-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.logo {
  width: 135px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.tagline {
  margin: 16px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.intro {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 690px;
}

.notice {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0 auto 26px;
  padding: 16px 18px;
  max-width: 720px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 88, 116, 0.10), rgba(216, 194, 60, 0.13));
  border: 1px solid var(--border);
}

.notice span {
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
}

.notice p {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 600;
}

.contact-form {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--blue-dark);
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(13, 88, 116, 0.22);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 88, 116, 0.12);
}

textarea { resize: vertical; }

button, .back-link {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 14px 30px rgba(13, 88, 116, 0.25);
}

button:hover, .back-link:hover {
  transform: translateY(-1px);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.small-card {
  max-width: 650px;
  text-align: center;
}

.small-card h1 { margin-bottom: 16px; }
.small-card .back-link { display: inline-block; margin-top: 24px; }

@media (max-width: 720px) {
  .hero-card { padding: 30px 20px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .notice { grid-template-columns: 1fr; text-align: center; }
  .notice span { justify-self: center; }
}
