@font-face {
  font-family: Inter;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("inter-cyrillic-wght-normal.de93fdc85e3d.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("inter-latin-wght-normal.260c81a4759b.woff2") format("woff2-variations");
  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;
}

:root {
  color-scheme: light;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --ink: #141414;
  --muted: #686f77;
  --line: #ded9cf;
  --teal: #0b6b68;
  --teal-strong: #084f4d;
  --coral: #df674c;
  --amber: #f3c94c;
  --charcoal: #25282c;
  --focus: #006dff;
  --shadow: 0 18px 42px rgb(35 31 26 / 12%);
  --radius: 12px;
  --content-width: 1180px;
  font-family: Inter, sans-serif;
  font-synthesis: none;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-wrap: break-word;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: var(--teal);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-strong);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--teal);
  border-radius: 9px;
  background: var(--teal);
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  border-color: var(--teal-strong);
  background: var(--teal-strong);
  color: var(--surface);
}

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

h1,
h2 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.25rem, 7vw, 5.25rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  color: var(--surface);
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 14px max(18px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgb(246 244 239 / 94%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 9px;
  background: var(--charcoal);
  color: var(--amber);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-navigation {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.site-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-navigation a:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-shell {
  width: min(100% - 36px, var(--content-width));
  margin-inline: auto;
  padding-block: clamp(32px, 6vw, 76px) 72px;
}

.cookie-notice {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: min(calc(100% - 36px), 720px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  grid-column: 1 / -1;
  margin: 0;
}

.cookie-notice a {
  width: fit-content;
  font-weight: 750;
}

.cookie-notice .button {
  min-width: 44px;
  min-height: 44px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-type {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgb(11 107 104 / 22%);
  border-radius: 999px;
  background: rgb(11 107 104 / 9%);
  color: var(--teal-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: var(--ink);
}

@media (max-width: 760px) {
  .topbar {
    position: relative;
    align-items: flex-start;
    padding-inline: 16px;
  }

  .brand-copy small,
  .site-navigation a span {
    display: none;
  }

  .site-navigation a {
    justify-content: center;
    width: 42px;
    padding-inline: 0;
  }

  .page-shell {
    width: min(100% - 28px, var(--content-width));
  }

  .cookie-notice {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-notice .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand-copy {
    display: none;
  }
}

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

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