/* ============================================
   GREGOR RUNGE — 180° REDESIGN
   Dark. Bold. Film.
   ============================================ */

/* Always dark — no system override */
:root {
  --black:   #080808;
  --white:   #F4F2EE;
  --grey:    #1A1A1A;
  --grey-2:  #2C2C2C;
  --grey-3:  #555;
  --grey-4:  #888;
  --accent:  #E8C97A;
  --sans:    'Inter', system-ui, sans-serif;
  --display: 'Bebas Neue', Impact, sans-serif;

  --bg:        var(--black);
  --bg-2:      var(--grey);
  --text:      var(--white);
  --border:    var(--grey-2);
  --muted:     var(--grey-4);
  --input-bg:  var(--grey);
  --nav-bg:    var(--black);
  --section-alt-bg:   var(--white);
  --section-alt-text: var(--black);
  --section-alt-muted: #555;
  --section-alt-border: #ccc;
  --pkg-bg:    var(--white);
  --pkg-text:  var(--black);
  --hw-bg:     var(--white);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap     { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.wrap-mid { max-width: 860px;  margin: 0 auto; padding: 0 3rem; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 22px;
  letter-spacing: 0.05em; color: var(--text);
  text-decoration: none;
}
.nav-logo-svg { flex-shrink: 0; }
.nav-logo-text { line-height: 1; }

@keyframes nav-mouth {
  0%,100% { transform: scaleY(1); }
  25%      { transform: scaleY(0.45); }
  50%      { transform: scaleY(1.1); }
  75%      { transform: scaleY(0.25); }
}
.nav-mouth {
  animation: nav-mouth 0.7s ease-in-out infinite;
  transform-origin: 123px 123px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 400; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; background: var(--accent); color: var(--bg);
  border-radius: 2px; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); margin: 5px 0; }

.mobile-menu {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1.1rem 3rem; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border); letter-spacing: 0.03em;
}

/* HERO */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  padding-top: 80px; /* always leave room for kicker */
}
.hero-img { display: none; }
.hero-img img { display: none; }
.hero-img-overlay { display: none; }
.hero-text {
  position: relative; z-index: 2;
  padding: 0 3rem 2.5rem;
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-kicker {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem; display: block;
}
.hero-text h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 120px);
  line-height: 0.95; letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.h-line { display: block; }
.h-accent { color: var(--accent); }
.hero-sub {
  font-size: 15px; font-weight: 300; color: rgba(244,242,238,0.65);
  max-width: 520px; line-height: 1.75; margin-bottom: 2rem;
}

@media (max-height: 900px) {
  .hero-text h1 { font-size: clamp(40px, 5.5vw, 80px); margin-bottom: 0.75rem; }
  .hero-kicker { margin-bottom: 0.75rem; }
  .hero-sub { margin-bottom: 1.25rem; font-size: 14px; }
}
@media (max-height: 800px) {
  .hero-text h1 { font-size: clamp(36px, 5vw, 68px); margin-bottom: 0.6rem; }
  .hero-kicker { margin-bottom: 0.5rem; }
  .hero-sub { margin-bottom: 1rem; font-size: 13px; }
  .hs { padding: 1rem 2rem; }
  .hs-n { font-size: 36px; }
}
@media (max-height: 700px) {
  .hero-text h1 { font-size: clamp(30px, 4.5vw, 56px); }
}
.btn-white {
  display: inline-block;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; background: var(--white); color: var(--black);
  border-radius: 2px; transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--accent); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.hs {
  flex: 1; padding: 1.5rem 3rem; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hs:last-child { border-right: none; }
.hs-n { font-family: var(--display); font-size: 48px; line-height: 1; color: #F4F2EE; }
.hs-l { font-size: 11px; color: rgba(244,242,238,0.55); letter-spacing: 0.08em; text-transform: uppercase; }

/* SECTION BASE */
.section-dark { background: var(--bg); border-bottom: 1px solid var(--border); padding: 0 0 7rem; scroll-margin-top: 70px; }
.section-light { background: var(--section-alt-bg); border-bottom: 1px solid var(--section-alt-border); padding: 0 0 7rem; scroll-margin-top: 70px; }
.section-dark > .wrap > .sec-label,
.section-dark > .wrap-mid > .sec-label,
.section-light > .wrap > .sec-label,
.section-light > .wrap-mid > .sec-label { padding-top: 7rem; display: block; }

.sec-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.sec-label.dark { color: var(--section-alt-muted); }

.sec-title { font-family: var(--display); font-size: clamp(60px, 8vw, 120px); line-height: 0.95; letter-spacing: 0.01em; color: var(--text); margin-bottom: 4rem; }
.sec-title.dark { color: var(--section-alt-text); }

.work-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.work-row {
  display: grid; grid-template-columns: 48px 80px 1fr auto auto;
  gap: 2rem; align-items: center;
  padding: 1.75rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.2s;
}
.work-row:hover { background: var(--bg-2); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.wr-num { font-family: var(--display); font-size: 20px; color: var(--grey-3); }
.wr-thumb { aspect-ratio: 16/9; background: var(--bg-2); display: flex; align-items: center; justify-content: center; border-radius: 2px; font-size: 12px; color: var(--muted); }
.wr-thumb--empty { background: transparent; border: 1px solid var(--border); }
.wr-play { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.work-row:hover .wr-play { color: var(--accent); }
.wr-info { display: flex; flex-direction: column; gap: 4px; }
.wr-client { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.wr-title { font-size: 16px; font-weight: 400; color: var(--text); }
.wr-type { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.wr-dur { font-family: var(--display); font-size: 20px; color: var(--grey-3); }

.pull { margin-top: 4rem; padding: 3.5rem; border: 1px solid var(--border); border-radius: 2px; position: relative; }
.pull-mark { font-family: var(--display); font-size: 120px; line-height: 0.8; color: var(--accent); display: block; margin-bottom: 1rem; }
.pull p { font-size: clamp(18px, 2.5vw, 26px); font-weight: 300; color: var(--text); line-height: 1.55; margin-bottom: 1.5rem; max-width: 800px; }
.pull-author { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ABOUT */
.about-wrap { display: grid; grid-template-columns: 2fr 3fr; gap: 6rem; align-items: start; }
.about-img-col { position: sticky; top: 6rem; }
.about-img-col img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(20%); }
.about-tag { margin-top: 1rem; font-size: 11px; color: var(--section-alt-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.about-text-col { padding-top: 0.5rem; }
.about-wrap { padding-top: 7rem; }
.about-body { display: flex; flex-direction: column; gap: 1.25rem; font-size: 16px; color: var(--section-alt-muted); line-height: 1.85; font-weight: 300; margin-bottom: 3rem; }
.about-list { display: flex; flex-direction: column; border-top: 1px solid var(--section-alt-border); }
.al-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--section-alt-border); font-size: 15px; color: var(--section-alt-text); font-weight: 300; }
.al-item:last-child { border-bottom: none; }
.al-n { font-family: var(--display); font-size: 22px; color: var(--section-alt-text); min-width: 32px; line-height: 1.2; }

/* PROCESS */
.process-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
}
.pg-step {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
}
.pg-step:last-child { border-right: none; }
.pg-n { font-family: var(--display); font-size: 52px; color: var(--border); line-height: 1; }
.pg-step h3 { font-size: 14px; font-weight: 500; color: var(--text); letter-spacing: 0.02em; }
.pg-step p { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* PRICING */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--section-alt-border);
  border: 1px solid var(--section-alt-border); border-radius: 2px;
  overflow: hidden; margin-bottom: 1.5rem;
}
.pkg {
  background: var(--section-alt-bg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem; position: relative;
}
.pkg-featured { background: var(--bg); }
.pkg-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; background: var(--accent); color: var(--bg);
  border-radius: 2px; font-weight: 600;
}
.pkg-name { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--section-alt-muted); }
.pkg-featured .pkg-name { color: var(--grey-4); }
.pkg-price {
  font-family: var(--display); font-size: 52px; line-height: 1;
  color: var(--section-alt-text);
}
.pkg-price.dark { color: var(--black); }
.pkg-featured .pkg-price { color: var(--text); }
.pkg-sub { font-size: 12px; color: var(--section-alt-muted); }
.pkg-featured .pkg-sub { color: var(--grey-4); }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg ul li { font-size: 13px; color: var(--section-alt-muted); font-weight: 300; padding-left: 16px; position: relative; line-height: 1.5; }
.pkg-featured ul li { color: var(--grey-4); }
.pkg ul li::before { content: "—"; position: absolute; left: 0; color: var(--section-alt-border); }
.pkg-featured ul li::before { color: var(--grey-3); }

.btn-dark {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 28px; background: var(--section-alt-text); color: var(--section-alt-bg);
  border-radius: 2px; transition: opacity 0.2s; width: fit-content;
}
.btn-dark:hover { opacity: 0.75; }
.btn-white-dark {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 28px; background: var(--accent); color: var(--black);
  border-radius: 2px; transition: opacity 0.2s; width: fit-content;
}
.btn-white-dark:hover { opacity: 0.85; }

.hw-strip {
  border: 1px solid var(--section-alt-border); border-radius: 2px; background: var(--section-alt-bg);
  padding: 2.5rem 3rem; display: grid;
  grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.hw-tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--section-alt-muted); display: block; margin-bottom: 0.5rem; }
.hw-t { font-family: var(--display); font-size: 40px; color: var(--section-alt-text); margin-bottom: 0.75rem; line-height: 1; }
.hw-strip p { font-size: 14px; color: var(--section-alt-muted); line-height: 1.65; font-weight: 300; }
.hw-r { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }

.price-note {
  margin-top: 1.5rem;
  font-size: 11px; color: var(--grey-4);
  letter-spacing: 0.04em; text-align: right;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.fq { font-size: 17px; font-weight: 400; color: var(--text); margin-bottom: 0.75rem; }
.fa { font-size: 14px; color: var(--muted); line-height: 1.8; font-weight: 300; }

/* CONTACT */
.section-contact { background: var(--bg); padding: 8rem 0 6rem; }
.contact-top { margin-bottom: 5rem; }
.contact-headline {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.9; color: var(--text);
  margin: 1rem 0 2rem;
}
.contact-mail {
  font-size: 20px; font-weight: 300; color: var(--accent);
  border-bottom: 1px solid var(--grey-3); padding-bottom: 4px;
  display: inline-block; transition: opacity 0.2s;
}
.contact-mail:hover { opacity: 0.7; }

.contact-form-wrap { max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.fg label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-4); margin-bottom: 0.5rem; font-weight: 500;
}
.fg input, .fg textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  padding: 14px 16px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 2px;
  color: var(--text); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--accent); }
.fg textarea { resize: vertical; min-height: 140px; }
.btn-send {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 40px; background: var(--accent); color: var(--bg);
  border: none; border-radius: 2px; cursor: pointer;
  transition: opacity 0.2s; margin-top: 0.25rem; width: 100%;
}
.btn-send:hover { opacity: 0.85; }
.form-msg { margin-top: 1.25rem; padding: 1rem 1.5rem; border-radius: 2px; font-size: 13px; }
.form-msg.ok  { background: var(--bg-2); border: 1px solid var(--border); color: var(--muted); }
.form-msg.err { background: #1a0a0a; border: 1px solid #5a2020; color: #ff8080; }

/* FOOTER */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 1.75rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-inner > span { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* MODALS */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.8); align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg-2); max-width: 600px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  border-radius: 2px; padding: 3rem; position: relative;
  border: 1px solid var(--border);
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 18px;
  color: var(--muted); cursor: pointer;
}
.modal-close:hover { color: var(--text); }
.modal-title { font-family: var(--display); font-size: 40px; color: var(--text); margin-bottom: 2rem; letter-spacing: 0.02em; }
.modal-content p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.modal-content strong { color: var(--text); font-weight: 500; }

/* LANGUAGE TOGGLE */
.lang-toggle {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 300;
  display: flex; align-items: center; gap: 6px;
  background: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 6px 12px;
}
.lang-btn {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  background: none; border: none;
  color: var(--bg-2); cursor: pointer;
  transition: color 0.2s; padding: 0;
}
.lang-btn.active { color: var(--accent); }
.lang-btn:hover { color: var(--bg); }
.lang-sep { font-size: 10px; color: var(--muted); }

/* VIDEO MODAL */
.video-modal-box {
  width: 90vw; max-width: 1000px;
  position: relative;
}
.video-close {
  position: absolute; top: -2.5rem; right: 0;
  color: rgba(255,255,255,0.7); font-size: 22px;
}
.video-close:hover { color: white; }
.video-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden; border-radius: 2px;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.work-row:nth-child(2).reveal { transition-delay: 0.1s; }
.work-row:nth-child(3).reveal { transition-delay: 0.2s; }
.pg-step:nth-child(2) { transition-delay: 0.08s; }
.pg-step:nth-child(3) { transition-delay: 0.16s; }
.pg-step:nth-child(4) { transition-delay: 0.24s; }
.pg-step:nth-child(5) { transition-delay: 0.32s; }
.pkg:nth-child(2) { transition-delay: 0.1s; }
.pkg:nth-child(3) { transition-delay: 0.2s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .pg-step:nth-child(4), .pg-step:nth-child(5), .pg-step:nth-child(6) { border-top: 1px solid var(--border); }
  .about-wrap { grid-template-columns: 1fr; padding-top: 3rem; }
  .about-img-col { position: static; max-width: 420px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: block; }
  nav { padding: 1rem 1.25rem; }

  /* HERO */
  .hero-text { padding: 0 1.25rem 1.5rem; }
  .hero-kicker { font-size: 10px; margin-bottom: 0.75rem; }
  .hero-text h1 { font-size: clamp(32px, 10vw, 52px); line-height: 0.92; margin-bottom: 1rem; }
  .hero-sub { font-size: 14px; margin-bottom: 1.5rem; }
  .btn-white { font-size: 11px; padding: 12px 24px; }

  /* HERO STATS — compact horizontal on mobile */
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hs { flex: 1; min-width: 30%; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; padding: 1rem 1.25rem; }
  .hs:last-child { border-right: none; }
  .hs-n { font-size: 32px; }
  .hs-l { font-size: 9px; }

  /* SECTIONS */
  .wrap, .wrap-mid { padding: 0 1.25rem; }
  .section-dark, .section-light { padding: 0 0 4rem; }
  .section-dark > .wrap > .sec-label,
  .section-dark > .wrap-mid > .sec-label,
  .section-light > .wrap > .sec-label,
  .section-light > .wrap-mid > .sec-label { padding-top: 3.5rem; }
  .about-wrap { padding-top: 3.5rem; }
  .sec-title { font-size: clamp(40px, 12vw, 60px); }

  /* WORK */
  .work-row { grid-template-columns: 36px 56px 1fr; gap: 1rem; }
  .wr-type, .wr-dur { display: none; }

  /* PROCESS */
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* PRICING */
  .pkg-grid { grid-template-columns: 1fr; }
  .hw-strip { grid-template-columns: 1fr; }
  .hw-r { align-items: flex-start; }

  /* FORM */
  .form-row { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-headline { font-size: clamp(56px, 16vw, 96px); }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: clamp(28px, 9vw, 44px); }
  .sec-title { font-size: clamp(36px, 11vw, 52px); }
  .contact-headline { font-size: clamp(48px, 14vw, 72px); }
  .process-grid { grid-template-columns: 1fr; }
  .pull { padding: 2rem 1.25rem; }
  .pull p { font-size: 16px; }
  .hs { min-width: 45%; }
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  background: var(--grey);
  border: 1px solid var(--grey-2);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  width: calc(100% - 3rem);
  transition: opacity 0.3s;
}
#cookie-banner p {
  font-size: 12px;
  color: var(--grey-4);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
#cookie-banner button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 4rem; }
}
