:root {
  --ink: #161817;
  --charcoal: #202321;
  --slate: #59605b;
  --paper: #f6f3eb;
  --white: #fffef9;
  --gold: #c49745;
  --gold-dark: #8a682f;
  --line: #d9d3c6;
  --max: 1120px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; background: white; padding: .75rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(22, 24, 23, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(196, 151, 69, .45);
}
.nav-wrap { max-width: var(--max); margin: auto; min-height: 72px; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { text-decoration: none; font-family: Georgia, serif; font-size: 1.35rem; letter-spacing: .08em; text-transform: uppercase; }
.brand span { color: var(--gold); }
.menu-toggle { display: none; border: 1px solid #747871; border-radius: .35rem; color: white; background: transparent; padding: .45rem .65rem; font: inherit; }
.nav { display: flex; align-items: center; gap: .9rem; font-size: .9rem; }
.nav a { text-decoration: none; color: #ece8dd; }
.nav a:hover, .nav a:focus { color: var(--gold); }
.hero { background: radial-gradient(circle at 85% 10%, #454b46 0, #202321 35%, #121413 100%); color: var(--white); }
.hero-inner { max-width: var(--max); margin: auto; padding: clamp(4rem, 9vw, 8rem) 1.25rem; }
.eyebrow { margin: 0 0 .9rem; color: var(--gold); font-size: .77rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.15; }
h1 { margin: 0; max-width: 850px; font-size: clamp(2.65rem, 7vw, 5.8rem); font-weight: 500; letter-spacing: -.035em; }
.hero p { max-width: 760px; color: #d7d8d3; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.button { display: inline-block; border: 1px solid var(--gold); border-radius: .25rem; background: var(--gold); color: #151716; padding: .82rem 1.1rem; font-weight: 800; text-decoration: none; }
.button:hover, .button:focus { background: #d9ad5f; }
.button.secondary { background: transparent; color: var(--white); }
.button.secondary:hover, .button.secondary:focus { background: rgba(255,255,255,.08); }
main section { max-width: var(--max); margin: auto; padding: 4.3rem 1.25rem; }
.section-head { max-width: 720px; margin-bottom: 2rem; }
.section-head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 500; }
.section-head p { color: var(--slate); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { display: flex; flex-direction: column; min-height: 260px; padding: 1.55rem; background: var(--white); border: 1px solid var(--line); border-radius: .45rem; box-shadow: 0 8px 26px rgba(33, 31, 25, .05); }
.card h3 { margin: 0 0 .65rem; font-size: 1.45rem; }
.card p { margin: 0 0 1.25rem; color: var(--slate); }
.card a { margin-top: auto; color: var(--gold-dark); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.band { max-width: none; background: var(--charcoal); color: var(--white); }
.band-inner { max-width: var(--max); margin: auto; padding: 4rem 1.25rem; }
.band h2 { margin-top: 0; font-size: clamp(2rem, 4vw, 3rem); }
.band p { max-width: 760px; color: #d7d8d3; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: .75rem 0 .75rem 1.65rem; border-bottom: 1px solid var(--line); position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900; }
.notice { background: #efe7d6; border-left: 4px solid var(--gold); padding: 1.15rem 1.3rem; color: #3f382c; }
.meta { color: var(--slate); font-size: .9rem; }
.site-footer { background: #111312; color: #cccac3; }
.footer-inner { max-width: var(--max); margin: auto; padding: 2.25rem 1.25rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-inner a { color: var(--gold); }

@media (max-width: 850px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 72px; padding: 1rem 1.25rem 1.35rem; background: #161817; flex-direction: column; align-items: flex-start; }
  .nav.open { display: flex; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { text-align: center; }
}
