/* ==========================================================================
   InfraGard Oregon — main stylesheet
   Palette and typography carried over from the previous Squarespace theme:
     accent blue  hsl(204.4 79.5% 38.2%)  -> #1470af
     light accent hsl(240 10.5% 92.5%)    -> #eaeaee
     display font Anton / body font Inter
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Design tokens -------------------------------------------------------- */

:root {
  /* Brand */
  --blue: #1470af;
  --blue-dark: #0f5686;
  --blue-darker: #0a3f63;
  --blue-pale: #8eb6dc;
  --blue-wash: #eef4fa;

  /* Neutrals */
  --ink: #16181c;
  --ink-2: #3b4249;
  --ink-3: #5d666f;
  --surface: #eaeaee;
  --surface-2: #f5f5f7;
  --white: #fff;
  --rule: #d8d9df;

  /* Type */
  --font-display: 'Anton', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  /* Fluid type scale — min at 360px viewport, max at 1280px */
  --step-xs: clamp(0.8125rem, 0.79rem + 0.11vw, 0.875rem);
  --step-sm: clamp(0.9375rem, 0.92rem + 0.11vw, 1rem);
  --step-base: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  --step-md: clamp(1.125rem, 1.06rem + 0.28vw, 1.3125rem);
  --step-lg: clamp(1.375rem, 1.24rem + 0.6vw, 1.75rem);
  --step-xl: clamp(1.75rem, 1.5rem + 1.1vw, 2.5rem);
  --step-2xl: clamp(2.125rem, 1.7rem + 1.9vw, 3.5rem);
  --step-3xl: clamp(2.5rem, 1.85rem + 2.9vw, 4.5rem);

  /* Space */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --section-y: clamp(3rem, 1.5rem + 6vw, 6rem);

  /* Layout */
  --measure: 68ch;
  --width-narrow: 46rem;
  --width-normal: 64rem;
  --width-wide: 78rem;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 3rem);

  /* Effects */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgb(22 24 28 / 8%), 0 2px 8px rgb(22 24 28 / 6%);
  --shadow-md: 0 2px 4px rgb(22 24 28 / 8%), 0 8px 24px rgb(22 24 28 / 10%);
  --header-h: 4.5rem;
  --focus: 3px solid var(--blue);
}

@media (min-width: 60em) {
  :root {
    --header-h: 5.5rem;
  }
}

/* --- Reset ---------------------------------------------------------------- */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--step-base);
  line-height: 1.65;
  /* Note: no -webkit-font-smoothing override. The macOS "antialiased" setting
     visibly thins strokes; the original site rendered at default weight. */
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

:target {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

/* On dark or blue backgrounds the blue focus ring would be invisible */
.hero :focus-visible,
.cta :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--white);
}

/* --- Typography ----------------------------------------------------------- */

/* Headings match the original Squarespace theme: Anton 400 in the brand blue,
   0.01em tracking. Sections with dark backgrounds override the color below. */
h1,
h2,
h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-2xl);
}

h2 {
  font-size: var(--step-xl);
}

h3 {
  font-size: var(--step-lg);
}

/* h4 is a smaller sub-label set in the body font */
h4 {
  color: var(--ink);
  font-size: var(--step-md);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-wrap: balance;
}

p,
ul,
ol,
dl {
  max-width: var(--measure);
}

p + p,
p + ul,
p + ol,
ul + p,
ol + p {
  margin-top: var(--space-md);
}

h1 + *,
h2 + *,
h3 + * {
  margin-top: var(--space-md);
}

h4 + * {
  margin-top: var(--space-xs);
}

* + h2,
* + h3 {
  margin-top: var(--space-xl);
}

* + h4 {
  margin-top: var(--space-lg);
}

ul,
ol {
  padding-left: 1.25em;
}

li + li {
  margin-top: var(--space-xs);
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--blue-dark);
  text-decoration-thickness: 2px;
}

strong,
b {
  font-weight: 600;
  color: var(--ink);
}

small {
  font-size: var(--step-xs);
}

hr {
  height: 1px;
  margin: var(--space-2xl) 0;
  border: 0;
  background: var(--rule);
}

.eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
  /* --blue-dark, not --blue: this text is small, and on the grey .page-head
     band --blue falls just short of the 4.5:1 WCAG AA contrast minimum */
  color: var(--blue-dark);
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow a {
  color: inherit;
}

.lede {
  max-width: 60ch;
  color: var(--ink-2);
  font-size: var(--step-md);
  line-height: 1.55;
}

/* --- Utilities ------------------------------------------------------------ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 200;
  padding: var(--space-sm) var(--space-md);
  background: var(--blue);
  color: var(--white);
  font-size: var(--step-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transform: translate(-50%, -110%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  color: var(--white);
  transform: translate(-50%, 0);
}

.wrap {
  width: 100%;
  max-width: var(--width-normal);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: var(--width-narrow);
}

.wrap--wide {
  max-width: var(--width-wide);
}

.center {
  text-align: center;
}

.center :is(p, ul, ol, .lede) {
  margin-inline: auto;
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  min-height: 44px;
  max-width: 100%;
  background: var(--blue);
  color: var(--white);
  font-size: var(--step-sm);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  /* Long unbreakable strings (an email address) must not blow out the layout */
  overflow-wrap: anywhere;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--lg {
  padding: 0.9em 2em;
  font-size: var(--step-md);
}

/* Transparent button for use over photography */
.btn--ghost {
  background: transparent;
  border-color: rgb(255 255 255 / 65%);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgb(255 255 255 / 14%);
  border-color: var(--white);
  color: var(--white);
}

/* On a dark or photographic background */
.btn--on-dark {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-darker);
}

.btn--on-dark:hover {
  background: var(--blue-wash);
  border-color: var(--blue-wash);
  color: var(--blue-darker);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.center .btn-row {
  justify-content: center;
}

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
  max-width: var(--width-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--step-md);
  line-height: 1.05;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header-brand:hover {
  color: var(--blue);
}

.site-header-logo {
  width: auto;
  height: 3rem;
  flex-shrink: 0;
}

@media (min-width: 60em) {
  .site-header-logo {
    height: 3.75rem;
  }
}

/* On narrow screens the brand text is hidden visually but stays in the
   accessibility tree, so the home link keeps its name for screen readers
   (the logo image is decorative). */
@media (max-width: 29.99em) {
  .site-header-brand-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

.site-header-brand-text span {
  display: block;
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  background: transparent;
  color: var(--ink);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-toggle-bars {
  position: relative;
  width: 1.125rem;
  height: 2px;
  background: currentcolor;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentcolor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

[aria-expanded='true'] .nav-toggle-bars {
  background: transparent;
}

[aria-expanded='true'] .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

[aria-expanded='true'] .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  max-width: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav-list li + li {
  margin-top: 0;
}

.site-nav-link {
  display: block;
  padding: 0.35rem 0;
  color: var(--ink);
  font-size: var(--step-sm);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue-pale);
}

.site-nav-link[aria-current='page'] {
  color: var(--blue);
  font-weight: 600;
  border-bottom-color: var(--blue);
}

/* Mobile: collapse nav behind the toggle */
@media (max-width: 61.99em) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: var(--space-md) var(--gutter) var(--space-xl);
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
  }

  .site-nav[hidden] {
    display: none;
  }

  .site-nav-list {
    display: block;
    max-width: var(--width-wide);
    margin-inline: auto;
  }

  .site-nav-list li + li {
    border-top: 1px solid var(--rule);
  }

  .site-nav-link {
    padding: 0.9rem 0;
    font-size: var(--step-md);
    border-bottom: 0;
    border-left: 3px solid transparent;
    padding-left: var(--space-sm);
  }

  .site-nav-link[aria-current='page'] {
    border-bottom: 0;
    border-left-color: var(--blue);
  }

  .site-nav .btn {
    width: 100%;
    max-width: var(--width-wide);
    margin: var(--space-lg) auto 0;
  }
}

@media (min-width: 62em) {
  .nav-toggle {
    display: none;
  }

  .site-nav[hidden] {
    display: flex;
  }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(20rem, 14rem + 24vw, 32rem);
  padding-block: var(--section-y);
  background: var(--blue-darker);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgb(6 26 43 / 88%) 0%,
    rgb(6 26 43 / 70%) 45%,
    rgb(6 26 43 / 48%) 100%
  );
}

.hero :is(h1, h2, h3, h4) {
  color: var(--white);
}

.hero p {
  color: rgb(255 255 255 / 88%);
}

.hero-content {
  max-width: 44rem;
}

.hero .eyebrow {
  color: var(--blue-pale);
}

.hero--center {
  text-align: center;
}

.hero--center .hero-content {
  margin-inline: auto;
}

.hero--center::after {
  background: linear-gradient(
    180deg,
    rgb(6 26 43 / 72%) 0%,
    rgb(6 26 43 / 80%) 100%
  );
}

/* Compact hero for interior pages with no photo */
.page-head {
  padding-block: calc(var(--section-y) * 0.7) var(--section-y);
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

/* --- Sections ------------------------------------------------------------- */

.section {
  padding-block: var(--section-y);
}

.section--surface {
  background: var(--surface);
}

.section--wash {
  background: var(--blue-wash);
}

.section--tight {
  padding-block: calc(var(--section-y) * 0.6);
}

.section-head {
  max-width: var(--width-narrow);
  margin-bottom: var(--space-2xl);
}

.center .section-head,
.section-head.center {
  margin-inline: auto;
}

/* --- Prose (long-form body copy) ------------------------------------------ */

.prose > * + * {
  margin-top: var(--space-md);
}

.prose > * + :is(h2, h3) {
  margin-top: var(--space-2xl);
}

.prose > * + h4 {
  margin-top: var(--space-xl);
}

.prose :is(h2, h3, h4) {
  max-width: var(--measure);
}

/* --- Media + text pairing ------------------------------------------------- */

.split {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 48em) {
  .split {
    grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
    gap: var(--space-2xl);
    align-items: center;
  }

  .split--wide-media {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split-body > * {
  max-width: 60ch;
}

/* Signature block under the president's message */
.signature {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 2px solid var(--blue-pale);
  font-size: var(--step-sm);
  line-height: 1.5;
}

.signature strong {
  display: block;
  color: var(--ink);
  font-size: var(--step-base);
}

.signature span {
  display: block;
  color: var(--ink-3);
}

/* --- Cards / grids -------------------------------------------------------- */

.grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  max-width: none;
  padding: 0;
  list-style: none;
}

.grid > li + li {
  margin-top: 0;
}

/* Denser grid for short one-line entries, e.g. the list of all 16 sectors */
.grid--compact {
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  height: 100%;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.card p {
  max-width: none;
  color: var(--ink-3);
  font-size: var(--step-sm);
}

.card h3,
.card h4 {
  max-width: none;
}

/* Whole-card link target */
.card--link {
  position: relative;
}

.card--link:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--link:focus-within {
  outline: var(--focus);
  outline-offset: 2px;
}

.card--link a {
  text-decoration: none;
}

.card--link a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}

.card--link a:focus-visible {
  outline: none;
}

.card-more {
  margin-top: auto;
  padding-top: var(--space-sm);
  color: var(--blue);
  font-size: var(--step-sm);
  font-weight: 600;
}

/* Sector list where only some entries have detail pages */
.card--plain {
  background: var(--surface-2);
  box-shadow: none;
}

.card--plain h3 {
  font-family: var(--font-body);
  font-size: var(--step-base);
  font-weight: 600;
  line-height: 1.35;
}

/* --- Benefit list --------------------------------------------------------- */

.checklist {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  max-width: none;
  padding: 0;
  list-style: none;
}

.checklist > li {
  position: relative;
  margin-top: 0;
  padding-left: 2rem;
  font-size: var(--step-sm);
  line-height: 1.55;
}

.checklist > li::before {
  content: '';
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 1.125rem;
  height: 0.625rem;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}

/* --- Event ---------------------------------------------------------------- */

.event {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 48em) {
  .event {
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
    gap: var(--space-2xl);
    padding: var(--space-2xl);
  }
}

.event-when {
  font-size: var(--step-sm);
}

.event-date {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: var(--step-lg);
  line-height: 1.1;
}

.event-meta {
  display: block;
  margin-top: var(--space-xs);
  color: var(--ink-3);
}

.event-body > * + * {
  margin-top: var(--space-md);
}

.event-body h2,
.event-body h3 {
  max-width: none;
}

.event-body h3 a {
  color: inherit;
  text-decoration: none;
}

.event-body h3 a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.event-list {
  display: grid;
  gap: var(--space-lg);
}

/* Key facts at the top of a single event page */
.event-detail {
  display: grid;
  gap: var(--space-md) var(--space-xl);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  max-width: none;
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.event-detail dt {
  color: var(--ink-3);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-detail dd {
  margin: var(--space-2xs) 0 0;
  color: var(--ink);
  font-size: var(--step-sm);
  font-weight: 500;
}

/* --- Callout / alert ------------------------------------------------------ */

.callout {
  padding: var(--space-lg);
  background: var(--blue-wash);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.callout > * {
  max-width: none;
}

.callout h3,
.callout h4 {
  margin-bottom: var(--space-xs);
}

.callout p {
  font-size: var(--step-sm);
}

/* Full-width call to action band */
.cta {
  padding-block: var(--section-y);
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.cta :is(h1, h2, h3) {
  color: var(--white);
}

.cta p {
  margin-inline: auto;
  color: rgb(255 255 255 / 90%);
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  padding-block: var(--space-3xl) var(--space-xl);
  background: var(--ink);
  color: rgb(255 255 255 / 72%);
  font-size: var(--step-sm);
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgb(255 255 255 / 45%);
}

.site-footer a:hover {
  color: var(--blue-pale);
  text-decoration-color: currentcolor;
}

.site-footer-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  padding-bottom: var(--space-xl);
}

.site-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.site-footer-brand img {
  width: 3.25rem;
  flex-shrink: 0;
}

.site-footer-brand + p {
  margin-top: var(--space-md);
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: var(--space-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--step-md);
  line-height: 1.15;
}

.site-footer ul {
  max-width: none;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: var(--space-xs);
}

.site-footer-alert {
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  background: rgb(255 255 255 / 6%);
  border-left: 3px solid var(--blue-pale);
  border-radius: var(--radius);
  font-size: var(--step-xs);
  line-height: 1.6;
}

.site-footer-alert strong {
  display: block;
  color: var(--white);
  font-size: var(--step-sm);
}

.site-footer-alert p {
  max-width: 80ch;
}

.site-footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgb(255 255 255 / 15%);
  font-size: var(--step-xs);
}

.site-footer-base p {
  max-width: none;
}

.site-footer-social {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  min-height: 44px;
}

.site-footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentcolor;
}

/* --- Print --------------------------------------------------------------- */

@media print {
  .site-header,
  .site-footer-social,
  .nav-toggle,
  .skip-link,
  .btn {
    display: none;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .hero {
    min-height: 0;
    padding-block: 1rem;
    background: none;
    color: #000;
  }

  .hero::after,
  .hero-media {
    display: none;
  }

  .hero :is(h1, h2, h3),
  .hero p {
    color: #000;
  }

  a {
    color: #000;
  }

  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 9pt;
  }
}
