:root {
  --st-bg: #e7e5e5;
  --st-ink: #111111;
  --st-paper: #ffffff;
  --st-red: #b10b0b;
  --st-green: #1c5e3a;
  --st-ochre: #b87524;
  --st-blue: #27446f;
  --st-accent: var(--st-red);
  --st-hair: rgba(17, 17, 17, 0.18);
  --st-grid: rgba(17, 17, 17, 0.07);
  --st-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  --st-sidebar: 64px;
  --st-elementor-max: 1600px;
  --st-elementor-inline-space: clamp(72px, 8vw, 168px);
  --st-section-space: clamp(68px, 6vw, 112px);
  --st-label-ink: rgba(17, 17, 17, 0.68);
  --st-display: "Instrument Serif", "Newsreader", Georgia, serif;
  --st-sans: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --st-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html {
  background: var(--st-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--st-bg);
  color: var(--st-ink);
  font-family: var(--st-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--st-accent);
  color: #ffffff;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: calc(var(--st-sidebar) + 16px);
  top: 16px;
  z-index: 200;
  background: var(--st-ink);
  color: var(--st-bg);
  padding: 10px 14px;
}

.display {
  font-family: var(--st-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.mono,
.st-kicker,
.st-fact-label,
.st-chip,
.st-button,
.st-page-meta,
.st-card-meta,
.side-rail,
.page-topbar,
.st-mobile-menu {
  font-family: var(--st-mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.gridlines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, var(--st-grid) 1px, transparent 1px);
  background-position-x: var(--st-sidebar);
  background-size: calc((100% - var(--st-sidebar)) / 12) 100%;
  opacity: 0.6;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-left: var(--st-sidebar);
}

.stage--elementor-header {
  padding-left: 0;
}

.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: var(--st-sidebar);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
  background: color-mix(in srgb, var(--st-bg) 98%, transparent);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 9px;
}

.side-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.side-logo__mark {
  width: 21px;
  height: 21px;
  border-radius: 50% 50% 45% 45%;
  background: var(--st-accent);
  position: relative;
}

.side-logo__mark::before,
.side-logo__mark::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
}

.side-logo__mark::before {
  width: 3px;
  height: 3px;
  left: 8px;
  top: 9px;
  box-shadow: 7px 3px 0 #ffffff, 2px 8px 0 #ffffff, 9px 10px 0 #ffffff;
}

.side-logo__mark::after {
  width: 10px;
  height: 4px;
  left: 7px;
  top: -3px;
  background: var(--st-green);
  transform: rotate(-18deg);
}

.side-logo__word,
.side-meta {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-logo__word {
  font-size: 10px;
  opacity: 0.82;
}

.side-meta {
  color: rgba(17, 17, 17, 0.52);
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--st-ink);
  opacity: 0.5;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.side-nav a[aria-current="page"],
.side-nav a:hover {
  color: var(--st-accent);
  opacity: 1;
  transform: translateX(1px);
}

.side-nav__code {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-nav__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.7;
}

.side-nav a[aria-current="page"] .side-nav__dot,
.side-nav a:hover .side-nav__dot {
  width: 5px;
  height: 5px;
  opacity: 1;
}

.side-tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: flex;
  position: absolute;
  top: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--st-hair);
  background: var(--st-bg);
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--st-ink);
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.page-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--st-sidebar);
  z-index: 60;
  height: 44px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: color-mix(in srgb, var(--st-bg) 96%, transparent);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 9px;
}

.topbar-center {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar-right {
  justify-self: end;
  color: rgba(17, 17, 17, 0.72);
}

.live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--st-accent);
  margin-right: 7px;
}

.st-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--st-bg);
  transform: translateX(-105%);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 360ms;
  padding: 24px 6vw 32px calc(var(--st-sidebar) + 6vw);
  display: flex;
  flex-direction: column;
}

.menu-open .st-mobile-menu {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.st-mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.st-mobile-menu__head button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--st-hair);
  background: transparent;
}

.st-mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.st-mobile-menu a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--st-hair);
  padding: 16px 0;
}

.st-mobile-menu .display {
  font-size: 2.4rem;
}

.st-wrap {
  width: min(1560px, calc(100% - clamp(72px, 8vw, 168px)));
  margin-inline: auto;
}

.st-section {
  padding: 96px 0;
  border-top: 1px solid var(--st-hair);
}

.st-section--compact {
  padding: 68px 0;
}

.st-section--dark {
  background: var(--st-ink);
  color: var(--st-bg);
}

.st-kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--st-label-ink);
  font-size: 11px;
  margin-bottom: 18px;
}

.st-section--dark .st-kicker,
.site-footer .st-kicker {
  color: rgba(231, 229, 229, 0.62);
}

.st-kicker span:first-child {
  color: var(--st-accent);
}

.st-page-meta {
  padding: 72px 6vw 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--st-label-ink);
  font-size: 10px;
}

.st-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--st-hair);
}

.st-hero--home {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 96px;
}

.st-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 56px;
  align-items: end;
}

.st-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: 7.5rem;
}

.st-hero--home h1 {
  font-size: 8.5rem;
}

.st-hero__accent {
  color: var(--st-accent);
  font-style: italic;
}

.st-hero__lede {
  margin: 24px 0 0;
  max-width: 54ch;
  font-size: 1.1rem;
  color: rgba(17, 17, 17, 0.76);
}

.st-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.st-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--st-ink);
  background: transparent;
  color: var(--st-ink);
  box-shadow: 0 0 0 rgba(17, 17, 17, 0);
  font-size: 11px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.st-button--primary {
  background: var(--st-accent);
  border-color: var(--st-accent);
  color: #ffffff;
}

.st-button--light {
  background: #ffffff;
  color: var(--st-ink);
  border-color: #ffffff;
}

.st-button:hover {
  background: var(--st-ink);
  border-color: var(--st-ink);
  color: var(--st-bg);
  box-shadow: 5px 5px 0 rgba(177, 11, 11, 0.22);
  transform: translate(-1px, -1px);
}

.st-media-plate {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #181412;
  box-shadow: var(--st-shadow);
  isolation: isolate;
}

.st-media-plate--detail {
  margin-top: 34px;
  min-height: clamp(300px, 46vw, 640px);
}

.st-media-plate--contain {
  background: #f7f4f1;
}

.st-media-plate::before,
.st-media-plate::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.st-media-plate::before {
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 55%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.18), transparent 30%);
}

.st-media-plate--contain::before {
  background: linear-gradient(to top, rgba(17, 17, 17, 0.18), transparent 48%);
}

.st-media-plate::after {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.st-media-plate--contain::after {
  border-color: rgba(17, 17, 17, 0.2);
}

.st-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.st-media-img--cover {
  object-fit: cover;
}

.st-media-img--contain {
  object-fit: contain;
  padding: clamp(12px, 2vw, 28px);
  background: #ffffff;
  filter: none;
}

.st-media-plate__caption {
  position: absolute;
  z-index: 4;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
}

.st-media-plate--contain .st-media-plate__caption {
  color: var(--st-ink);
}

.st-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--st-ink);
  border-bottom: 1px solid var(--st-hair);
}

.st-fact {
  padding: 24px 22px;
  border-right: 1px solid var(--st-hair);
}

.st-fact:last-child {
  border-right: 0;
}

.st-fact-value {
  font-family: var(--st-display);
  font-size: 3.1rem;
  line-height: 0.95;
  font-style: italic;
  color: var(--st-accent);
}

.st-fact-label {
  margin-top: 10px;
  font-size: 10px;
  color: var(--st-label-ink);
}

.st-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: start;
}

.st-copy-large {
  margin: 0;
  font-family: var(--st-display);
  font-size: 3rem;
  line-height: 1.16;
}

.st-copy-large i,
.st-copy-large em {
  color: var(--st-accent);
}

.st-body-copy {
  color: rgba(17, 17, 17, 0.76);
}

.st-body-copy > :first-child {
  margin-top: 0;
}

.st-grid {
  display: grid;
  gap: 24px;
}

.st-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.st-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.st-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.st-card {
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-top-color: var(--st-ink);
  padding: 20px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.st-card:hover {
  background: rgba(255, 255, 255, 0.36);
  border-color: var(--st-hair);
  border-top-color: var(--st-ink);
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.06);
  transform: translateY(-2px);
}

.st-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f7f4f1;
  border: 1px solid rgba(17, 17, 17, 0.1);
  margin-bottom: 18px;
}

.st-card__media img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 420ms ease;
}

.st-card:hover .st-card__media img {
  transform: scale(1.04);
}

.st-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.16), transparent 62%);
}

.st-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  color: var(--st-label-ink);
  margin-bottom: 12px;
}

.st-card h2,
.st-card h3 {
  margin: 0;
  font-size: 2rem;
}

.st-card p {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.72);
}

.st-card__cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--st-accent);
  font-size: 11px;
}

.st-card--solid {
  background: var(--st-paper);
  border: 1px solid var(--st-hair);
  padding: 28px;
}

.st-card--event {
  min-height: 360px;
}

.st-card--event .st-card__media {
  aspect-ratio: 4 / 3;
}

.st-card--video .st-card__media {
  background: #0f0f0f;
}

.st-card--video .st-card__media img {
  object-fit: cover;
  filter: none;
}

.st-video-card__badge {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  background: #ffffff;
  color: var(--st-ink);
  font-size: 10px;
  text-transform: uppercase;
}

.st-video-card__badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--st-accent);
}

.st-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--st-hair);
  padding: 7px 12px;
  font-size: 10px;
  background: transparent;
}

.st-chip[aria-current="page"],
.st-chip:hover {
  background: var(--st-ink);
  color: var(--st-bg);
  border-color: var(--st-ink);
}

.st-table {
  width: 100%;
  border-collapse: collapse;
}

.st-table th,
.st-table td {
  padding: 18px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--st-hair);
}

.st-table th {
  font-family: var(--st-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.st-table .display {
  font-size: 1.55rem;
}

.st-single-hero {
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--st-hair);
}

.st-single-hero__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 10px;
}

.st-single-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: 7rem;
}

.st-single-hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 44px;
  align-items: start;
}

.st-single-facts {
  margin: 6px 0 0;
  border-top: 1px solid var(--st-hair);
}

.st-single-facts div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--st-hair);
}

.st-single-facts dt {
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--st-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.st-single-facts dd {
  margin: 0;
}

.st-content {
  font-size: 1.08rem;
  line-height: 1.75;
}

.st-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: start;
}

.st-detail-body--single {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.st-content > * {
  max-width: 760px;
}

.st-content .alignwide {
  max-width: 1120px;
}

.st-content .alignfull {
  max-width: none;
  width: calc(100vw - var(--st-sidebar));
  margin-left: 50%;
  transform: translateX(-50%);
}

.st-content h2,
.st-content h3 {
  font-family: var(--st-display);
  font-weight: 400;
  line-height: 1.06;
}

.st-content h2 {
  font-size: 3rem;
  margin-top: 56px;
}

.st-content h3 {
  font-size: 2.2rem;
  margin-top: 42px;
}

.st-content blockquote {
  margin: 48px 0;
  padding-left: 24px;
  border-left: 3px solid var(--st-accent);
  font-family: var(--st-display);
  font-size: 2.5rem;
  line-height: 1.18;
  font-style: italic;
}

.st-video-shell {
  aspect-ratio: 16 / 9;
  background: var(--st-ink);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.st-video-shell iframe,
.st-video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
}

.st-video-shell--featured {
  margin-top: 34px;
  border: 1px solid var(--st-ink);
  box-shadow: 10px 10px 0 var(--st-accent);
}

.st-video-placeholder {
  color: #ffffff;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

.st-video-placeholder img {
  width: 100%;
  height: 100%;
}

.st-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.st-roster {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--st-ink);
  border-left: 1px solid var(--st-ink);
}

.st-roster a,
.st-roster div {
  min-height: 118px;
  border-right: 1px solid var(--st-ink);
  border-bottom: 1px solid var(--st-ink);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.24);
}

.st-roster .display {
  font-size: 1.35rem;
  line-height: 1.08;
}

.st-cta {
  background: var(--st-accent);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.st-cta::after {
  content: "S";
  position: absolute;
  right: -20px;
  bottom: -82px;
  font-family: var(--st-display);
  font-size: 28rem;
  line-height: 0.8;
  opacity: 0.11;
}

.st-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  max-width: 12ch;
  font-size: 5.7rem;
}

.st-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.st-detail-cta {
  padding: 72px 0;
  border-top: 1px solid rgba(231, 229, 229, 0.16);
  background: var(--st-ink);
  color: var(--st-bg);
}

.st-detail-cta .st-kicker {
  color: rgba(231, 229, 229, 0.62);
}

.st-detail-cta h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.st-detail-cta p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(231, 229, 229, 0.72);
}

.st-detail-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.st-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.st-detail-cta .st-button:not(.st-button--primary) {
  border-color: rgba(231, 229, 229, 0.64);
  color: var(--st-bg);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding-left: var(--st-sidebar);
  background: var(--st-ink);
  color: var(--st-bg);
}

.site-footer--no-rail {
  padding-left: 0;
}

.site-footer__inner {
  width: min(1560px, calc(100% - clamp(72px, 8vw, 168px)));
  margin-inline: auto;
  padding: 78px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 70px;
}

.site-footer__brand {
  font-family: var(--st-display);
  font-size: 6rem;
  line-height: 0.88;
  font-style: italic;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 16px;
}

.site-footer a {
  opacity: 0.84;
}

.site-footer a:hover {
  color: #ffffff;
  opacity: 1;
}

.site-footer__word {
  border-top: 1px solid rgba(231, 229, 229, 0.2);
  padding-top: 24px;
  font-family: var(--st-display);
  font-size: 16rem;
  line-height: 0.78;
  white-space: nowrap;
  overflow: hidden;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(231, 229, 229, 0.55);
  font-size: 10px;
}

.wp-block-image img,
.wp-caption img {
  height: auto;
}

.st-elementor-content {
  position: relative;
  z-index: 2;
  min-height: 60vh;
}

.st-elementor-content--full {
  width: 100%;
}

.elementor-page .st-elementor-content {
  background: var(--st-bg);
}

.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
  width: min(calc(100% - var(--st-elementor-inline-space)), var(--st-elementor-max)) !important;
  max-width: var(--st-elementor-max) !important;
}

.elementor-page .elementor-section.elementor-top-section {
  padding-block: var(--st-section-space);
  border-top: 1px solid var(--st-hair);
}

.elementor-page .elementor-section.elementor-top-section:first-child {
  padding-top: clamp(72px, 5.6vw, 100px);
  padding-bottom: clamp(42px, 4.4vw, 74px);
  border-top: 0;
}

.home .elementor-section[data-id="20c7399"],
.page-id-9 .elementor-section[data-id="20c7399"] {
  padding-top: 0;
}

.home .elementor-section[data-id="44827bd"],
.page-id-9 .elementor-section[data-id="44827bd"] {
  padding-top: clamp(76px, 5.8vw, 104px);
  padding-bottom: clamp(32px, 3.8vw, 58px);
}

.home .elementor-section[data-id="44827bd"] > .elementor-container,
.page-id-9 .elementor-section[data-id="44827bd"] > .elementor-container {
  align-items: center;
  min-height: clamp(540px, calc(100vh - 172px), 700px);
}

.elementor .st-el-section {
  position: relative;
  z-index: 2;
  padding: var(--st-section-space) 0;
}

.elementor .st-el-section > .elementor-container {
  width: min(calc(100% - var(--st-elementor-inline-space)), var(--st-elementor-max));
  max-width: var(--st-elementor-max);
  gap: clamp(32px, 4vw, 72px);
}

.elementor .st-home-projects-section {
  padding-top: clamp(28px, 3vw, 52px);
}

.elementor .st-home-projects-section .elementor-column,
.elementor .st-home-projects-section .elementor-widget-shortcode,
.elementor .st-home-projects-section .elementor-widget-container,
.elementor .st-home-project-grid {
  width: 100%;
}

.elementor .st-el-hero {
  min-height: clamp(560px, calc(100vh - 132px), 760px);
  display: flex;
  align-items: center;
}

.elementor .st-el-section--paper {
  background: color-mix(in srgb, var(--st-paper) 74%, transparent);
}

.elementor .st-el-section--dark,
.elementor .st-el-cta {
  background: var(--st-ink);
  color: var(--st-bg);
}

.elementor .st-el-display .elementor-heading-title {
  font-family: var(--st-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  color: inherit;
  font-size: clamp(3rem, 6.2vw, 6rem);
}

.elementor .st-el-display--hero .elementor-heading-title {
  font-size: clamp(4.4rem, 8vw, 7.3rem);
  line-height: 0.9;
}

.elementor .st-el-display--cta .elementor-heading-title {
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.82;
}

.elementor .st-el-kicker {
  margin-bottom: 20px;
}

.elementor .st-el-kicker p,
.elementor .st-el-kicker .elementor-widget-container {
  margin: 0;
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: color-mix(in srgb, currentColor 76%, transparent);
}

.elementor .st-el-lede,
.elementor .st-el-body {
  color: color-mix(in srgb, currentColor 76%, transparent);
}

.elementor .st-el-lede p,
.elementor .st-el-body p {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.elementor .st-el-body p {
  font-size: 1rem;
}

.elementor .st-el-button {
  display: inline-flex;
  width: auto;
  margin: 10px 10px 0 0;
  vertical-align: top;
}

.elementor .st-el-button .elementor-button {
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--st-ink);
  font-family: var(--st-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  min-height: 48px;
  min-width: 148px;
  padding: 14px 22px;
  line-height: 1;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.elementor .st-el-button .elementor-button:hover {
  background: var(--st-ink);
  color: var(--st-bg);
  box-shadow: 5px 5px 0 rgba(177, 11, 11, 0.22);
  transform: translate(-1px, -1px);
}

.elementor .st-el-button--primary .elementor-button {
  border-color: var(--st-red);
  background: var(--st-red);
  color: #ffffff;
}

.elementor .st-el-button--light .elementor-button,
.elementor .st-el-section--dark .st-el-button .elementor-button,
.elementor .st-el-cta .st-el-button .elementor-button {
  border-color: var(--st-bg);
  color: var(--st-bg);
}

.elementor .st-el-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--st-red);
  border: 1px solid var(--st-ink);
  border-radius: 0;
  box-shadow: 14px 14px 0 rgba(177, 11, 11, 0.16), var(--st-shadow);
}

.home .elementor-section[data-id="44827bd"] .st-el-image-card img,
.page-id-9 .elementor-section[data-id="44827bd"] .st-el-image-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.9) contrast(1.06);
  box-shadow: 10px 10px 0 rgba(177, 11, 11, 0.16), 0 26px 72px rgba(17, 17, 17, 0.18);
}

.elementor .st-el-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--st-hair);
  border-bottom: 1px solid var(--st-hair);
}

.elementor .st-el-facts span {
  display: block;
  padding: 18px 16px;
  border-right: 1px solid var(--st-hair);
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.elementor .st-el-facts span:last-child {
  border-right: 0;
}

.elementor .st-el-facts strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--st-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--st-accent);
}

.elementor .st-el-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin: 34px 0;
}

.elementor .st-el-card-grid article,
.elementor .st-el-card-grid .st-web-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-top-color: var(--st-ink);
  background: rgba(255, 255, 255, 0.38);
}

.elementor .st-el-card-grid .st-web-card {
  display: grid;
  gap: 14px;
  color: var(--st-ink);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.elementor .st-el-card-grid .st-web-card:hover {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--st-ink);
  transform: translateY(-2px);
}

.elementor .st-el-card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.72);
}

.elementor .st-el-card-grid h3 {
  margin: 0 0 20px;
  font-family: var(--st-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--st-ink);
}

.elementor .st-el-card-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
}

.st-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.elementor .st-el-card-grid--contact {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.elementor .st-el-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.elementor .st-el-roster--wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.elementor .st-el-roster span {
  min-height: 86px;
  padding: 18px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  font-family: var(--st-display);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 0.95;
}

.elementor .st-el-partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--st-ink);
  border-left: 1px solid var(--st-ink);
  margin: 34px 0 10px;
}

.elementor .st-el-partner-logo {
  min-width: 0;
  min-height: 178px;
  padding: 16px;
  border-right: 1px solid var(--st-ink);
  border-bottom: 1px solid var(--st-ink);
  background: rgba(255, 255, 255, 0.32);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  justify-items: stretch;
  color: var(--st-ink);
  transition: background 180ms ease, transform 180ms ease;
}

.elementor .st-el-partner-logo:hover {
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.elementor .st-el-partner-logo img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

@media (max-width: 1279px) and (min-width: 901px) {
  .elementor .st-el-partner-logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.elementor .st-el-partner-logo span {
  font-family: var(--st-mono);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--st-label-ink);
}

.st-roster__logo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  margin-bottom: 14px;
  background: #f5f2ed;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.st-partner-logo-plate {
  background: #f5f2ed;
  border: 1px solid var(--st-ink);
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 36px;
}

.st-partner-logo {
  width: min(100%, 360px);
  max-height: 300px;
  object-fit: contain;
}

.st-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.st-contact-form label {
  display: grid;
  gap: 8px;
  font-family: var(--st-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.st-contact-form input,
.st-contact-form select,
.st-contact-form textarea {
  width: 100%;
  border: 1px solid var(--st-ink);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--st-ink);
  font: 1rem var(--st-sans);
  padding: 14px 16px;
}

.st-contact-form__wide,
.st-contact-form button,
.st-form-status {
  grid-column: 1 / -1;
}

.st-contact-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.st-form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--st-ink);
  background: #ffffff;
}

.st-form-status--success {
  border-color: #1f7a3f;
}

.st-form-status--error {
  border-color: var(--st-accent);
}

@media (min-width: 901px) {
  .page-id-10 .st-el-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
  }

  .page-id-10 .st-el-card-grid article,
  .page-id-10 .st-el-card-grid .st-web-card {
    min-height: 260px;
    padding: 24px;
  }

  .page-id-10 .st-el-card-grid h3 {
    font-size: clamp(2rem, 2.4vw, 2.65rem);
    line-height: 1;
  }

  .home .st-el-section:has(.st-el-partner-logos) .st-el-display .elementor-heading-title,
  .page-id-9 .st-el-section:has(.st-el-partner-logos) .st-el-display .elementor-heading-title {
    max-width: 13ch;
    font-size: clamp(4.4rem, 6vw, 6.4rem);
  }

  .page-id-12 .st-el-hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: clamp(84px, 7vw, 118px);
  }

  .page-id-12 .st-el-hero > .elementor-container {
    align-items: flex-start;
  }

  .page-id-12 .st-el-display--hero .elementor-heading-title {
    font-size: clamp(4.5rem, 7vw, 7rem);
  }

  .page-id-12 .st-contact-form {
    margin-top: 44px;
    padding: 28px;
    border: 1px solid var(--st-ink);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 10px 10px 0 rgba(177, 11, 11, 0.16);
  }

  .page-id-12 .st-el-card-grid--contact article,
  .page-id-12 .st-el-card-grid--contact .st-web-card {
    min-height: 0;
    padding: 22px;
  }
}

@media (min-width: 1100px) {
  :root {
    --st-elementor-max: 1780px;
    --st-elementor-inline-space: clamp(80px, 7vw, 180px);
  }

  .page-id-12 .elementor-section:has(.st-contact-form) {
    min-height: auto;
    padding: clamp(86px, 7vw, 118px) 0;
  }

  .page-id-12 .elementor-section:has(.st-contact-form) > .elementor-container {
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(620px, 1.22fr);
    align-items: start;
    gap: clamp(44px, 5vw, 76px);
    width: min(calc(100% - 10vw), 1320px);
    max-width: 1320px;
  }

  .page-id-12 .elementor-section:has(.st-contact-form) > .elementor-container > .elementor-column {
    width: auto !important;
  }

  .page-id-12 .elementor-section:has(.st-contact-form) > .elementor-container > .elementor-column:first-child > .elementor-widget-wrap {
    position: sticky;
    top: 64px;
    align-content: start;
  }

  .page-id-12 .st-contact-form {
    margin-top: 0;
    padding: 32px;
  }

  .page-id-12 .st-el-card-grid--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
  }

  .page-id-12 .st-el-card-grid--contact article {
    overflow-wrap: anywhere;
  }

  .page-id-12 .st-el-card-grid--contact h3 {
    font-size: clamp(1.8rem, 2.2vw, 2.45rem);
  }
}

@media (min-width: 901px) and (max-width: 1099px) {
  .page-id-12 .st-contact-form {
    grid-template-columns: 1fr;
  }
}

.st-video-embed {
  margin-bottom: 28px;
}

.st-video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.elementor .st-el-cta {
  text-align: center;
}

.elementor .st-el-cta > .elementor-container {
  justify-content: center;
}

.elementor-editor-active .gridlines,
.elementor-editor-active .grain {
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.st-section--dark .st-card {
  border-top-color: rgba(231, 229, 229, 0.55);
}

.st-section--dark .st-card-meta,
.st-section--dark .st-card p {
  color: rgba(231, 229, 229, 0.72);
}

.st-section--dark .st-card h2,
.st-section--dark .st-card h3 {
  color: var(--st-bg);
}

@media (max-width: 1180px) {
  .st-hero h1,
  .st-hero--home h1,
  .st-single-hero h1 {
    font-size: 5.4rem;
  }

  .st-grid--4,
  .st-roster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .st-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --st-sidebar: 0px;
    --st-elementor-max: 720px;
    --st-elementor-inline-space: 10vw;
  }

  .page-topbar {
    display: none;
  }

  .gridlines {
    background-position-x: 0;
    background-size: calc(100% / 6) 100%;
  }

  .side-rail {
    inset: 0 0 auto 0;
    width: 100%;
    height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--st-hair);
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 14px;
  }

  .side-logo {
    min-height: 44px;
    flex-direction: row;
    gap: 9px;
    margin-top: 0;
  }

  .side-logo__word,
  .side-meta {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .side-nav,
  .side-tools {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: static;
    flex: 0 0 44px;
    margin-left: auto;
    transform: none;
  }

  .st-wrap,
  .site-footer__inner {
    width: min(100% - 10vw, 720px);
  }

  .st-hero,
  .st-single-hero {
    padding: 56px 0;
  }

  .st-hero__grid,
  .st-single-hero__grid,
  .st-detail-body,
  .st-detail-body--single,
  .st-detail-cta__inner,
  .st-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .st-hero h1,
  .st-hero--home h1,
  .st-single-hero h1 {
    font-size: 4rem;
    max-width: none;
  }

  .st-single-hero__top a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .st-single-hero .st-media-plate,
  .st-single-hero .st-video-shell {
    margin-top: 28px;
  }

  .st-copy-large,
  .st-content h2 {
    font-size: 2.35rem;
  }

  .st-facts,
  .st-grid--2,
  .st-grid--3,
  .st-grid--4 {
    grid-template-columns: 1fr;
  }

  .st-fact {
    border-right: 0;
    border-bottom: 1px solid var(--st-hair);
  }

  .st-media-plate {
    min-height: 280px;
  }

  .st-media-plate--detail {
    min-height: 260px;
  }

  .st-detail-actions {
    justify-content: flex-start;
  }

  .st-detail-cta {
    padding: 58px 0;
  }

  .st-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-roster a,
  .st-roster div {
    min-height: 148px;
    padding: 14px 10px;
  }

  .st-roster__logo {
    padding: 12px;
    margin-bottom: 10px;
  }

  .st-partner-logo-plate {
    min-height: 260px;
    padding: 24px;
  }

  .st-contact-form {
    grid-template-columns: 1fr;
  }

  .stage {
    padding-top: 56px;
    padding-left: 0;
  }

  .site-footer {
    padding-left: 0;
  }

  .stage.stage--elementor-header,
  .site-footer.site-footer--no-rail {
    padding-top: 0;
    padding-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    font-size: 4rem;
  }

  .site-footer__word {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
    line-height: 0.95;
    white-space: normal;
    overflow: visible;
    overflow-wrap: anywhere;
  }

  .elementor .st-el-section > .elementor-container {
    width: min(100% - 10vw, 720px);
    max-width: 720px;
  }

  .home .elementor-section[data-id="44827bd"],
  .page-id-9 .elementor-section[data-id="44827bd"] {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .home .elementor-section[data-id="44827bd"] > .elementor-container,
  .page-id-9 .elementor-section[data-id="44827bd"] > .elementor-container {
    min-height: auto;
    gap: 28px;
  }

  .home .elementor-section[data-id="44827bd"] .st-el-image-card img,
  .page-id-9 .elementor-section[data-id="44827bd"] .st-el-image-card img {
    aspect-ratio: 4 / 3;
    object-position: center;
    box-shadow: 8px 8px 0 rgba(177, 11, 11, 0.14), 0 18px 48px rgba(17, 17, 17, 0.14);
  }

  .elementor .st-el-card-grid,
  .elementor .st-el-roster--wide {
    grid-template-columns: 1fr;
  }

  .elementor .st-el-partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elementor .st-el-partner-logo {
    min-height: 150px;
    padding: 12px;
  }

  .elementor .st-el-partner-logo img {
    height: 86px;
    padding: 10px;
  }

  .page-id-12 .st-el-hero .st-el-col:last-child {
    display: flex;
    flex-direction: column;
  }

  .page-id-12 .st-el-hero .st-el-col:last-child .elementor-widget-shortcode {
    order: 1;
  }

  .page-id-12 .st-el-hero .st-el-col:last-child .st-el-card-grid--contact {
    order: 2;
  }

  .page-id-12 .elementor-widget-wrap:has(.st-el-card-grid--contact),
  .page-id-12 .elementor-element-36fe9d3 > .elementor-widget-wrap {
    display: flex;
    flex-direction: column;
  }

  .page-id-12 .elementor-widget-wrap:has(.st-el-card-grid--contact) > .elementor-widget-shortcode,
  .page-id-12 .elementor-element-36fe9d3 > .elementor-widget-wrap > .elementor-widget-shortcode {
    order: 1;
    margin-bottom: 24px;
  }

  .page-id-12 .elementor-widget-wrap:has(.st-el-card-grid--contact) > .elementor-widget-text-editor,
  .page-id-12 .elementor-element-36fe9d3 > .elementor-widget-wrap > .elementor-widget-text-editor {
    order: 2;
  }

  .single-st_video .st-section {
    padding-top: 32px;
  }

  .page-id-11 .st-el-hero,
  .page-id-13 .st-el-hero,
  .page-id-139 .st-el-hero,
  .page-id-140 .st-el-hero,
  .page-id-141 .st-el-hero {
    min-height: auto;
  }

  .page-id-13 .st-el-image-card img,
  .page-id-140 .st-el-image-card img,
  .page-id-141 .st-el-image-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background: var(--st-ink);
  }

  .elementor .st-el-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .st-hero h1,
  .st-hero--home h1,
  .st-single-hero h1 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .st-single-hero__top {
    margin-bottom: 24px;
  }

  .single-st_project .st-single-hero h1,
  .single-st_event .st-single-hero h1,
  .single-st_partner .st-single-hero h1,
  .single-st_video .st-single-hero h1 {
    font-size: 2.28rem;
    line-height: 1;
  }

  .st-single-hero__grid {
    gap: 28px;
  }

  .st-single-facts div {
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }

  .st-detail-cta h2 {
    font-size: 2.65rem;
  }

  .st-media-img--contain {
    padding: 10px;
  }

  .st-section {
    padding: 56px 0;
  }

  .elementor .st-el-section {
    padding: 56px 0;
  }

  .elementor .st-home-projects-section {
    padding-top: 0;
  }

  .elementor .st-el-display--hero .elementor-heading-title,
  .elementor .st-el-display .elementor-heading-title {
    font-size: 2.55rem;
    line-height: 0.94;
  }

  .home .elementor-section[data-id="44827bd"] .st-el-display--hero .elementor-heading-title,
  .page-id-9 .elementor-section[data-id="44827bd"] .st-el-display--hero .elementor-heading-title {
    font-size: clamp(3.15rem, 15.5vw, 4rem);
    line-height: 0.9;
  }

  .elementor .st-el-button {
    margin: 8px 8px 0 0;
  }

  .elementor .st-el-button .elementor-button {
    min-width: 136px;
    min-height: 46px;
    padding: 13px 18px;
  }

  .elementor .st-el-display:not(.st-el-display--hero) .elementor-heading-title {
    font-size: 2.25rem;
  }

  .page-id-10 .st-el-display--hero .elementor-heading-title {
    max-width: 11ch;
    font-size: 2.25rem;
    line-height: 1;
  }

  .elementor .st-el-facts,
  .elementor .st-el-roster:not(.st-el-roster--wide) {
    grid-template-columns: 1fr;
  }

  .page-id-139 .st-el-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page-id-139 .st-el-card-grid article,
  .page-id-139 .st-el-card-grid .st-web-card {
    min-height: 0;
    padding: 14px 10px;
  }

  .page-id-139 .st-el-card-grid img {
    max-height: 92px;
    object-fit: contain;
  }

  .page-id-139 .st-el-card-grid h3 {
    font-size: 1.1rem;
    line-height: 1.05;
  }

  .site-footer__brand {
    font-size: 3.35rem;
    overflow-wrap: anywhere;
  }

  .site-footer__word {
    font-size: clamp(2.8rem, 17vw, 4rem);
    letter-spacing: 0;
  }

  .st-page-meta {
    padding: 52px 5vw 0;
    flex-direction: column;
  }

  .st-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-roster .display {
    font-size: 1.05rem;
  }

  .st-card--event .st-card__media {
    background: #ffffff;
  }

  .st-card--event .st-card__media img {
    object-fit: contain;
    padding: 8px;
  }

  .st-card--event .st-card__media::after {
    display: none;
  }

  .st-mobile-menu {
    padding: 18px 5vw 32px;
  }

  .st-mobile-menu .display {
    font-size: 2rem;
  }

  .st-mobile-menu a {
    min-height: 54px;
    align-items: center;
  }
}
