:root {
  --ink: #2b2520;
  --muted: #756d64;
  --paper: #f4efe6;
  --surface: #fffaf0;
  --rail: #183f3a;
  --sage: #dce8d7;
  --coral: #c65f49;
  --teal: #1b6f68;
  --gold: #d6a23a;
  --line: #ded3c2;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--teal); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: 248px;
  padding: 28px 24px;
  background: var(--rail);
  color: #fffaf0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  z-index: 10;
}
.site-footer {
  margin: 72px 0 0 248px;
  padding: 34px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.brand {
  color: #fffaf0;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  white-space: normal;
  line-height: 1.05;
}
.brand span { color: #f1b35f; }
nav { display: flex; flex-direction: column; gap: 13px; }
nav a { color: #fffaf0; font-weight: 700; text-decoration: none; }
.hero {
  margin: 0 0 0 248px;
  padding: 64px clamp(26px, 5vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(24, 63, 58, 0.09), transparent 58%),
    repeating-linear-gradient(0deg, rgba(222, 211, 194, 0.32) 0 1px, transparent 1px 34px);
  border-bottom: 1px solid var(--line);
}
.hero-copy h1 {
  margin: 0;
  font-size: 4.15rem;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 760px;
}
.hero-copy p { font-size: 1.12rem; color: var(--muted); max-width: 700px; }
.eyebrow {
  color: var(--coral) !important;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.82rem !important;
}
.hero-media img {
  display: block;
  width: 100%;
  height: 520px !important;
  min-height: 520px;
  aspect-ratio: 1.15;
  object-fit: cover;
  color: transparent;
  background: #dfe9df url("/assets/img/photo-fallback.svg") center / cover no-repeat;
  border: 14px solid #fffaf0;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(43, 37, 32, 0.18);
  transform: rotate(1.3deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}
.primary { background: var(--rail); color: #fffaf0; }
.secondary { background: var(--sage); color: var(--ink); }
.intro-band, .section, .article-body {
  max-width: 960px;
  margin: 54px auto 54px calc(248px + max(24px, calc((100vw - 248px - 960px) / 2)));
  padding: 0 clamp(18px, 4vw, 40px);
}
.intro-band {
  border-left: 8px solid var(--gold);
  background: rgba(255, 250, 240, 0.76);
  border-block: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding-top: 34px;
  padding-bottom: 34px;
}
h2 {
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1.12;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.section-heading p, .card p, .article-body p, .intro-band p, details p { color: var(--muted); }
.section { max-width: 1180px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 8px 10px 0 rgba(24, 63, 58, 0.08);
}
.card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.54;
  object-fit: cover;
  display: block;
  color: transparent;
  background: #dfe9df url("/assets/img/photo-fallback.svg") center / cover no-repeat;
}
.card-body { padding: 18px; }
.card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h3 a:hover, .card-body h3 a:focus-visible { color: var(--teal); text-decoration: underline; }
.check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}
.check-list li {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 14px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 10px 0;
  padding: 14px 18px;
}
summary { cursor: pointer; font-weight: 800; }
.article-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.article-body h2 { font-size: 1.35rem; line-height: 1.32; margin: 28px 0 8px; }
.article-body > h2:first-of-type { margin-top: 8px; }
.callout h2 { font-size: 1.25rem; margin-bottom: 8px; }
.byline { font-weight: 700; color: var(--teal) !important; }
.callout {
  background: var(--sage);
  border-radius: 8px;
  padding: 20px;
  margin-top: 28px;
}
.site-footer p { margin: 6px 0 0; color: var(--muted); max-width: 560px; }
@media (max-width: 820px) {
  .site-header {
    position: static;
    width: auto;
    padding: 18px 20px;
  }
  .site-header nav { flex-direction: row; flex-wrap: wrap; }
  .site-footer, .hero { margin-left: 0; }
  .site-footer, .hero { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 3.15rem; }
  .hero-media img { height: 220px !important; min-height: 220px; }
  h2 { font-size: 1.9rem; }
  .intro-band, .section, .article-body { margin-left: auto; }
  .card-grid, .check-list { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .hero-copy h1 { font-size: 2.72rem; }
  .hero-media img { height: 156px !important; min-height: 156px; }
}
