:root{
  --brand: #3f4446; 
  --wood-cta: #753d1d;
  --wood-cta-hover: #9E6432;
  --bg: #FFFFFF;
  --text: #1E1412;
  --white: #FFFFFF;

  --radius: 14px;
}
html, body{
  overflow-x: hidden;
  overflow-y: visible; /* ili bez overflow-y */
}
*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: var(--brand); }
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(184,115,51,.85);
  outline-offset: 2px;
  border-radius: 10px;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 8px; }

.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  border: 0;
}

.btn--wood{
  background: var(--wood);
  color: var(--white);
}
.btn--wood:hover{ background: var(--wood-dark); }
/* ========== FOOTER (BASE) ========== */
.site-footer{
  background: var(--brand);
  color: var(--white);
  margin-top: 54px;
}

.site-footer__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 16px;
  display: grid;
  gap: 32px;
}

.site-footer__brandLink{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo{
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
}

.site-footer__tagline{
  margin: 12px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer__nav .site-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li:not(:last-child){
  margin-bottom: 10px;
}

.site-footer a{
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover{
  text-decoration: underline;
}

.site-footer__info p{
  margin: 0 0 8px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

.site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.16);
  padding: 14px 16px;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
}

/* Desktop layout */
@media (min-width: 900px){
  .site-footer__inner{
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }

  .site-footer__nav{
    justify-self: center;
  }

  .site-footer__info{
    justify-self: end;
    text-align: right;
  }

  .site-footer__logo{
    width: 112px;
    height: 112px;
  }
}
.page{
  padding: 48px 16px;
}

.page-header{
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.page-lead{
  font-size: 1.2rem;
  color: #6b6f73;
}

.page-section{
  max-width: 760px;
  margin: 0 auto 36px;
}

.page-section h2{
  margin-bottom: 12px;
}