@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext-v20.woff2") format("woff2");
}

:root {
  --ink: #10120f;
  --navy: #151815;
  --navy-deep: #090a09;
  --paper: #f2f0ea;
  --paper-light: #fbfaf6;
  --panel: #e5e2da;
  --muted: #4f534c;
  --orange: #82ed8d;
  --orange-dark: #276333;
  --line: rgba(16, 18, 15, 0.18);
  --white: #f7f6f1;
  --shell: 1180px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 18, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 15, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
[hidden] { display: none !important; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { color: var(--white); background: var(--navy-deep); font-size: 0.78rem; }
.utility-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-bar p { margin: 0; }
.utility-actions { display: flex; align-items: center; gap: 14px; }
.utility-actions a { font-weight: 800; text-decoration: none; }
.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(130, 237, 141, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 240, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  gap: 3px;
  border: 2px solid var(--navy);
  border-radius: 10px;
  background: var(--navy);
}
.brand-mark span { width: 19px; height: 3px; display: block; border-radius: 3px; background: var(--orange); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1rem; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 0.86rem; font-weight: 800; text-decoration: none; }
.desktop-nav a[aria-current="page"] { color: var(--orange-dark); }
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}
.menu-button { display: none; }

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 128px) 0 clamp(58px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}
.legal-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -150px;
  width: min(520px, 46vw);
  aspect-ratio: 1;
  content: "";
  border: 90px solid rgba(130, 237, 141, 0.10);
  border-radius: 50%;
}
.legal-hero__inner { position: relative; z-index: 1; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--orange); }
h1, h2, h3 { margin-top: 0; line-height: 1.12; text-wrap: balance; }
h1 { max-width: 900px; margin-bottom: 26px; font-size: clamp(2.8rem, 7vw, 6.8rem); letter-spacing: -0.065em; text-transform: uppercase; }
.legal-lead { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px; color: var(--muted); font-size: 0.84rem; font-weight: 700; }

.legal-main { padding: clamp(64px, 9vw, 120px) 0; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(44px, 8vw, 110px); align-items: start; }
.legal-nav {
  position: sticky;
  top: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251, 250, 246, 0.82);
  box-shadow: 0 18px 46px rgba(9, 10, 9, 0.08);
}
.legal-nav strong { display: block; margin-bottom: 14px; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-nav ol { margin: 0; padding: 0; list-style: none; counter-reset: nav; }
.legal-nav li { counter-increment: nav; }
.legal-nav a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid var(--line);
}
.legal-nav li:first-child a { border-top: 0; }
.legal-nav a::before { content: counter(nav, decimal-leading-zero); color: var(--orange-dark); font-size: 0.68rem; }
.legal-nav a:hover { color: var(--ink); }

.legal-article { max-width: 820px; }
.legal-section {
  position: relative;
  padding: 0 0 clamp(42px, 6vw, 70px) 74px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(42px, 6vw, 70px);
}
.legal-section:last-child { margin-bottom: 0; border-bottom: 0; }
.section-number {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.legal-section h2 { margin-bottom: 22px; font-size: clamp(1.45rem, 3vw, 2.15rem); letter-spacing: -0.035em; }
.legal-section h3 { margin: 28px 0 10px; font-size: 1.05rem; }
.legal-section p { margin: 0 0 16px; text-wrap: pretty; }
.legal-section ul, .legal-section ol { margin: 14px 0 18px; padding-left: 22px; }
.legal-section li { margin: 8px 0; }
.legal-section code { overflow-wrap: anywhere; padding: 0.15em 0.36em; border-radius: 5px; background: var(--panel); font-size: 0.9em; }

.info-card {
  margin: 24px 0;
  padding: 24px;
  border-left: 5px solid var(--orange);
  background: var(--paper-light);
  box-shadow: 0 16px 36px rgba(9, 10, 9, 0.07);
}
.info-card p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.contact-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-light);
}
.contact-card span { color: var(--muted); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-card a { font-size: 1.06rem; font-weight: 800; text-decoration: none; }

.cookie-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 0 42px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: var(--navy);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(9, 10, 9, 0.20);
}
.cookie-status__label { margin: 0 0 8px; color: #c6cac2; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.cookie-status h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 2.25rem); }
.cookie-status p { margin: 8px 0 0; color: #e0e4dc; }
.cookie-state-badge {
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.cookie-state-badge[data-state="accepted"] { color: #d7ffe5; border-color: rgba(92, 224, 138, 0.55); }
.cookie-state-badge[data-state="rejected"] { color: #ffd8ca; border-color: rgba(245, 109, 53, 0.7); }

.cookie-category-list { display: grid; gap: 16px; margin: 24px 0; }
.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-light);
}
.cookie-category h3 { margin: 0 0 6px; }
.cookie-category p { margin: 0; color: var(--muted); }
.category-status { padding: 8px 12px; border-radius: 999px; background: var(--panel); font-size: 0.72rem; font-weight: 800; white-space: nowrap; }
.category-status--required { color: var(--navy); }

.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.action-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}
.action-button--primary { color: var(--white); background: var(--navy); }
.action-button--secondary { color: var(--navy); background: transparent; }
.action-button:hover { transform: translateY(-1px); }

.table-scroll { width: 100%; overflow-x: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; min-width: 680px; border-collapse: collapse; background: var(--paper-light); }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); background: var(--panel); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.site-footer { padding: 54px 0 24px; color: var(--white); background: var(--navy-deep); }
.site-footer__top { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr; gap: clamp(28px, 6vw, 82px); }
.brand--footer .brand-mark { border-color: rgba(255,255,255,.7); }
.brand--footer .brand-copy small { color: #c6cac2; }
.footer-brand p { max-width: 330px; margin: 20px 0 0; color: #c6cac2; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-contact > span { margin-bottom: 8px; color: #c6cac2; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-contact > a { font-weight: 800; text-decoration: none; }
.footer-contact > a:first-of-type { font-size: 1.45rem; }
.footer-operator { margin-top: 12px; color: #92988f; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; align-content: start; }
.footer-nav a { color: var(--white); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 48px;
  padding-top: 22px;
  color: #92988f;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.76rem;
}
.site-footer__bottom a { color: inherit; }

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: min(560px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.consent-banner strong { display: block; margin-bottom: 5px; }
.consent-banner p { margin: 0; color: #c6cac2; font-size: 0.83rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.consent-button, .consent-link, .consent-close {
  min-height: 42px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.consent-button { padding: 0 14px; color: var(--navy-deep); background: var(--white); border-radius: 7px; }
.consent-link { padding: 0 10px; color: var(--white); background: transparent; }
.consent-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 400;
  width: min(540px, calc(100% - 40px));
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0,0,0,.32);
  transform: translate(-50%, -50%);
}
.consent-dialog__header { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.consent-dialog h2 { margin: 0; }
.consent-dialog p { color: var(--muted); }
.consent-close { width: 42px; padding: 0; border-radius: 50%; background: var(--panel); font-size: 1.35rem; }

.mobile-contact-bar { display: none; }

@media (max-width: 920px) {
  .desktop-nav, .header-call { display: none; }
  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }
  .menu-button span { width: 18px; height: 2px; display: block; background: var(--navy); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .legal-nav ol { columns: 2; column-gap: 28px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .utility-note, .utility-actions span[aria-hidden="true"], .utility-actions a:first-child { display: none; }
  .utility-bar__inner { justify-content: flex-end; }
  .site-header__inner { min-height: 70px; }
  h1 { font-size: clamp(2.55rem, 16vw, 4.4rem); }
  .legal-hero { padding-top: 52px; }
  .legal-nav ol { columns: 1; }
  .legal-section { padding-left: 0; }
  .section-number { position: static; display: block; margin-bottom: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cookie-status, .cookie-category { grid-template-columns: 1fr; }
  .cookie-state-badge { justify-self: start; }
  .site-footer { padding-bottom: 92px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-nav { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
  .consent-banner { right: 14px; bottom: 78px; width: calc(100% - 28px); grid-template-columns: 1fr; }
  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 250;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: rgba(243,240,232,.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .mobile-contact-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-contact-bar a:first-child { color: var(--white); background: var(--navy); }
  .mobile-contact-bar a:last-child { color: var(--navy); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

.brand-mark span:nth-child(1) { width: 20px; }
.brand-mark span:nth-child(2) { width: 14px; }
.brand-mark span:nth-child(3) { width: 18px; }
