:root {
  --ink: #11141a;
  --ink-soft: #232833;
  --paper: #f2f4f5;
  --paper-raised: #fafbfb;
  --signal: #ff5b38;
  --signal-dark: #c93219;
  --acid: #d9f33d;
  --muted: #626a78;
  --line: #cbd0d7;
  --display: Baskerville, "Iowan Old Style", "Palatino Linotype", serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  --max: 1280px;
  --shadow: 8px 8px 0 var(--ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 20, 26, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 24px;
  font-family: var(--body);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--signal-dark);
}

button,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header,
.site-footer,
main > section,
main > article,
main > nav,
.breadcrumbs,
.calendar-layout {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 2px solid var(--ink);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand > span:not(.brand-mark) {
  font-size: 1.35rem;
}

.brand small {
  color: var(--signal-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 27px;
  height: 22px;
  display: block;
  margin-right: 3px;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--signal);
  stroke: var(--ink);
  stroke-width: 1px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.87rem;
  font-weight: 800;
}

.primary-nav a,
.site-footer nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: var(--paper-raised);
  padding: 7px 12px;
  font-weight: 800;
}

.breadcrumbs {
  padding-block: 24px 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumbs ol {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 7.8vw, 7.8rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.1rem);
}

h3 {
  line-height: 1.15;
}

.eyebrow,
.section-number,
.card-label,
.directory-meta,
.event-kicker {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow,
.section-number {
  color: var(--signal-dark);
}

.hero,
.city-hero,
.page-hero,
.profile-hero {
  padding-block: clamp(60px, 9vw, 128px);
}

.hero--home {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(330px, 0.7fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
  min-height: calc(100vh - 94px);
}

.hero-copy h1 em {
  color: var(--signal-dark);
  font-weight: inherit;
}

.hero-lead,
.page-hero p {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-block;
  padding: 13px 19px;
  border: 2px solid var(--ink);
  background: var(--signal);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
}

.button--dark {
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--signal);
  color: var(--paper-raised);
}

.button--dark:hover {
  color: var(--paper-raised);
}

.text-link {
  font-weight: 850;
}

.next-board {
  transform: rotate(1.5deg);
  border: 2px solid var(--ink);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 2px solid var(--ink);
  background: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.next-board .event-card {
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.next-board .event-card:last-child {
  border-bottom: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--ink);
}

.proof-strip p {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 0;
  padding: 28px;
}

.proof-strip p + p {
  border-left: 1px solid var(--ink);
}

.proof-strip strong {
  font-family: var(--display);
  font-size: 3rem;
}

.proof-strip span {
  max-width: 170px;
  font-size: 0.8rem;
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
  padding-block: 120px;
}

.split-section > div:last-child {
  padding-top: 55px;
  font-size: 1.13rem;
}

.audience-grid,
.local-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--ink);
  margin-bottom: 120px;
}

.audience-grid article,
.local-grid article {
  padding: clamp(32px, 5vw, 72px);
}

.audience-grid article:first-child,
.local-grid article:first-child {
  background: var(--signal);
}

.audience-grid article + article,
.local-grid article + article {
  border-left: 2px solid var(--ink);
  background: var(--acid);
}

.audience-grid h2,
.local-grid h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.city-hero,
.profile-hero,
.page-hero {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
}

.city-stamp {
  min-width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  transform: rotate(4deg);
  border-radius: 50%;
  background: var(--signal);
  text-align: center;
}

.city-stamp span {
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.8;
}

.city-stamp small {
  margin-top: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-nav {
  display: flex;
  border-block: 2px solid var(--ink);
  overflow-x: auto;
}

.section-nav a {
  flex: 1;
  min-width: max-content;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: 850;
}

.section-nav a + a {
  border-left: 1px solid var(--ink);
}

.content-intro,
.event-section {
  padding-block: 90px;
}

.content-intro h2 {
  max-width: 850px;
}

.content-intro > p:last-child {
  max-width: 700px;
  font-size: 1.12rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.page-hero h1,
.profile-hero h1,
.city-hero h1,
.guide h1 {
  font-size: clamp(3.1rem, 7vw, 7rem);
}

.page-hero--calendar,
.page-hero--industry {
  border-bottom: 2px solid var(--ink);
}

.calendar-download {
  min-width: 180px;
  display: grid;
  justify-items: center;
  gap: 5px;
  transform: rotate(2deg);
  padding: 18px;
  border: 2px dashed var(--ink);
  background: var(--acid);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.calendar-download span {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.calendar-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 46px;
  padding-block: 60px 120px;
}

.filter-panel {
  position: sticky;
  top: 20px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 2px solid var(--ink);
  background: var(--paper-raised);
  box-shadow: 5px 5px 0 var(--ink);
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.filter-heading button {
  border: 0;
  background: transparent;
  color: var(--signal-dark);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.filter-panel label {
  display: grid;
  gap: 5px;
  font-size: 0.77rem;
  font-weight: 850;
}

.filter-panel select {
  width: 100%;
  padding: 9px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.filter-result {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}
