﻿:root {
  --ink: #18333a;
  --deep: #062a34;
  --deep-2: #0a3b44;
  --green: #198a62;
  --mint: #77d7ae;
  --paper: #f4f7f3;
  --white: #fff;
  --muted: #6c8081;
  --line: #d7e2df;
  --amber: #d79b35;
  --coral: #d96d55;
  --shadow: 0 18px 40px rgba(18, 61, 67, .1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: "DM Sans", Arial, sans-serif; }
button, select, input { font: inherit; }
button { cursor: pointer; }
.band { width: min(1420px, calc(100% - 56px)); margin: 0 auto; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 15px 28px; color: white; background: var(--deep); }
.brand { display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; font-weight: 700; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.55); color: var(--mint); font-size: 12px; }
.top-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.top-nav a { color: #c8dddc; font-size: 11px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.top-nav a:hover { color: var(--mint); }
.eyebrow { margin: 0 0 10px; color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.green { color: var(--green); }
h1, h2 { margin: 0; font-family: "Fraunces", Georgia, serif; letter-spacing: 0; }
h1 { max-width: 920px; font-size: clamp(55px, 7vw, 98px); line-height: .93; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1; }
h3 { margin: 0; font-size: 25px; letter-spacing: 0; }
.hero-copy { max-width: 780px; margin: 24px 0 0; overflow-wrap: anywhere; color: #d7e7e5; font-size: 17px; line-height: 1.65; }
.panel-heading { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.panel-heading span { color: var(--green); font-weight: 700; }
footer { display: flex; justify-content: space-between; gap: 15px; padding: 18px 28px; color: #bad0cf; background: var(--deep); font-size: 12px; }
@media (max-width: 760px) {
  .band { width: min(100% - 30px, 1420px); }
  .site-header { padding: 13px 15px; align-items: flex-start; }
  .top-nav { gap: 10px; }
  h1 { max-width: 100%; font-size: 43px; line-height: .98; overflow-wrap: anywhere; }
  .hero-copy { max-width: 100%; font-size: 14px; }
  footer { flex-direction: column; padding: 16px; }
}
