:root {
  color-scheme: light;
  --ink: #15120d;
  --muted: #655f55;
  --paper: #fffdf8;
  --gold: #a87922;
  --line: #e4d6bc;
}
* { 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.65;
}
a { color: inherit; text-underline-offset: .2em; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
header {
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding: clamp(24px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15,12,8,.88), rgba(15,12,8,.25)),
    url('/resources/lodge-hero-published.webp') center/cover;
}
.brand { position: absolute; inset: 24px auto auto clamp(24px, 5vw, 72px); }
.brand img { display: block; width: min(220px, 42vw); height: auto; }
.hero { max-width: 800px; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.02; letter-spacing: -.025em; }
h1 { margin: 0 0 20px; font-size: clamp(44px, 7vw, 88px); }
h2 { margin: 0 0 18px; font-size: clamp(32px, 4vw, 52px); }
.hero p { max-width: 68ch; margin: 0; font-size: clamp(17px, 2vw, 21px); }
main { width: min(1120px, calc(100% - 40px)); margin: auto; padding: 72px 0; }
section { padding: 54px 0; border-bottom: 1px solid var(--line); }
section:first-child { padding-top: 0; }
p, li { max-width: 72ch; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { padding: 28px 0; border-top: 2px solid var(--gold); }
.card h3 { margin: 0 0 10px; font: 500 25px/1.15 Georgia, serif; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}
.button.primary { background: var(--ink); color: #fff; }
.note { padding: 22px; background: #f5efe3; border-radius: 14px; }
nav.guides { display: flex; flex-wrap: wrap; gap: 10px 24px; }
footer { padding: 32px max(20px, calc((100% - 1120px)/2)); border-top: 1px solid var(--line); color: var(--muted); }
@media (max-width: 720px) {
  header { min-height: 66vh; }
  .grid { grid-template-columns: 1fr; gap: 10px; }
  main { padding: 48px 0; }
  section { padding: 40px 0; }
}