/* Footer + cookie banner */

.site-foot {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 56px 0 32px;
  margin-top: 80px;
}

.site-foot a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}

.site-foot a:hover {
  border-bottom-color: var(--terracotta);
  color: var(--paper);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.foot-col h4 {
  font-family: var(--font-tag);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  margin: 0 0 16px;
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.foot-brand .site-logo-mark {
  color: var(--paper);
  font-size: 26px;
}

.foot-brand p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.72);
  max-width: 36ch;
  margin: 14px 0 0;
}

.foot-contact p {
  margin: 0 0 8px;
  font-size: 15px;
  color: rgba(250, 247, 242, 0.85);
}

.foot-bar {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.6);
  align-items: center;
  justify-content: space-between;
}

.foot-bar a {
  color: rgba(250, 247, 242, 0.78);
}

@media (min-width: 720px) {
  .foot-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* Cookie banner - bottom-right card, no center modal, no backdrop */
.notice-cookies {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 90;
  border-radius: var(--radius-s);
  max-width: 460px;
  font-size: 14px;
  color: var(--ink);
  animation: notice-cookies-slide 0.4s ease;
}

@keyframes notice-cookies-slide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.notice-cookies-text {
  margin: 0 0 14px;
  line-height: 1.5;
}

.notice-cookies-text a {
  color: var(--forest);
}

.notice-cookies-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice-cookies-actions button {
  flex: 1 1 auto;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--forest);
  min-height: 44px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.notice-cookies-actions button[data-cc='accept'] {
  background: var(--forest);
  color: var(--paper);
}

.notice-cookies-actions button[data-cc='accept']:hover {
  background: var(--forest-deep);
}

.notice-cookies-actions button[data-cc='reject'] {
  background: var(--paper);
  color: var(--forest-deep);
}

.notice-cookies-actions button[data-cc='reject']:hover {
  background: var(--paper-warm);
}

@media (min-width: 540px) {
  .notice-cookies {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
}
