:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: rgba(15,23,42,.65);
  --border: rgba(15,23,42,.12);
}

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

html, body{
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-width: 360px;
}

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

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

button{
  font-family: inherit;
}

main{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

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

.site-footer{
  margin-top: 60px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.footer-columns{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.footer-title{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgba(15,23,42,.95);
}

.footer-text{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.7);
  margin: 0 0 16px;
}

.footer-contact{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-contact a{
  font-size: 14px;
  font-weight: 600;
  color: rgba(15,23,42,.85);
}

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

.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-nav a{
  display: inline-flex;
  width: fit-content;
  font-size: 14px;
  color: rgba(15,23,42,.75);
}

.footer-nav a:hover{
  color: rgba(15,23,42,.95);
  text-decoration: underline;
}

@media (max-width: 768px){
  .footer-columns{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner{
    padding-top: 32px;
  }
}