/* Fallback, falls Vite-CSS fehlt: Seite bleibt lesbar, Logos explodieren nicht. */
:root {
  --gat-paper: #fefcf9;
  --gat-ink: #12263f;
  --gat-coral: #f66c43;
  --gat-card: #ffffff;
  --gat-muted: #4a5563;
  --gat-touch: 2.75rem;
}

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--gat-paper);
  color: var(--gat-ink);
  font-family: Georgia, "Source Serif 4", serif;
  font-size: 1.125rem;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gat-ink);
}

.logo-img,
.logo-img--mark {
  display: block;
  height: 3rem;
  width: auto;
  max-width: min(12rem, 100%);
}

.logo-img--hero {
  display: block;
  width: min(16rem, 100%);
  height: auto;
}

.logo-img--foot {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: min(14rem, 100%);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
}

.nav-desktop {
  display: none;
}

.nav-panel a,
.nav-link,
.footer-link {
  display: flex;
  align-items: center;
  min-height: var(--gat-touch);
  padding: 0.5rem 0.75rem;
}

.page-wrap {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding: 2.5rem 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
}

@media (min-width: 64rem) {
  .nav-drawer {
    display: none;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem 1rem;
  }

  .logo-img,
  .logo-img--mark {
    height: 3.5rem;
  }
}
