/* ============ Reset + tokens ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fafaf7;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1a4d8f; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #0c2e5c; }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* ============ Masthead ============ */
.masthead {
  background: #fff;
  border-bottom: 1px solid #e5e5e0;
  padding: 12px 0;
  position: sticky; top: 0; z-index: 10;
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #1a1a1a;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.masthead-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7a75;
  font-weight: 500;
}

/* ============ Article ============ */
.article { padding: 28px 0 40px; }

.kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9861a;
  font-weight: 700;
  margin-bottom: 14px;
}
.headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: #111;
}
.deck {
  font-size: 19px;
  line-height: 1.5;
  color: #444;
  margin: 0 0 22px;
  font-weight: 400;
}
.byline {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #e5e5e0;
  border-bottom: 1px solid #e5e5e0;
  margin-bottom: 24px;
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #c9861a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.byline-name { font-weight: 600; font-size: 14px; }
.byline-date { font-size: 13px; color: #7a7a75; }

.hero {
  margin: 0 0 24px;
}
.hero img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  background: #e8e6df;
}
.hero figcaption {
  font-size: 13px;
  color: #7a7a75;
  margin-top: 8px;
  line-height: 1.4;
}

/* ============ Body ============ */
.body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
  color: #111;
}
.body p { margin: 0 0 16px; }
.body ul, .body ol { margin: 0 0 20px; padding-left: 22px; }
.body li { margin-bottom: 8px; }
.body strong { color: #111; }

.pull-quote {
  border-left: 4px solid #c9861a;
  padding: 12px 0 12px 20px;
  margin: 24px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  font-style: italic;
}
.pq-attrib {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  color: #7a7a75;
  letter-spacing: 0.02em;
}

.callout {
  background: #fff8e8;
  border: 1px solid #f0dfa8;
  border-radius: 6px;
  padding: 16px 18px;
  margin: 24px 0;
  font-size: 16px;
}
.callout strong { color: #8a5a10; }

/* ============ Form ============ */
.form-card {
  background: #fff;
  border: 1px solid #e5e5e0;
  border-radius: 10px;
  padding: 28px 24px;
  margin: 32px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.form-badge {
  display: inline-block;
  background: #c9861a;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.form-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #111;
}
.form-sub {
  font-size: 15px;
  color: #555;
  margin: 0 0 20px;
}

.row { margin-bottom: 14px; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; gap: 0; }
}
.row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.row input[type=text],
.row input[type=tel],
.row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0cec7;
  border-radius: 6px;
  font-size: 16px; /* 16px prevents iOS zoom */
  font-family: inherit;
  background: #fff;
  color: #111;
  transition: border-color 0.15s;
}
.row input:focus,
.row select:focus {
  outline: none;
  border-color: #c9861a;
  box-shadow: 0 0 0 3px rgba(201, 134, 26, 0.15);
}
.row input.invalid,
.row select.invalid {
  border-color: #c0392b;
  background: #fff7f6;
}
.checkbox-row {
  display: flex; align-items: center; gap: 10px;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #444 !important;
  cursor: pointer;
}
.checkbox-row input { width: 18px; height: 18px; margin: 0; accent-color: #c9861a; }

.cta {
  width: 100%;
  background: #c9861a;
  color: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s, transform 0.05s;
  letter-spacing: 0.01em;
}
.cta:hover { background: #b0740f; }
.cta:active { transform: translateY(1px); }
.cta:disabled { opacity: 0.6; cursor: not-allowed; }

.consent {
  font-size: 11px;
  color: #7a7a75;
  line-height: 1.5;
  margin: 14px 0 0;
}
.consent a { color: #7a7a75; }

.thank-you {
  text-align: center;
  padding: 20px 0;
}
.check-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #2f8f4a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 700;
  margin: 0 auto 14px;
}
.thank-you h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: #111;
}
.thank-you p { color: #555; font-size: 15px; margin: 0; }

/* ============ Disclosures ============ */
.disclosures {
  background: #f2f1ec;
  border-radius: 6px;
  padding: 16px 18px;
  margin: 32px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #666;
}
.disclosures p { margin: 0 0 10px; }
.disclosures p:last-child { margin: 0; }

/* ============ Footer ============ */
.site-footer {
  background: #1a1a1a;
  color: #b8b8b0;
  padding: 32px 0 24px;
  margin-top: 40px;
  font-size: 13px;
}
.footer-grid {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 20px;
  max-width: 1100px; margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}
.footer-brand { color: #fff; font-weight: 600; margin-bottom: 6px; font-size: 15px; }
.footer-addr { line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.footer-links a { color: #b8b8b0; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-legal {
  max-width: 1100px; margin: 0 auto;
  padding-top: 16px;
  font-size: 11px;
  color: #777;
  line-height: 1.6;
}

/* wide masthead + footer content still uses .wrap 720px, so widen inside */
.site-footer .wrap,
.masthead .wrap { max-width: 1100px; }
