:root {
  --ink: #14202b;
  --slate: #4a6274;
  --paper: #f7f8f6;
  --line: #dce0dd;
  --accent: #0b7285;
  --accent-soft: #e6f1f3;
  --max: 68rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.125rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; }
a { color: var(--accent); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 44rem; }

.eyebrow {
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 0.9rem;
}

/* Header */
.site-head {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  flex-wrap: wrap;
}
.wordmark {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--accent); }
.head-contact {
  font-size: 0.95rem;
  color: var(--slate);
}
.head-contact a { text-decoration: none; font-weight: 600; }

/* Hero */
.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--slate);
  max-width: 38rem;
}

section { padding: clamp(2.75rem, 6vw, 4.25rem) 0; }
section.tint { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Price panel — the one designed moment */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 1rem;
}
.price-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem;
}
.price-card.preferred {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.price-card .amount {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 2.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.price-card .per { font-size: 0.95rem; color: var(--slate); }
.price-card h3 { margin-bottom: 0.75rem; }
.tax-note { font-size: 0.95rem; color: var(--slate); margin-top: 0.25rem; }

/* Lists */
.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem 2rem;
  margin-top: 1.5rem;
}
.cols h3 { margin-bottom: 0.35rem; }
.cols p { color: var(--slate); margin: 0; }

/* Form */
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  border-radius: 2px;
}
.field input:focus, .field textarea:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 34rem) { .row { grid-template-columns: 1fr; } }

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 1.25rem 0;
}
.consent input { margin-top: 0.25rem; flex-shrink: 0; }

button.submit {
  background: var(--accent);
  color: #fff;
  border: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  cursor: pointer;
}
button.submit:hover { background: #095c6c; }

.hp { position: absolute; left: -9999px; }

/* Footer */
.site-foot {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 2.5rem 0;
  font-size: 0.92rem;
  color: var(--slate);
}
.site-foot .wrap { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.site-foot a { color: var(--slate); }
.foot-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Legal pages */
.legal h2 { margin-top: 2.25rem; }
.legal { padding-bottom: 4rem; }
.legal .updated { color: var(--slate); font-size: 0.95rem; }
