/* footer + cookie banner (notice-cookies) */

.foot {
  background: var(--graphite);
  color: var(--oat-soft);
  padding: 72px 0 32px;
  font-size: 0.92rem;
}
.foot a {
  color: var(--oat-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.foot a:hover {
  color: var(--paper);
  border-bottom-color: var(--terracotta);
}
.foot .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .foot .grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}
.foot .brand h2 {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--paper);
  font-size: 1.6rem;
  margin: 0 0 12px;
}
.foot .brand p { color: var(--oat); max-width: 36ch; margin: 0 0 16px; }
.foot h4 {
  color: var(--paper);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 10px; }
.foot .bot {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 120, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--mist);
}
.foot .bot .legal a { margin-left: 14px; }

/* Cookie banner — notice-cookies — bottom-right card, no backdrop */
.notice-cookies {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  max-width: 380px;
  background: var(--paper);
  color: var(--graphite);
  border: 1px solid var(--graphite);
  padding: 22px 22px 20px;
  box-shadow: 0 18px 36px rgba(35, 32, 29, 0.16);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.notice-cookies[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}
.notice-cookies .title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--graphite);
}
.notice-cookies .text {
  margin: 0 0 18px;
  line-height: 1.55;
  color: var(--mist);
}
.notice-cookies .text a {
  color: var(--terracotta-deep);
  text-decoration: underline;
}
.notice-cookies .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.notice-cookies button {
  flex: 1 1 auto;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  padding: 10px 16px;
  background: var(--graphite);
  color: var(--paper);
  border: 1px solid var(--graphite);
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
}
.notice-cookies button.minor {
  background: transparent;
  color: var(--graphite);
}
.notice-cookies button:hover { background: var(--terracotta-deep); color: var(--paper); border-color: var(--terracotta-deep); }
.notice-cookies button.minor:hover { background: var(--graphite); color: var(--paper); border-color: var(--graphite); }

@media (max-width: 520px) {
  .notice-cookies { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* IO reveal */
.r-up { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.r-up.is-in { opacity: 1; transform: translateY(0); }
