:root {
  --ink: #111;
  --muted: #555;
  --gold: #e3b969;
  --gold-dark: #cf9f45;
  --cream: #f9f7f3;
  --line: #e6e1d6;
  --max: 1100px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 20px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; color: #000; padding: 8px 12px; z-index: 10; }

/* Header */
.site-header { background: #000; color: #fff; }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px 28px; padding-block: 10px;
}
.logo img { height: 60px; width: auto; }
.nav { display: flex; flex-wrap: wrap; gap: 4px 24px; margin: 0; padding: 0; list-style: none; }
.nav a {
  text-decoration: none; font-size: 0.95rem; letter-spacing: 0.03em;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-color: var(--gold); }

/* Hero */
.hero { position: relative; color: #fff; background: #000 url("/assets/hero-shelf.jpg") center / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.64); }
.hero .wrap { position: relative; padding-block: 110px 100px; }
.hero .lead { max-width: 660px; font-size: 1.15rem; }
.page-head { background: #000; color: #fff; }
.page-head .wrap { padding-block: 64px 56px; }
.page-head p { color: #ddd; max-width: 640px; margin: 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem;
  font-weight: 600; color: var(--gold); margin-bottom: 0.8em;
}
.alt .eyebrow, section:not(.stats) .eyebrow { color: #9a7427; }
.hero .eyebrow, .page-head .eyebrow, .stats .eyebrow { color: var(--gold); }

.btn {
  display: inline-block; background: var(--gold); color: #000; text-decoration: none;
  font-weight: 600; padding: 12px 26px; border-radius: 2px; margin-top: 0.5em;
}
.btn:hover { background: var(--gold-dark); }

/* Sections */
section { padding-block: 80px; }
.alt { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { width: 100%; }
.split .tall { max-height: 520px; object-fit: cover; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 26px; }
.card p { margin: 0; color: var(--muted); }
.card a { font-weight: 600; word-break: break-word; }

.stats { background: #000; color: #fff; text-align: center; padding-block: 64px; }
.stats .grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stat b {
  display: block; font-family: Georgia, "Times New Roman", serif; font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); line-height: 1.2;
}
.stat span { color: #ddd; }

.team .grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.member img { width: 100%; aspect-ratio: 272 / 300; object-fit: cover; }
.member h3 { margin: 14px 0 2px; }
.member p { margin: 0; color: var(--muted); }

.cta { text-align: center; }
.cta p { color: var(--muted); max-width: 620px; margin-inline: auto; }

/* Footer */
.site-footer { background: #000; color: #ccc; font-size: 0.95rem; }
.site-footer .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px; padding-block: 48px 28px;
}
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 0.4em; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff; }
.site-footer .nav { flex-direction: column; gap: 2px; }
.site-footer .nav a { border: 0; padding: 0; }
.copyright { border-top: 1px solid #222; text-align: center; padding-block: 16px; color: #888; font-size: 0.85rem; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  section { padding-block: 56px; }
  .hero .wrap { padding-block: 72px 64px; }
  .logo img { height: 48px; }
}
