@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --ink: #173b3d;
  --muted: #607476;
  --cream: #f5f4ef;
  --mint: #dcece4;
  --lime: #d3f36b;
  --line: #cbd8d3;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 16px/1.6 'DM Sans', sans-serif;
}

.wrap { max-width: 1120px; margin: auto; padding: 0 28px; }
a { color: inherit; }

.site-header { background: var(--cream); border-bottom: 1px solid var(--line); }
.nav { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { font-weight: 600; text-decoration: none; letter-spacing: -.02em; }
.brand span { color: #769a77; }
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 400; letter-spacing: .02em; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-size: 14px; }

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: white;
  padding: 14px 19px;
  text-decoration: none;
  border: 0;
  font: 500 14px 'DM Sans';
  cursor: pointer;
}
.button span { font-size: 20px; line-height: 10px; }
.button.small { padding: 10px 16px; }

.hero { background: var(--mint); min-height: 530px; display: flex; align-items: center; }
.hero-inner { width: 100%; padding-top: 50px; padding-bottom: 70px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 600; color: #608273; }
.hero h1,
.page-head h1 { font: normal clamp(48px, 7vw, 86px)/.98 'DM Serif Display', serif; letter-spacing: -.04em; margin: 20px 0; }
.hero h1 span { color: #759a76; }
.hero h1 em,
.page-head h1 em { color: #759a76; }
.intro { max-width: 500px; color: var(--muted); font-size: 18px; margin: 30px 0; }

.section { padding: 105px 0; }
.section-heading { max-width: 590px; margin-bottom: 48px; }
.section h2,
.cta h2 { font: normal clamp(34px, 4vw, 52px)/1.05 'DM Serif Display', serif; letter-spacing: -.03em; margin: 12px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards article { padding: 30px; background: white; min-height: 270px; }
.cards article.accent { background: white; }
h3 { font-size: 21px; line-height: 1.2; margin: 34px 0 12px; }
article p,
.two-col p,
.contact-grid p { color: var(--muted); }
article a { font-size: 13px; text-underline-offset: 4px; }

.tinted { background: #e8eee9; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.price-list { border-top: 2px solid var(--ink); }
.price-row { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line); }
.price-row.header { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); padding: 10px 0; }
.fine-print { font-size: 13px; margin-top: 22px; }

.cta { background: var(--ink); color: white; padding: 90px 0; }
.cta .eyebrow { color: var(--lime); }
.cta p { color: #b9cfca; }
.button.light { background: var(--lime); color: var(--ink); margin-top: 16px; }

footer { padding: 50px 0; background: #102e30; color: #c5d5d1; font-size: 13px; }
footer strong { color: white; }
footer p { color: #9fb9b4; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
footer a { color: white; }

.page-head { background: var(--mint); padding: 85px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
form { background: white; padding: 30px; }
label { display: block; font-size: 13px; font-weight: 600; margin: 16px 0 7px; }
label span { color: #769a77; }
input,
textarea { display: block; width: 100%; border: 1px solid var(--line); padding: 12px; font: inherit; background: var(--cream); }
textarea { min-height: 140px; resize: vertical; }
.success { background: var(--lime); padding: 22px; margin-bottom: 20px; }
.success h3 { margin: 0 0 5px; }
.success p { color: var(--ink); margin: 0; }
.error { display: block; color: #af4739; }
form .button { margin-top: 20px; }

@media (max-width: 700px) {
  .nav { align-items: flex-start; padding-top: 22px; padding-bottom: 22px; }
  .nav nav a:not(.button) { display: none; }
  .cards,
  .two-col,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 70px 0; }
  .hero { min-height: 500px; }
  .two-col,
  .contact-grid { gap: 45px; }
  .page-head { padding: 60px 0; }
}
