:root {
  --ink: #202425;
  --muted: #5c6567;
  --paper: #fffdf8;
  --soft: #f4f0e7;
  --sage: #71836f;
  --clay: #b9603c;
  --gold: #d0a84f;
  --line: #ded8ca;
  --charcoal: #171b1d;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--paper);
  padding: 8px 12px;
  border: 1px solid var(--ink);
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img { width: 98px; height: 86px; object-fit: contain; object-position: left center; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
}
.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  color: #303637;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: var(--soft); }
.menu-toggle { display: none; }
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: white;
  background-image: linear-gradient(90deg, rgba(19,23,24,.88), rgba(19,23,24,.54), rgba(19,23,24,.12)), var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero-inner {
  padding: 90px 0 118px;
  max-width: var(--max);
}
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 62px;
  line-height: 1.02;
  font-weight: 700;
}
.hero p {
  max-width: 640px;
  font-size: 20px;
  color: rgba(255,255,255,.92);
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--clay);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: #9d4e31; }
.button-row .button + .button {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
}
.button-row .button + .button:hover { background: rgba(255,255,255,.22); }
.section { padding: 76px 0; }
.section:nth-of-type(even) { background: var(--soft); }
.section-inner > h2 {
  margin: 0;
  max-width: 850px;
  font-size: 42px;
  line-height: 1.12;
}
.section-body {
  margin-top: 20px;
  max-width: 780px;
  font-size: 18px;
  color: var(--muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.card {
  min-height: 218px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0 0 18px; color: var(--muted); }
.text-link {
  font-weight: 800;
  color: var(--clay);
  text-decoration-thickness: 2px;
}
.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.split-list > div {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.split-list h3 { margin: 0 0 10px; }
.split-list ul { margin: 0; padding-left: 20px; color: var(--muted); }
.wide-image {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  margin-top: 34px;
  border-radius: 8px;
}
.support-form {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.netlify-honeypot { display: none; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #c9c1b3;
  border-radius: 8px;
  padding: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}
textarea,
.checkline,
.form-note { grid-column: 1 / -1; }
.checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 650;
}
.checkline input { width: auto; margin-top: 6px; }
.form-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-inner p { margin: 4px 0 0; color: rgba(255,255,255,.72); }
.footer-inner nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-inner a { color: white; }

@media (max-width: 900px) {
  .header-inner { min-height: 64px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    background: white;
    font-weight: 800;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 102px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
  }
  .site-nav.is-open { display: flex; }
  .hero { min-height: 520px; background-position: center; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 18px; }
  .section { padding: 58px 0; }
  .section-inner > h2 { font-size: 34px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--max)); }
  .brand img { width: 76px; height: 66px; }
  .hero { min-height: 560px; }
  .hero-inner { padding: 76px 0 92px; }
  .hero h1 { font-size: 38px; }
  .button { width: 100%; }
  .section-inner > h2 { font-size: 30px; }
  .card-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { display: grid; }
}
