/* ============================================================
   HEKLA — Bannière cookies + Page cookies
   ============================================================ */

/* ── Bannière ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-grey-300);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cookie-banner__text a:hover {
  color: var(--c-orange);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cookie-banner__btn--accept {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
}
.cookie-banner__btn--accept:hover {
  background: #d94e12;
  border-color: #d94e12;
}

.cookie-banner__btn--refuse {
  background: transparent;
  color: var(--c-grey-300);
  border-color: #444;
}
.cookie-banner__btn--refuse:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}

/* ── Page cookies ─────────────────────────────────────────── */
.cookies-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.cookies-page__eyebrow {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  margin-bottom: 24px;
}

.cookies-page__title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--c-black);
  margin-bottom: 56px;
}

.cookies-page__updated {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-grey-500);
  margin-bottom: 56px;
}

.cookies-block {
  border-top: 1px solid var(--c-grey-100);
  padding-top: 40px;
  margin-bottom: 48px;
}

.cookies-block__title {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-black);
  margin-bottom: 16px;
}

.cookies-block__body {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-grey-800);
}

.cookies-block__body + .cookies-block__body {
  margin-top: 12px;
}

.cookies-block__body a {
  color: var(--c-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookies-block__body a:hover { color: var(--c-orange); }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-family: var(--f-sans);
  font-size: 0.8rem;
}

.cookies-table th {
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  font-weight: 400;
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid var(--c-grey-100);
}

.cookies-table td {
  padding: 14px 16px 14px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--c-grey-100);
  color: var(--c-grey-800);
  line-height: 1.6;
  font-weight: 300;
}

.cookies-table td:first-child {
  font-weight: 400;
  color: var(--c-black);
  white-space: nowrap;
}

.cookies-page__contact {
  background: var(--c-grey-100);
  padding: 32px 40px;
  margin-top: 64px;
}

.cookies-page__contact p {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-grey-800);
}

.cookies-page__contact a {
  color: var(--c-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
  .cookies-page { padding: 100px 24px 80px; }
  .cookies-page__contact { padding: 24px; }
  .cookies-table { font-size: 0.75rem; }
}
