.footer__cookie-settings,
.legal-cookie-settings {
  display: block;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.legal-cookie-settings {
  margin-top: 18px;
  color: var(--brass-deep, #75592e);
  font-size: 12px;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(720px, calc(100vw - 48px));
  padding: 24px;
  color: var(--ink, #1b1c1e);
  border: 1px solid var(--line-strong, rgba(27, 28, 30, .28));
  background: var(--paper, var(--bg, #f5f2ec));
  box-shadow: 0 24px 80px -32px rgba(0, 0, 0, .55);
  font-family: var(--font-body, "Manrope", Arial, sans-serif);
}

.cookie-consent .section__kicker {
  margin: 0 0 6px;
  color: var(--brass-dark, var(--brass-deep, #75592e));
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--ink, #1b1c1e);
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.cookie-consent p:not(.section__kicker) {
  max-width: 540px;
  margin: 12px 0 8px;
  color: var(--muted, var(--mute, #6b6860));
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent a {
  color: var(--brass-dark, var(--brass-deep, #75592e));
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.cookie-consent__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ink, #1b1c1e);
  border-radius: 0;
  background: transparent;
  font: 600 11px/1.2 var(--font-body, "Manrope", Arial, sans-serif);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-consent__actions .btn--brass {
  color: #fff;
  border-color: var(--brass, #8a6a39);
  background: var(--brass, #8a6a39);
}

.cookie-consent button:focus-visible,
.cookie-consent a:focus-visible,
.legal-cookie-settings:focus-visible {
  outline: 2px solid var(--brass, #8a6a39);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .cookie-consent {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: auto;
    padding: 20px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .cookie-consent__actions .btn {
    width: 100%;
    min-width: 0;
  }
}
