:root {
  --ink: #131313;
  --paper: #ffffff;
  --paper-alt: #f6f4f1;
  --rule: #d9d4cd;
  --brand: #fea31c;
  --brand-deep: #8a5300;
  --black: #000000;
  --body: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
  --display: 'Poppins', 'Open Sans', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}
img { max-width: 100%; height: auto; }
a { color: var(--ink); }
a:hover, a:focus { color: var(--brand-deep); }
:focus-visible { outline: 3px solid var(--brand-deep); outline-offset: 2px; }
h1, h2, h3 { font-family: var(--body); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4vw, 2.3rem); font-weight: 700; margin: 0 0 1.2rem; letter-spacing: .01em; }
h2 { font-size: clamp(1.3rem, 2.6vw, 1.55rem); font-weight: 700; margin: 0 0 .8rem; }
p { margin: 0 0 1rem; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-alt { background: var(--paper-alt); }
.eyebrow { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: #5a534a; margin: 0 0 .4rem; }
.lede { max-width: 72ch; font-size: 1.05rem; }
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2rem; font-size: 1.15rem; letter-spacing: .06em; }

.ext-note {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--black); color: #fff; padding: 12px 20px; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

.site-header { background: var(--brand); }
.nav-bar { max-width: 1100px; margin: 0 auto; padding: 0 12px; }
.nav-list, .nav-fallback { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.nav-list a, .nav-fallback a {
  display: block; padding: 14px 16px; min-height: 48px;
  font-size: .95rem; letter-spacing: .04em; font-weight: 600;
  color: var(--black); text-decoration: none;
}
.nav-list a { display: flex; align-items: center; gap: 7px; }
.nav-icon { flex: none; }
.nav-list a:hover, .nav-list a:focus, .nav-fallback a:hover {
  background: var(--black); color: #fff;
}
.nav-list .is-current > a { background: var(--black); color: #fff; }
.nav-toggle {
  display: none; align-items: center; gap: 10px;
  background: transparent; border: 0; color: var(--black);
  font-family: var(--body); font-size: 1rem; font-weight: 700; letter-spacing: .06em;
  padding: 14px 12px; min-height: 48px; cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 24px; height: 2px; background: var(--black); content: '';
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -7px; }
.nav-toggle-bars::after { position: absolute; top: 7px; }
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-list { display: none; flex-direction: column; border-top: 2px solid var(--black); }
  .nav-list.is-open { display: flex; }
  .nav-list li + li { border-top: 1px solid rgba(0,0,0,.25); }
}

.hero {
  position: relative;
  background: var(--black) url('../images/slide3.jpg') center center / cover no-repeat;
  border-bottom: 5px solid var(--brand);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.15) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto;
  padding: 380px 24px 48px;
  text-align: center;
}
.hero-logo { display: block; }
.hero-logo img { display: block; width: 100%; max-width: 800px; margin: 0 auto; }
.hero-title {
  margin: 22px 0 10px; color: #fff;
  font-size: clamp(1.5rem, 3.4vw, 2rem); font-weight: 700; letter-spacing: .02em;
}
.hero-tagline {
  margin: 0 auto; max-width: 72ch; color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}
@media (max-width: 800px) { .hero-inner { padding-top: 180px; } }

.page-banner {
  background-color: var(--black);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 5px solid var(--brand);
  padding: 90px 24px;
  text-align: center;
}
.page-banner-logo img { width: 100%; max-width: 620px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; gap: 28px; } }

.callout {
  border-left: 5px solid var(--brand);
  padding: 2px 0 2px 22px;
}
.callout + .callout { margin-top: 28px; }
.callout > :last-child { margin-bottom: 0; }

.fair-panel {
  background: var(--brand);
  color: var(--black);
  padding: 36px 32px;
}
.fair-title { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 400; margin-bottom: .6rem; }
.fair-when { font-weight: 700; font-size: 1.15rem; }
.fair-free { font-weight: 700; letter-spacing: .06em; }
.fair-note { font-size: .95rem; }
.fair-panel > :last-child { margin-bottom: 0; }

.people, .resource-list { list-style: none; margin: 0; padding: 0; }
.people li + li, .resource-list li + li { margin-top: 28px; }
.person-name { font-weight: 700; font-size: 1.15rem; margin-bottom: .15rem; }
.person-role { margin: 0; }
.resource-list a { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.resource-list a:hover, .resource-list a:focus { color: var(--brand-deep); }

.bullets { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.bullets li { margin-bottom: .6rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px;
  background: var(--black); color: #fff;
  font-family: var(--display); font-size: 1rem; letter-spacing: .02em;
  text-decoration: none; border-radius: 4px;
}
.btn:hover, .btn:focus { background: var(--brand); color: var(--black); }
.btn-lg { padding: 14px 28px; }

.fb-embed { max-width: 500px; margin-bottom: 1rem; }
.fb-embed iframe { width: 100%; height: 360px; }

.site-footer { background: var(--black); color: #fff; padding: 40px 0 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; text-align: center; }
.site-footer a { color: #fff; }
.site-footer a:hover, .site-footer a:focus { color: var(--brand); }
.footer-address { font-size: 1rem; margin-bottom: 1.5rem; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 1.5rem; }
.footer-actions .btn { background: #1c1c1c; border: 1px solid #3a3a3a; }
.footer-actions .btn:hover, .footer-actions .btn:focus { background: var(--brand); color: var(--black); }
.footer-legal { font-size: .95rem; margin: 0; }

.sched-hd { margin-top: 56px; }
.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li + li { margin-top: 22px; }
.sched-date { font-weight: 700; margin: 0 0 .1rem; }
.sched-topic { margin: 0; }
.sched-by { color: #5a534a; }
.sched-foot { margin-top: 28px; font-size: .95rem; color: #5a534a; }
.fine-print { font-size: .9rem; color: #5a534a; }
h3 { font-size: 1.1rem; margin: 0 0 .6rem; }

.attend-through { margin-bottom: 0; }
.attend-tools { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; margin: 40px 0 8px; }
.attend-search { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.attend-search label { font-weight: 700; font-size: .95rem; }
.attend-search input {
  font: inherit; padding: 11px 14px; min-height: 48px; min-width: 300px;
  border: 2px solid var(--rule); background: #fff; color: var(--ink); border-radius: 3px;
}
.attend-search input:focus { border-color: var(--brand-deep); }
.attend-print { margin: 0; }
.attend-count { font-size: .95rem; color: #5a534a; margin: 0 0 14px; }
.attend-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.attend-table th, .attend-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--rule); }
.attend-table thead th { border-bottom: 3px solid var(--brand); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.attend-table tbody th { font-weight: 400; }
.attend-table td { text-align: right; width: 8em; font-variant-numeric: tabular-nums; font-weight: 700; }
.attend-table tbody tr:nth-child(even) { background: var(--paper-alt); }
.attend-note { margin-top: 28px; font-size: .95rem; color: #5a534a; max-width: 72ch; }
@media (max-width: 560px) {
  .attend-search input { min-width: 0; width: 100%; }
  .attend-search { width: 100%; }
}

@media print {
  .site-header, .page-banner, .site-footer, .skip-link, .attend-tools, .attend-count { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .section { padding: 0; }
  .wrap { max-width: none; padding: 0; }
  h1 { font-size: 20pt; }
  .callout { border-left: 3pt solid #000; }
  .attend-table { font-size: 10pt; }
  .attend-table th, .attend-table td { padding: 4pt 6pt; }
  .attend-table thead { display: table-header-group; }
  .attend-table tr { break-inside: avoid; }
  .attend-table tbody tr:nth-child(even) { background: #f2f2f2; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a[href]::after { content: ''; }
}

.fb-embed { max-width: 500px; margin: 0; }
.fb-embed iframe { width: 100%; height: 360px; }

.about-center { text-align: center; }
.about-center .lede { margin-left: auto; margin-right: auto; }
