:root {
  --stk-color-dark: #0F212E;
  --stk-color-bright: #FFFFFF;
  --stk-color-accent: #1475E1;
  --stk-color-accent-hover: #2f8bf0;
  --stk-color-bg: #1a2e39;
  --stk-color-text: #FFFFFF;
  --stk-color-muted: #B1BAD3;
  --stk-color-panel: #1A2C38;
  --stk-color-input: #0F1923;
  --stk-color-border: #2F4553;
  --stk-color-live: #00E701;
  --stk-font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --stk-font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --stk-radius: 0.5rem;
  --stk-header-height: 4rem;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--stk-font-body);
  color: var(--stk-color-text);
  background-color: var(--stk-color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============ HEADER ============ */

.stk-header {
  background-color: var(--stk-color-dark);
  border-bottom: 1px solid var(--stk-color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.stk-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  min-height: var(--stk-header-height);
  flex-wrap: nowrap;
}

.stk-logo {
  display: inline-flex;
  align-items: center;
  color: var(--stk-color-bright);
  font-family: var(--stk-font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  max-height: 2.5rem;
}

.stk-logo img {
  max-height: 2.5rem;
  width: auto;
  border-radius: var(--stk-radius);
}

.stk-header__lang {
  flex-shrink: 0;
  margin-left: auto;
}

.stk-header__ctas {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}

/* ============ NAV / BURGER (mandatory, collapse_menu_to_burger = true) ============ */

.stk-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.stk-nav__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.stk-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  cursor: pointer;
  border-radius: var(--stk-radius);
  background-color: var(--stk-color-panel);
  border: 1px solid var(--stk-color-border);
}

.stk-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--stk-color-bright);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* collapse_menu_to_burger = true: ALWAYS show burger, never show inline list at any width */
.stk-nav__list {
  display: flex;
  flex-direction: column;

  position: fixed;
  top: 0;
  left: 0;

  width: 300px;
  max-width: 85vw;
  height: 100vh;

  margin: 0;
  padding: calc(var(--stk-header-height) + 1rem) 0 1rem;

  background-color: var(--stk-color-dark);
  border-right: 1px solid var(--stk-color-border);

  overflow-y: auto;

  transform: translateX(-100%);
  transition: transform .3s ease;

  z-index: 1000;
}

.stk-nav__checkbox:checked ~ .stk-nav__list {
  transform: translateX(0);
}

.stk-nav__item {
  width: 100%;
  border-bottom: 1px solid var(--stk-color-border);
}

.stk-nav__item:last-child {
  border-bottom: none;
}

.stk-nav__link {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--stk-color-muted);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  line-height: 1.5;
}

.stk-nav__link:hover {
  color: var(--stk-color-bright);
  background-color: var(--stk-color-panel);
}

.stk-nav__link--active {
  color: var(--stk-color-bright);
  border-left: 3px solid var(--stk-color-accent);
  background-color: var(--stk-color-panel);
}

.stk-nav__item--has-children > .stk-nav__submenu {
  display: none;
  flex-direction: column;
  background-color: var(--stk-color-input);
  padding-left: 0.5rem;
}

.stk-nav__item--has-children:hover > .stk-nav__submenu,
.stk-nav__item--has-children:focus-within > .stk-nav__submenu {
  display: flex;
}

.stk-nav__submenu .stk-nav__link {
  padding-left: 2rem;
  font-size: 0.9rem;
}

/* keep burger visible at every width per collapse_menu_to_burger=true */
@media (min-width: 768px) {
  .stk-nav__toggle {
    display: flex;
  }
  .stk-nav__list {
    display: none;
  }
  .stk-nav__checkbox:checked ~ .stk-nav__list {
    display: flex;
  }
}

/* ============ LANGUAGE SWITCHER ============ */

.stk-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.stk-lang__item {
  display: inline-flex;
}

.stk-lang__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--stk-color-muted);
  background-color: var(--stk-color-panel);
  border: 1px solid var(--stk-color-border);
  border-radius: var(--stk-radius);
}

.stk-lang__link:hover {
  color: var(--stk-color-bright);
  border-color: var(--stk-color-accent);
}

.stk-lang__link--active {
  color: var(--stk-color-bright);
  background-color: var(--stk-color-accent);
  border-color: var(--stk-color-accent);
}

/* ============ CTA BUTTONS ============ */

.stk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--stk-radius);
  min-height: 44px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: filter 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
}

.stk-cta--primary {
  background-color: var(--stk-color-accent);
  color: var(--stk-color-bright);
}

.stk-cta--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px) scale(1.02);
}

.stk-cta--secondary {
  background-color: transparent;
  color: var(--stk-color-muted);
  border-color: var(--stk-color-border);
}

.stk-cta--secondary:hover {
  color: var(--stk-color-bright);
  border-color: var(--stk-color-accent);
  background-color: var(--stk-color-panel);
}

/* ============ BREADCRUMBS ============ */

.stk-breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.stk-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--stk-color-muted);
}

.stk-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stk-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: var(--stk-color-border);
  margin-left: 0.35rem;
}

.stk-breadcrumbs__link {
  color: var(--stk-color-muted);
}

.stk-breadcrumbs__link:hover {
  color: var(--stk-color-bright);
}

.stk-breadcrumbs [aria-current="page"] {
  color: var(--stk-color-bright);
  font-weight: 600;
}

/* ============ MAIN (chrome-level container only, no content styling) ============ */

.stk-main {
  min-height: 40vh;
  width: 100%;
}

/* ============ FOOTER ============ */

.stk-footer {
  background-color: var(--stk-color-dark);
  border-top: 1px solid var(--stk-color-border);
  margin-top: 2rem;
}

.stk-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stk-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.stk-logo--footer {
  opacity: 0.9;
}

.stk-footer-nav {
  width: 100%;
}

.stk-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.stk-footer-nav__item {
  display: inline-flex;
}

.stk-footer-nav__link {
  font-size: 0.85rem;
  color: var(--stk-color-muted);
}

.stk-footer-nav__link:hover {
  color: var(--stk-color-bright);
}

.stk-footer__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stk-footer__address {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--stk-color-muted);
}

.stk-footer__legal {
  font-size: 0.75rem;
  color: var(--stk-color-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .stk-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .stk-header__inner {
    padding: 0.5rem 1.5rem;
  }
}