:root {
  --mist: #d9eeea;
  --plate: #f4fbf8;
  --ink: #163a40;
  --ink-soft: #3d5c61;
  --lagoon: #1f5a63;
  --coral: #e07a5f;
  --coral-dark: #c45c42;
  --line: #b7d4cf;
  --shadow: 0 18px 40px rgba(22, 58, 64, 0.08);
}
* { box-sizing: border-box; }
html, body {
  color-scheme: only light;
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
body {
  background-image:
    radial-gradient(1200px 500px at 80% -10%, rgba(224, 122, 95, 0.12), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
a { color: var(--lagoon); }
img { max-width: 100%; height: auto; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.1rem; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; }
nav { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
nav a { text-decoration: none; color: var(--ink-soft); }
.btn,
button.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 48px;
  height: 48px;
  padding: 0 1.2rem;
  line-height: 1;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.btn:disabled { opacity: 0.65; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0 2rem;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.12;
  margin: 0 0 0.7rem;
  font-weight: 600;
}
.kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral-dark);
}
.card {
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
h2 { font-family: "Fraunces", Georgia, serif; font-weight: 600; }
label { display: block; font-size: 0.92rem; margin: 0.7rem 0 0.25rem; }
input, textarea, select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
form select, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.8rem 2.85rem 0.8rem 0.95rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1.5 1.75L6 6.25L10.5 1.75' stroke='%23163A40' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  cursor: pointer;
}
select::-ms-expand { display: none; }
.error { color: #9b2c2c; font-size: 0.88rem; min-height: 1.1em; }
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #163a40;
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 20;
}
.sticky-cta a { color: #fff; font-weight: 700; text-decoration: none; }
footer {
  margin-top: 2.5rem;
  padding: 1.5rem 0 5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
footer a { color: var(--ink-soft); }
@media (max-width: 800px) {
  .hero, .split { grid-template-columns: 1fr; }
  nav { display: none; }
  .sticky-cta { display: flex; justify-content: center; }
}
