:root {
  /* BSV Kickers Emden Vereinsfarben (Quelle: kickers.de) */
  --blue: #001f5c;
  --blue-dark: #00184a;
  --blue-deep: #000f30;
  --blue-300: #66749b;
  --yellow: #fdc500;
  --yellow-dark: #e3b100;
  --black: #141520;
  --ink: #141520;
  --ink-2: #25283a;
  --paper: #ffffff;
  --paper-2: #f4f6fa;
  --paper-3: #e7ecf4;
  --muted: #6b7180;
  --line: #d8dde7;
  --alert: #c11414;
  --alert-dark: #9a0000;
  --shadow-sm: 0 4px 14px rgba(0, 31, 92, 0.1);
  --shadow-md: 0 18px 40px rgba(0, 31, 92, 0.2);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtile Papier-/Grain-Textur über dem gesamten Viewport */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  line-height: 1.05;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.015em;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6em;
}

.accent {
  color: var(--yellow);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  display: inline-block;
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(0, 31, 92, 0.55), transparent 65%),
    radial-gradient(ellipse at 80% 80%, rgba(253, 197, 0, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(20, 21, 32, 0.45) 0%, rgba(20, 21, 32, 0.55) 50%, rgba(20, 21, 32, 0.88) 100%);
}

.nav {
  position: relative;
  z-index: 2;
  padding: 22px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}

.nav__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--yellow);
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 2px var(--blue);
  flex-shrink: 0;
}

.nav__logo svg {
  width: 22px;
  height: 20px;
  display: block;
}

.nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__name strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav__name em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__admin {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.15s, border-color 0.15s;
}

.nav__admin:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Burger – mobil sichtbar, desktop versteckt */
.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s, border-color 0.2s;
}

.nav__burger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              opacity 0.2s;
  transform-origin: center;
}

.nav__burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 0 0 80px;
  width: 100%;
}

.hero__content-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero__content-inner .hero__lead {
  margin-left: auto;
  margin-right: auto;
}

.hero__content-inner .hero__cta {
  justify-content: center;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px;
  opacity: 0.94;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
  line-height: 1.5;
}

.hero__lead strong {
  color: var(--yellow);
  font-weight: 700;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero__content p {
  font-size: 1.15rem;
  max-width: 680px;
  opacity: 0.92;
  margin-top: 1em;
  margin-bottom: 1.8em;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__disclaimer {
  margin-top: 32px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--yellow);
  padding-left: 14px;
  max-width: 520px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 31, 92, 0.35);
}

.btn--primary:hover {
  background: var(--blue-dark);
}

.btn--accent {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(253, 197, 0, 0.35);
}

.btn--accent:hover {
  background: var(--yellow-dark);
}

.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}

.hero__cta .btn--ghost {
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.06);
}

.hero__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 0.85rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 0;
}

.section--story {
  background: var(--paper);
}

.section--auctions {
  background: var(--paper-2);
}

.section--how {
  background: var(--ink);
  color: #fff;
}

.section--initiators {
  background: var(--paper-3);
}

.story__highlight {
  margin: 1.6em 0;
  padding: 22px 26px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.05rem;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.story__highlight strong {
  display: block;
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.story__note {
  margin-top: 1.4em;
  padding: 14px 18px;
  background: rgba(253, 197, 0, 0.18);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--ink);
}

.story__note strong {
  color: var(--blue);
}

.initiators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 720px) {
  .initiators {
    grid-template-columns: 1fr;
  }
}

.initiator {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.initiator__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 0 3px var(--blue);
}

.initiator h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--blue);
}

.initiator__role {
  display: inline-block;
  background: var(--blue);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.initiator p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.contact-list__plain {
  font-weight: 600;
  color: var(--ink);
}

.section--how .eyebrow {
  color: var(--yellow);
}

.section--contact {
  background: var(--paper);
}

.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section__lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.section__lead--strong {
  background: rgba(253, 197, 0, 0.16);
  border-left: 3px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.98rem;
  margin-top: 16px;
}

.section__lead--strong strong {
  color: var(--blue);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.facts li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.facts strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  min-width: 64px;
}

.facts span {
  color: var(--muted);
  font-weight: 500;
}

.steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.steps__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.steps p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--paper-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.contact-list span {
  width: 80px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--blue);
}

/* ---------- AUCTIONS ---------- */
.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}

.auction-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.auction-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.auction-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blue-deep), var(--black));
  overflow: hidden;
}

.auction-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.auction-card:hover .auction-card__media img {
  transform: scale(1.04);
}

.auction-card__media-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.auction-card__thumbs {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.auction-card__thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.auction-card__thumb.active {
  border-color: var(--yellow);
}

.auction-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auction-card__badge--ended {
  background: var(--ink);
  color: #fff;
}

.auction-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.auction-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.auction-card__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.auction-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.auction-card__stat span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.auction-card__stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--ink);
}

.auction-card__stat--bid strong {
  color: var(--blue);
}

.auction-card__time {
  font-size: 0.85rem;
  color: var(--muted);
}

.auction-card__time--urgent {
  color: var(--alert);
  font-weight: 700;
}

.auction-card__cta {
  margin-top: 4px;
}

.auction-card__cta .btn {
  width: 100%;
}

.auction-card__bidder {
  font-size: 0.8rem;
  color: var(--muted);
}

.auction-card__bidder strong {
  color: var(--ink);
  font-family: inherit;
  font-size: 0.85rem;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 16, 0.62);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 36px 30px;
  max-width: 560px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: var(--shadow-md);
}

.modal__panel--wide {
  max-width: 920px;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.15s;
}

.modal__close:hover {
  background: var(--paper-2);
}

.modal__sub {
  color: var(--muted);
  margin-bottom: 1.4em;
}

/* ---------- FORMS ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 560px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form label > span {
  letter-spacing: 0.04em;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 31, 92, 0.18);
}

.form__hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.form__notice {
  background: rgba(253, 197, 0, 0.18);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 6px;
}

.form__notice strong {
  display: block;
  color: var(--blue);
  margin-bottom: 2px;
}

.form__error {
  background: #fdecee;
  color: var(--alert-dark);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin: 0;
}

.form__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ---------- ADMIN ---------- */
.admin-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-panel__head h4 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
}

.admin-create {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
}

.admin-create summary {
  cursor: pointer;
  font-weight: 700;
  padding: 4px 0;
}

.admin-create[open] summary {
  margin-bottom: 16px;
}

.admin-auctions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-auction {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--paper);
}

.admin-auction__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.admin-auction__title {
  font-weight: 700;
  font-size: 1.05rem;
}

.admin-auction__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.admin-auction__actions {
  display: flex;
  gap: 8px;
}

.admin-edit {
  margin-top: 14px;
  padding: 18px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 760px) {
  .admin-edit {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.admin-edit__heading {
  margin: 0 0 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--blue);
}

.admin-edit__form,
.admin-edit__upload {
  margin: 0;
}

.admin-edit__upload {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.admin-edit__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}

.admin-edit__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.admin-edit__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-edit__empty {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.admin-bids {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.admin-bids table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-bids th,
.admin-bids td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}

.admin-bids th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.admin-bids tr:last-child td {
  border-bottom: none;
}

.admin-bids__top {
  background: rgba(253, 197, 0, 0.12);
  font-weight: 700;
}

.admin-bids__action {
  width: 32px;
  text-align: center;
}

.admin-bids__del {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--alert);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: inline-grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.admin-bids__del:hover {
  background: var(--alert);
  border-color: var(--alert);
  color: #fff;
}

.btn--danger {
  background: transparent;
  color: var(--alert-dark);
  border: 1.5px solid currentColor;
}

.btn--danger:hover {
  background: var(--alert);
  color: #fff;
  border-color: var(--alert);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 100;
  box-shadow: var(--shadow-md);
  animation: toast-in 0.25s ease-out;
}

.toast--error {
  background: var(--alert-dark);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

/* ========================================================================
   DESIGN POLISH – Editorial Match-Day Poster
   ======================================================================== */

/* ----- Hero refinements ----- */
.hero__kicker {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 6px;
}

.hero__h1-stroke {
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
  text-shadow: 0 6px 28px rgba(253, 197, 0, 0.18);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 22px rgba(253, 197, 0, 0.28);
  border: 1.5px solid rgba(0, 31, 92, 0.15);
}

.hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0, 31, 92, 0.55);
  animation: pulse-dot 1.8s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(0, 31, 92, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(0, 31, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 31, 92, 0); }
}

.hero__overlay {
  background:
    radial-gradient(ellipse at 18% 22%, rgba(0, 31, 92, 0.72), transparent 60%),
    radial-gradient(ellipse at 85% 88%, rgba(253, 197, 0, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(20, 21, 32, 0.55) 0%, rgba(20, 21, 32, 0.5) 45%, rgba(20, 21, 32, 0.92) 100%);
}

.hero__media--fallback {
  background:
    radial-gradient(ellipse at 30% 25%, var(--blue), var(--blue-deep) 60%, var(--black) 100%);
}

.hero__media--fallback video {
  opacity: 0;
}

.hero__content h1 {
  margin-bottom: 0.25em;
}

.hero__content {
  animation: hero-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.05s;
}

.hero__badge,
.hero__kicker,
.hero__content h1 .accent,
.hero__content > p,
.hero__cta,
.hero__disclaimer {
  animation: hero-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero__kicker { animation-delay: 0.12s; }
.hero__content h1 { animation-delay: 0.22s; }
.hero__content > p { animation-delay: 0.36s; }
.hero__cta { animation-delay: 0.46s; }
.hero__disclaimer { animation-delay: 0.6s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__badge,
  .hero__kicker,
  .hero__content,
  .hero__content > p,
  .hero__cta,
  .hero__disclaimer {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__badge-dot,
  .auction-card__badge-dot { animation: none !important; }
}

/* ----- Explainer video (Story-Sektion) ----- */
.explainer {
  margin: 0 0 80px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .explainer {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
}

.explainer__frame {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  background: var(--ink);
  box-shadow:
    0 30px 70px -20px rgba(0, 31, 92, 0.45),
    0 0 0 1px rgba(0, 31, 92, 0.08);
  transform: rotate(-0.6deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.explainer__frame::before {
  content: '';
  position: absolute;
  inset: -10px -10px -14px -10px;
  background: var(--yellow);
  border-radius: 22px;
  z-index: -1;
  transform: rotate(1.4deg);
  opacity: 0.95;
}

.explainer__frame:hover {
  transform: rotate(0deg) translateY(-2px);
}

.explainer__video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.explainer__tape {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 6px 12px 5px;
  border: 1px solid var(--yellow);
  z-index: 2;
  white-space: nowrap;
}

.explainer__tape--tl {
  top: -14px;
  left: 22px;
  transform: rotate(-3deg);
}

.explainer__tape--br {
  bottom: -14px;
  right: 22px;
  transform: rotate(2.5deg);
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--blue);
}

.explainer__caption {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.55;
  max-width: 380px;
}

.explainer__eyebrow {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  position: relative;
  padding-left: 38px;
}

.explainer__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  transform: translateY(-50%);
}

/* ----- Story section polish ----- */
.two-col--story h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.story__h2-accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.story__h2-accent::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0.1em;
  height: 0.32em;
  background: var(--yellow);
  z-index: -1;
  transform: skewX(-12deg);
  opacity: 0.85;
}

.story__highlight {
  position: relative;
  padding: 26px 28px 26px 30px;
  border-radius: 4px;
  background: var(--blue);
  border-left: 6px solid var(--yellow);
  box-shadow: 0 14px 32px -12px rgba(0, 31, 92, 0.5);
}

.story__highlight::before {
  content: '★';
  position: absolute;
  top: -18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  border-radius: 50%;
  transform: rotate(8deg);
  box-shadow: 0 6px 18px rgba(253, 197, 0, 0.4);
}

.story__highlight strong {
  font-size: 2rem;
  letter-spacing: 0.02em;
}

/* ----- Facts polish (poster numerals) ----- */
.facts {
  gap: 14px;
}

.facts li {
  position: relative;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}

.facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow);
  transform: scaleY(0.35);
  transform-origin: center;
  transition: transform 0.3s;
}

.facts li:hover {
  transform: translateX(4px);
  border-color: var(--blue-300);
  box-shadow: 0 12px 28px -16px rgba(0, 31, 92, 0.4);
}

.facts li:hover::before {
  transform: scaleY(1);
}

.facts strong {
  font-size: clamp(3.4rem, 5.5vw, 4.6rem);
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 0.9;
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}

.facts strong em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--yellow);
  -webkit-text-stroke: 1.5px var(--blue);
  font-weight: 400;
  letter-spacing: 0;
  align-self: flex-start;
  margin-top: 0.2em;
}

/* ----- Auction card refinements ----- */
.auction-card {
  border-radius: 6px;
  border: 1px solid var(--line);
}

.auction-card__media {
  border-radius: 0;
}

.auction-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  border-radius: 2px;
  border: 1px solid var(--blue);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 400;
}

.auction-card__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 0 0 rgba(193, 20, 20, 0.65);
  animation: pulse-live 1.6s ease-out infinite;
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(193, 20, 20, 0.65); }
  70% { box-shadow: 0 0 0 7px rgba(193, 20, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 20, 20, 0); }
}

.auction-card__badge--ended {
  border-color: var(--ink);
}

.auction-card__title {
  font-size: 1.85rem;
  letter-spacing: 0.015em;
}

.auction-card__stat--bid strong {
  color: var(--blue);
  font-size: 1.9rem;
}

/* ----- Section--how (dark) numbered steps ----- */
.section--how {
  position: relative;
  overflow: hidden;
}

.section--how::before {
  content: '80';
  position: absolute;
  top: 38px;
  right: -28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22rem;
  color: rgba(253, 197, 0, 0.05);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.section--how h2 {
  position: relative;
}

.steps li {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.steps li:hover {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.steps__num {
  width: 54px;
  height: 54px;
  font-size: 1.9rem;
  border-radius: 2px;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(253, 197, 0, 0.2);
}

.steps li h3 {
  color: #fff;
  font-size: 1.85rem;
}

/* ----- Initiator cards ----- */
.initiator {
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.initiator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.initiator:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(0, 31, 92, 0.4);
}

.initiator:hover::before {
  transform: scaleX(1);
}

.initiator h3 {
  font-size: 1.9rem;
}

/* ----- Footer accent stripe ----- */
.footer {
  position: relative;
  padding-top: 40px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 22%, transparent 22%, transparent 78%, var(--blue) 78%, var(--blue) 100%);
}

/* ----- Nav refinement ----- */
.nav__logo {
  border-radius: 4px;
  transform: rotate(-4deg);
  transition: transform 0.25s;
}

.nav__brand:hover .nav__logo {
  transform: rotate(0deg);
}

/* ----- Eyebrow refinement ----- */
.eyebrow {
  position: relative;
  padding-left: 38px;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  transform: translateY(-50%);
}

.section--how .eyebrow::before {
  background: var(--yellow);
}

/* ---------- GALLERY ---------- */
.section--gallery {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.section--gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  display: inline-block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 8px;
}

.gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 22px -14px rgba(0, 31, 92, 0.45);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.35s;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 0.35s;
  filter: saturate(0.92) contrast(1.02);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 31, 92, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -20px rgba(0, 31, 92, 0.55);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }
  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
    height: auto;
  }
}

.gallery__credit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 0;
  padding: 8px 18px 8px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink);
}

.gallery__credit-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: lightbox-in 0.22s ease-out;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 18, 0.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__caption {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}

.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.08);
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  background: var(--paper);
}

.legal-header {
  background: var(--blue);
  color: #fff;
  padding: 18px 0;
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-header .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.legal-header .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.legal {
  padding: 80px 0 100px;
}

.legal__container {
  max-width: 780px;
}

.legal h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 0.4em;
}

.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin: 2em 0 0.6em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
}

.legal__section:first-of-type h2 {
  border-top: 0;
  padding-top: 0;
  margin-top: 1.2em;
}

.legal__lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.4em;
}

.legal p,
.legal li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}

.legal ul {
  margin: 0.6em 0 1em;
  padding-left: 1.3em;
}

.legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__todo {
  display: inline-block;
  background: rgba(253, 197, 0, 0.28);
  border-left: 3px solid var(--yellow);
  padding: 2px 8px;
  font-size: 0.88em;
  font-family: 'Inter', monospace;
  color: var(--ink);
  margin: 2px 0;
}

.legal__back {
  margin-top: 3em;
}

/* ---------- FOOTER LEGAL ---------- */
.footer__legal {
  margin-top: 14px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer__legal a,
.footer__legal-btn {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.footer__legal-btn:hover,
.footer__legal a:hover {
  color: var(--yellow);
}

/* ---------- COOKIE CONSENT ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 140;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-top: 3px solid var(--yellow);
  max-width: 760px;
  margin: 0 auto;
  animation: cookie-in 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

@media (max-width: 720px) {
  .cookie__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.cookie__text strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 4px;
}

.cookie__text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.cookie__text a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie__actions .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .nav__burger {
    display: inline-flex;
  }
  .nav__links {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 80px 32px 32px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0.3s;
    overflow-y: auto;
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__links li:last-child {
    border-bottom: 0;
    margin-top: 16px;
  }
  .nav__links a {
    display: block;
    padding: 18px 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    opacity: 1;
    color: #fff;
  }
  .nav__links a:hover,
  .nav__links a:focus {
    color: var(--yellow);
  }
  .nav__admin {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    background: var(--yellow);
    color: var(--blue);
    border-color: var(--yellow);
    font-weight: 700;
  }
  .nav__admin:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav {
    padding: 16px 0;
  }
  .hero__content {
    padding: 0 0 60px;
  }
  .nav {
    padding: 16px 0;
  }
  .section {
    padding: 64px 0;
  }
  .section--how::before {
    font-size: 14rem;
    top: 24px;
    right: -20px;
  }
  .explainer__caption {
    max-width: none;
  }
  .facts strong {
    font-size: 3.2rem;
  }
  .hero__kicker {
    font-size: 0.78rem;
    letter-spacing: 0.32em;
  }
}
