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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-min);
  line-height: 1.4;
  color: var(--pawy-text);
  background: #f5f1e6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pawy-blue);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, var(--max-width-wide));
}

/* ── Footer ── */

.site-footer {
  margin-top: auto;
  background: var(--pawy-blue);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0 2rem;
  font-size: var(--font-size-min);
}

.site-footer a {
  color: var(--pawy-yellow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-footer__brand {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 0.5rem;
}

.site-footer__logo {
  width: 120px;
  height: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.site-footer__swiss {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    font-size: 16px;
  }
}
