:root {
  color-scheme: light;
  --sand: #f3e9dc;
  --cream: #fbf5ec;
  --ink: #4a3f35;
  --muted: #756657;
  --clay: #9b7056;
  --line: #dfd1c1;
  --focus: #5c725e;
}

* { box-sizing: border-box; }

html { background: var(--sand); }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: #4f6753; text-underline-offset: 0.18em; }
a:hover { color: #344b38; }
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.55rem 0.8rem;
  z-index: 10;
}
.skip-link:focus { top: 1rem; }

.site-header,
.site-footer,
main {
  width: min(100% - 2.5rem, 960px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 1.35rem;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.01em; }
.brand-subtitle { color: var(--muted); font-family: Arial, sans-serif; font-size: 0.76rem; margin-top: 0.4rem; }

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.site-nav a,
.footer-links a { font-family: Arial, sans-serif; font-size: 0.9rem; }

.panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 12px 32px rgba(74, 63, 53, 0.07);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  margin: 0.75rem 0 2rem;
}

.eyebrow {
  color: var(--clay);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

h1, h2 { line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 1rem; }
h2 { font-size: 1.35rem; margin: 2.2rem 0 0.5rem; }
p { margin: 0.5rem 0 1rem; }

.lede { color: var(--muted); font-size: 1.14rem; max-width: 45rem; }
.last-updated { color: var(--muted); font-family: Arial, sans-serif; font-size: 0.84rem; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.link-card {
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink);
  display: block;
  padding: 1.25rem;
  text-decoration: none;
}
.link-card:hover { border-color: var(--clay); color: var(--ink); }
.link-card strong { display: block; font-size: 1.1rem; margin-bottom: 0.3rem; }
.link-card span { color: var(--muted); font-family: Arial, sans-serif; font-size: 0.9rem; line-height: 1.45; }

.contact-address {
  background: #fffaf3;
  border-radius: 0.8rem;
  display: inline-block;
  font-family: Arial, sans-serif;
  padding: 0.75rem 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(117, 102, 87, 0.25);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  padding: 1.5rem 0 2.5rem;
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; gap: 0.9rem; }
  .site-header { padding-top: 1.4rem; }
  .link-grid { grid-template-columns: 1fr; }
}
