/* ===== Legal pages (Terms, Privacy, Cookies) ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.legal-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.legal-page__updated {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 2rem;
}
.legal-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.legal-body p {
  margin: 0 0 1rem;
}
.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2rem 0 0.75rem;
}
.legal-body h2:first-of-type {
  margin-top: 1.5rem;
}
.legal-body a {
  color: #c41e3a;
  text-decoration: underline;
}
.legal-body a:hover {
  opacity: 0.85;
}
.legal-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.legal-footer a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
}
.legal-footer a:hover {
  color: #c41e3a;
}

/* ===== Cookie consent modal (bar) ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1rem 1.5rem;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #eee;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-consent--hidden {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-consent__text {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}
.cookie-consent__text a {
  color: #c41e3a;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-consent__text a:hover {
  opacity: 0.9;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-consent__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  padding: 0.5rem 0;
}
.cookie-consent__link:hover {
  color: #c41e3a;
}
.cookie-consent__btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cookie-consent__btn--accept {
  background: #c41e3a;
  color: #fff;
}
.cookie-consent__btn--accept:hover {
  background: #a01830;
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-consent__text {
    min-width: 0;
  }
  .cookie-consent__actions {
    justify-content: center;
  }
}

/* ===== Site footer (dark) ===== */
.site-footer {
  margin-top: auto;
  padding: 2.5rem 1.5rem 2.5rem;
  background: #1a1a1a;
  border-top: 4px solid #f4c430;
  color: #ccc;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.site-footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: #fff;
}
.site-footer__logo .logo__mark {
  position: relative;
  display: inline-block;
}
.site-footer__logo .logo__red-lines {
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(calc(-50% + 6px));
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #e63946;
  font-weight: 700;
}
.site-footer__logo .logo__word {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.site-footer__logo .logo__sk {
  font-size: 1.05rem;
}
.site-footer__logo .logo__roof-line {
  display: block;
  width: 56px;
  height: 4px;
  background: #e63946;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  margin: 0.2rem 0 0.25rem;
}
.site-footer__logo .logo__tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #999;
}
.site-footer__disclaimer {
  font-size: 0.72rem;
  line-height: 1.6;
  color: #999;
  margin: 0 0 1.5rem;
  max-width: 820px;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.site-footer__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__nav a:hover {
  color: #f4c430;
}
.site-footer__legal {
  margin-bottom: 1rem;
}
.site-footer__legal a {
  font-size: 0.82rem;
  color: #aaa;
  text-decoration: none;
  margin-right: 1.25rem;
  transition: color 0.2s;
}
.site-footer__legal a:hover {
  color: #f4c430;
}
.site-footer__contact {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0 0 0.5rem;
}
.site-footer__contact a {
  color: #f4c430;
  text-decoration: none;
  font-weight: 600;
}
.site-footer__contact a:hover {
  text-decoration: underline;
}
.site-footer__copy {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #777;
}
.site-footer__copy a {
  color: inherit;
  text-decoration: none;
}
