
:root {
  --field: #d5e2df;
  --ink: #14201e;
  --nav: #1c3a38;
  --card: #eef6f4;
  --accent: #2f6f6a;
  --muted: #4d635f;
}
html { color-scheme: only light; }
html, body {
  margin: 0;
  background: var(--field);
  color: var(--ink);
  opacity: 1;
  filter: none;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
html::before, html::after, body::before, body::after { content: none !important; display: none !important; }
body {
  background-image:
    radial-gradient(rgba(20,18,14,.05) 0.7px, transparent 0.8px),
    linear-gradient(180deg, #e4f0ee 0%, #d5e2df 48%, #b9cdc8 100%);
  background-size: 3px 3px, 100% 100%;
}
a { color: var(--nav); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 5vw 72px; }
.nav {
  background: var(--nav);
  color: var(--card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 5vw;
}
.nav .brand { color: var(--card); text-decoration: none; font-weight: 700; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nav-links a { color: var(--card); text-decoration: none; }
.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;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}
.nav a.btn { margin-left: 0; }
h1, h2 { font-family: "Source Serif 4", Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(34px, 7vw, 56px); line-height: 1.08; margin: 22px 0 12px; }
.lede { font-size: 1.2rem; max-width: 36rem; }
.hero-photo {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  display: block;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
  margin-top: -48px;
  position: relative;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; margin-top: 12px; }
  .hero-photo { height: 38vh; }
}
.card {
  background: var(--card);
  padding: 22px 24px;
  margin: 0;
  box-shadow: 0 18px 40px rgba(20,18,14,.12);
}
.note { color: var(--muted); font-size: .95rem; }
form label { display: block; margin: 12px 0 6px; font-weight: 600; }
form input[type=text], form input[type=tel], form textarea {
  width: 100%; box-sizing: border-box; padding: .8rem .95rem;
  border: 1px solid #c9c2b4; background: #fff; font: inherit;
}
form select, select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  width: 100%; box-sizing: border-box;
  padding: 0.8rem 2.85rem 0.8rem 0.95rem;
  background-color: #fff;
  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='%23171411' 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;
  border: 1px solid #c9c2b4;
  font: inherit;
}
select::-ms-expand { display: none; }
footer { padding: 28px 5vw 48px; color: var(--muted); font-size: .95rem; }
@media (prefers-color-scheme: dark) {
  html, body { background: var(--field); color: var(--ink); color-scheme: only light; }
}
