:root {
  --ink: #202225;
  --muted: #686e70;
  --paper: #fffdf8;
  --aqua: #dff3ee;
  --aqua-deep: #9dd7cd;
  --orange: #b45b32;
  --orange-dark: #9f4b2c;
  --line: #d6dedb;
  --shadow: 0 12px 35px rgb(33 47 45 / 11%);
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange-dark); text-underline-offset: .18em; }
a:hover { color: var(--orange); }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 1rem;
  padding: .75rem 1rem;
  color: white;
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }

.social-links {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-right: auto;
}
.social-links a {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  color: #f1e9e4;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.social-links a:hover { color: white; background: rgb(255 255 255 / 13%); }
.brand { display: block; background: #d6f2ef; }
.brand img { width: 100%; max-height: 380px; object-fit: cover; }

.site-nav { position: relative; z-index: 20; background: var(--orange); box-shadow: 0 2px 8px rgb(0 0 0 / 12%); }
.nav-inner { display: flex; min-height: 56px; align-items: center; }
.site-nav ul { margin: 0; padding: 0; list-style: none; }
.site-nav > .shell > ul,
#primary-menu { display: flex; align-items: stretch; }
#primary-menu > li > a,
#primary-menu > li > button {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: .7rem 1rem;
  border: 0;
  color: #f7f0eb;
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
#primary-menu > li > a:hover,
#primary-menu > li > button:hover { background: rgb(124 43 18 / 18%); }
.has-submenu { position: relative; }
.has-submenu > ul {
  position: absolute;
  display: none;
  width: 290px;
  padding: .45rem 0;
  background: white;
  box-shadow: var(--shadow);
}
.has-submenu:hover > ul,
.has-submenu > button[aria-expanded="true"] + ul { display: block; }
.has-submenu li a { display: block; padding: .55rem 1rem; color: var(--ink); text-decoration: none; }
.has-submenu li a:hover { background: var(--aqua); }
.menu-toggle { display: none; }

h1, h2, h3 { margin: 0 0 .6em; font-family: var(--serif); line-height: 1.12; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 7vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--orange-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.page-header { max-width: 850px; padding: clamp(3.5rem, 8vw, 7rem) 0 2rem; }
.lede { max-width: 680px; color: var(--muted); font-size: 1.15rem; }
.content-page { padding-bottom: 6rem; }
.prose { max-width: 820px; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol, .prose blockquote { margin: 0 0 1.25em; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose iframe { width: 100%; max-width: 100%; border: 0; }
.prose table { width: 100%; border-collapse: collapse; }
.prose td, .prose th { padding: .65rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose blockquote { margin-left: 0; padding: 1rem 1.4rem; border-left: 5px solid var(--orange); background: #fff7ef; }
.prose img { margin: 1.5rem auto; }

.home-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.home-intro { padding-top: clamp(4.5rem, 9vw, 8rem); }
.section-tint { background: var(--aqua); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -.4rem; }
.section-heading h1, .section-heading h2 { margin: 0; }
.text-link { font-weight: 800; text-decoration-thickness: 2px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
.card-grid-four { grid-template-columns: repeat(4, 1fr); }
.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card-image { aspect-ratio: 1 / 1; overflow: hidden; background: #e7eeeb; }
.card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .25s ease; }
.card-image:hover img { transform: scale(1.025); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 1.2rem; }
.card-body h2 { font-size: 1.35rem; }
.card-body h2 a { color: var(--ink); text-decoration: none; }
.card-body h2 a:hover { color: var(--orange-dark); }
.card-body p { color: var(--muted); font-size: .92rem; }
.card-body .text-link { margin-top: auto; }
.card-meta { margin: 0 0 .6rem; color: var(--orange-dark) !important; font-size: .72rem !important; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.about-band { padding: clamp(4rem, 9vw, 8rem) 0; color: white; background: #252b2d; }
.about-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 8vw, 7rem); }
.about-band .eyebrow { color: var(--aqua-deep); }
.about-band .prose { font-size: 1.1rem; }
.button {
  display: inline-block;
  padding: .72rem 1rem;
  color: white;
  background: var(--orange);
  font-weight: 800;
  text-decoration: none;
}
.button:hover { color: white; background: var(--orange-dark); }

.archive-page { padding-bottom: 6rem; }
.archive-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.archive-list .card { display: grid; grid-template-columns: minmax(150px, 36%) 1fr; }
.archive-list .card:not(:has(.card-image)) { grid-template-columns: 1fr; }
.archive-list .card-image { aspect-ratio: auto; min-height: 240px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 1.5rem; padding: 3rem 0 0; }

.article-page { padding: clamp(3rem, 7vw, 6rem) 0 7rem; }
.article-page.has-hero {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.article-hero { width: 100%; max-height: 520px; object-fit: contain; background: #eef2ef; }
.article-header { max-width: 950px; margin-bottom: 2.8rem; }
.article-page.has-hero .article-header { margin-bottom: 0; }
.article-header h1 { font-size: clamp(2.15rem, 4.2vw, 3.65rem); }
.article-meta, .event-date, .event-venue { color: var(--muted); }
.article-body { grid-column: 1 / -1; margin-top: 3rem; font-family: var(--serif); font-size: 18px; white-space: pre-line; }
.article-body h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
.taxonomy { max-width: 820px; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.article-page.has-hero .taxonomy { grid-column: 1 / -1; }
.event-information {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  background: var(--line);
}
.event-information section { padding: 1.5rem; background: white; }
.event-information h2 { font-size: 1.45rem; }
.event-information p { margin-bottom: .8rem; }

.contact-form { display: grid; gap: 1rem; max-width: 650px; padding: 1.5rem; background: var(--aqua); }
.contact-form label { font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .3rem; padding: .7rem; border: 1px solid #9aaba7; background: white; }
.contact-form button { justify-self: start; border: 0; cursor: pointer; }
.integration-note { padding: .8rem 1rem; border-left: 4px solid var(--orange); background: #fff7ef; }

.site-footer { padding: 4rem 0; color: #e8eceb; background: #171b1c; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
.footer-lockup { width: min(260px, 100%); margin-bottom: 1.2rem; background: white; }
.site-footer a { color: var(--aqua-deep); }
.footer-heading { color: white; font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.error-page { min-height: 55vh; padding-top: 6rem; }

@media (max-width: 980px) {
  .card-grid,
  .card-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .archive-list {
    grid-template-columns: 1fr;
  }

  .article-page.has-hero {
    grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
    gap: 2rem;
  }

  .menu-toggle {
    display: block;
    min-height: 56px;
    margin-left: auto;
    border: 0;
    color: white;
    background: transparent;
    font-weight: 800;
  }

  #primary-menu {
    display: none;
    padding-bottom: .7rem;
  }

  #primary-menu.is-open {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    padding-bottom: .7rem;
  }

  #primary-menu > li > a,
  #primary-menu > li > button {
    width: 100%;
    min-height: 44px;
    padding-inline: 0;
  }

  .has-submenu > ul {
    position: static;
    width: auto;
    box-shadow: none;
  }

  .site-nav.menu-open .social-links {
    display: none;
  }

  .site-nav.menu-open .menu-toggle {
    margin-left: auto;
    padding: 0 .5rem;
    font-size: 2rem;
    line-height: 1;
  }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .brand img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .card-grid, .card-grid-four { grid-template-columns: 1fr; }
  .archive-list .card { grid-template-columns: 1fr; }
  .archive-list .card-image { min-height: 210px; }
  .about-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .article-page { padding-top: 2rem; }
  .article-page.has-hero { display: block; }
  .article-page.has-hero .article-hero { max-height: 430px; margin-bottom: 2rem; }
  .article-page.has-hero .article-header { margin-bottom: 2.8rem; }
  .article-body { margin-top: 0; }
  .event-information { grid-template-columns: 1fr; }
  .nav-inner { flex-wrap: wrap; }
  .social-links { min-height: 56px; }
}
