/* ==========================================================================
   VGCUB Backpacks — Official Website
   Design tokens
   ink    #1A1D21  the black shell of the school and personal-item models
   slate  #2F5A70  the Peacock Blue 40-litre bag; the only action colour
   sand   #DBD3BF  the beige USB model
   olive  #918A70  the khaki model
   haze   #F4F2ED  raw canvas — the warm off-white the range is photographed on
   ========================================================================== */

:root {
  --ink: #1a1d21;
  --ink-soft: #3a3f45;
  --slate: #2f5a70;
  --slate-dk: #214455;
  --sand: #dbd3bf;
  --olive: #918a70;
  --haze: #f4f2ed;
  --haze-deep: #eae6dc;
  --paper: #ffffff;
  --line: #ded9ce;
  --muted: #6b6a64;
  --warn: #9a5b2c;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1140px;
  --wrap-narrow: 760px;
  --gap: clamp(1rem, 3vw, 2rem);
  --sect: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate-dk); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--slate); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gap); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: .75rem 1.25rem; }
.skip:focus { left: 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.2rem); margin-top: 0; }
h3 { font-size: clamp(1.15rem, 2.1vw, 1.4rem); }
h4 { font-size: 1.0625rem; }
p { margin: 0 0 1.1em; }
p, li { text-wrap: pretty; }

.lede { font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.55; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate); margin: 0 0 .9rem; display: block;
}

.answer {
  font-size: 1.1rem; line-height: 1.6;
  border-left: 3px solid var(--slate);
  padding: .1rem 0 .1rem 1.15rem; margin: 0 0 1.6rem;
}

/* ---------- header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease;
}

/* On the home page the header floats over the hero photograph until the page
   scrolls, at which point it takes on its normal white treatment. */
body[data-hero] .masthead {
  position: fixed; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body[data-hero] .masthead .brand,
body[data-hero] .masthead .nav a,
body[data-hero] .masthead .nav-toggle { color: #fff; }
body[data-hero] .masthead .brand__tag { color: var(--sand); }
body[data-hero] .masthead .nav-toggle { border-color: rgba(255,255,255,.5); }
body[data-hero] .masthead .nav a[aria-current="page"],
body[data-hero] .masthead .nav a:hover { border-bottom-color: var(--sand); }

body[data-hero] .masthead.is-stuck {
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom-color: var(--line);
}
body[data-hero] .masthead.is-stuck .brand,
body[data-hero] .masthead.is-stuck .nav-toggle { color: var(--ink); }
body[data-hero] .masthead.is-stuck .nav a { color: var(--ink-soft); }
body[data-hero] .masthead.is-stuck .brand__tag { color: var(--slate); }
body[data-hero] .masthead.is-stuck .nav-toggle { border-color: var(--line); }
body[data-hero] .masthead.is-stuck .nav a[aria-current="page"],
body[data-hero] .masthead.is-stuck .nav a:hover { border-bottom-color: var(--slate); }

@media (max-width: 860px) {
  body[data-hero] .masthead .nav { background: var(--ink); }
  body[data-hero] .masthead.is-stuck .nav { background: var(--paper); }
}
.masthead__bar { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand svg { width: 38px; height: 38px; flex: 0 0 auto; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.1; display: block; }
.brand__tag { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; color: var(--slate); display: block; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav a { font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--ink-soft); padding: .35rem 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--slate); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; align-items: center; margin-left: auto;
    background: none; border: 1px solid var(--line); border-radius: var(--radius);
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
    text-transform: uppercase; padding: .55rem .8rem; color: var(--ink); cursor: pointer;
  }
  .nav { display: none; margin: 0; position: absolute; left: 0; right: 0; top: 100%;
         background: var(--paper); border-bottom: 1px solid var(--line); padding: .5rem var(--gap) 1.25rem; }
  .nav[data-open="true"] { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a { display: block; padding: .85rem 0; border-bottom: none; }
}

/* ---------- hero ---------- */
/* Full-bleed photograph with the header sitting transparently on top of it.
   The scrim is what makes white type legible over a sunlit stone square. */
.hero--full {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 68% center;   /* keeps the bag in frame as the crop narrows */
}
.hero--full::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(96deg,
    rgba(26,29,33,.86) 0%, rgba(26,29,33,.72) 34%,
    rgba(26,29,33,.34) 62%, rgba(26,29,33,.06) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(6rem, 14vh, 9rem) clamp(3rem, 8vh, 5rem);
  max-width: 40rem;
}
/* On wide screens the centred wrap leaves a large empty margin to the left of
   the hero copy. Pull the text out toward the edge instead. */
@media (min-width: 1180px) {
  .hero__inner {
    margin-left: 0;
    padding-left: clamp(3rem, 6vw, 6rem);   /* clear of the viewport edge */
    max-width: 46rem;
  }
}
.hero--full .eyebrow { color: var(--sand); }
.hero--full h1 { color: #fff; margin-bottom: .4em; }
.hero--full .lede { color: rgba(255,255,255,.88); }
.hero--full .cta-row { margin-top: 1.9rem; }

@media (max-width: 860px) {
  .hero--full { min-height: 88svh; }
  .hero__bg img { object-position: 62% center; }
  .hero--full::after {
    background: linear-gradient(180deg,
      rgba(26,29,33,.72) 0%, rgba(26,29,33,.62) 45%, rgba(26,29,33,.86) 100%);
  }
  .hero__inner { max-width: none; }
}

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
@media (max-width: 460px) { .cta-row .btn { flex: 1 1 100%; } }

/* One storefront button per marketplace, three to a row on a wide screen.
   "Brand Store US" will not fit a third of a narrow viewport, so the grid
   steps down to two columns and then one. */
.storegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.9rem;
  max-width: 40rem;
}
.storegrid .btn {
  width: 100%;
  padding-inline: 1.1rem;
  font-size: .95rem;
  min-height: 48px;
}
@media (max-width: 900px) { .storegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .storegrid { grid-template-columns: 1fr; max-width: none; } }

/* ---------- lifestyle banner ---------- */
.banner {
  position: relative;
  min-height: clamp(230px, 30vw, 340px);
  display: grid; align-items: center;
  overflow: hidden;
  margin-block: clamp(2rem, 5vw, 3.25rem);
}
.banner__bg { position: absolute; inset: 0; }
.banner__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(94deg,
    rgba(26,29,33,.84) 0%, rgba(26,29,33,.66) 38%,
    rgba(26,29,33,.26) 68%, rgba(26,29,33,.05) 100%);
}
.banner__inner { position: relative; z-index: 2; max-width: 34rem; padding-block: 2rem; }
.banner__kicker {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sand); margin: 0 0 .6rem;
}
.banner h2 { color: #fff; margin: 0 0 .5rem; }
.banner__blurb { color: rgba(255,255,255,.86); margin: 0; font-size: 1.02rem; line-height: 1.55; }
@media (max-width: 700px) {
  .banner::after {
    background: linear-gradient(180deg, rgba(26,29,33,.6) 0%, rgba(26,29,33,.78) 100%);
  }
  .banner__inner { max-width: none; }
}

/* ---------- sections ---------- */
.section { padding: var(--sect) 0; }
.section--haze { background: var(--haze); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.section__head { max-width: 44rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------- feature rows ---------- */
.feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(1.5rem,4vw,3.5rem); align-items: center; padding-block: clamp(1.75rem,4vw,2.75rem); border-bottom: 1px solid var(--line); }
.feature:last-child { border-bottom: none; }
.feature:nth-child(even) .feature__media { order: -1; }
@media (max-width: 800px) { .feature { grid-template-columns: 1fr; } .feature:nth-child(even) .feature__media { order: 0; } }
.feature__media img { border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); }
.feature figcaption, .prose figcaption { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); margin-top: .6rem; line-height: 1.5; }
.feature ul { padding-left: 1.1rem; margin: 0 0 1rem; }
.feature li { margin-bottom: .4rem; }

/* ---------- product cards ---------- */
.catalogue { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; scroll-margin-top: 90px;
  box-shadow: 0 1px 0 rgba(26,29,33,.03), 0 16px 40px -30px rgba(26,29,33,.55);
}
.card__top { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(1.25rem,3vw,2.5rem); padding: clamp(1.25rem,3vw,2.25rem); align-items: center; }
@media (max-width: 760px) { .card__top { grid-template-columns: 1fr; } }
.card__img { background: transparent; }

/* gallery: main shot plus thumbnail strip, Amazon-style */
.gallery__main { background: var(--haze); border-radius: var(--radius); padding: .5rem; }
.gallery__main img { border-radius: 2px; }
.gallery__thumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .6rem; }
.gallery__thumb {
  width: 60px; height: 60px; padding: 0; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--haze); transition: border-color .15s ease, box-shadow .15s ease;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { border-color: var(--olive); }
.gallery__thumb.is-active { border-color: var(--slate); box-shadow: 0 0 0 1px var(--slate); }
.gallery__thumb:focus-visible { outline: 3px solid var(--slate); outline-offset: 2px; }
@media (max-width: 420px) { .gallery__thumb { width: 52px; height: 52px; } }
.card__title { font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin-bottom: .5rem; }
.card__model { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .55rem; }
.card__lede { color: var(--ink-soft); margin-bottom: 1rem; }
.card ul { padding-left: 1.05rem; margin: 0; }
.card li { margin-bottom: .4rem; font-size: .97rem; }
.card__foot { border-top: 1px solid var(--line); background: var(--haze); padding: 1.4rem clamp(1.25rem,3vw,2.25rem) 1.6rem; text-align: center; }

/* ---------- lightbox ---------- */
.gallery__main { cursor: zoom-in; }
.lightbox {
  border: none; padding: 0; max-width: 100vw; max-height: 100vh;
  width: 100vw; height: 100vh; background: rgba(16,18,20,.94);
  display: none; place-items: center; overflow: hidden;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(16,18,20,.94); }
.lightbox__figure { margin: 0; padding: clamp(2.5rem, 7vw, 4.5rem); display: grid; place-items: center; }
.lightbox__img { max-width: min(94vw, 1100px); max-height: 82vh; width: auto; height: auto; border-radius: var(--radius); }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; cursor: pointer;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
  width: 48px; height: 48px; line-height: 1;
  font-family: var(--font-body); font-size: 1.6rem;
  display: grid; place-items: center;
  transition: background .15s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__close { top: 1.1rem; right: 1.1rem; font-size: 1.9rem; }
.lightbox__prev { left: clamp(.6rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.6rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  margin: 0; font-family: var(--font-mono); font-size: .8rem;
  letter-spacing: .12em; color: rgba(255,255,255,.7);
}
@media (max-width: 560px) {
  .lightbox__close, .lightbox__nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox__figure { padding: 3.5rem 1rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  background: var(--slate); color: #fff; text-decoration: none;
  padding: .95rem 2.2rem; border: none; border-radius: var(--radius);
  min-height: 52px; cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}
.btn:hover { background: var(--slate-dk); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.cta-center { text-align: center; }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.75rem; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
caption { text-align: left; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-bottom: .7rem; }
th, td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 400; border-bottom: 1.5px solid var(--ink); }
tbody th { font-weight: 600; }
tbody td.num, tbody th.num, .mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }

/* ---------- verdict ---------- */
.verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
@media (max-width: 700px) { .verdict { grid-template-columns: 1fr; } }
.verdict > div { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.4rem; background: var(--paper); border-top: 3px solid var(--slate); }
.verdict h3 { font-size: 1rem; margin-bottom: .8rem; }
.verdict ul { margin: 0; padding-left: 1.1rem; }
.verdict li { margin-bottom: .5rem; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 2.5rem 1.1rem 0; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 1.35rem; color: var(--slate); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--slate-dk); }
.faq__a { padding: 0 0 1.3rem; max-width: 62ch; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tiles a { background: var(--paper); padding: 1.5rem 1.4rem; text-decoration: none; color: var(--ink); display: block; transition: background .15s ease; }
.tiles a:hover { background: var(--haze); }
.tiles h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.tiles p { font-size: .9rem; color: var(--muted); margin: 0; }
.tiles .arrow { font-family: var(--font-mono); color: var(--slate); }

/* ---------- breadcrumbs, meta ---------- */
.crumbs { font-family: var(--font-mono); font-size: .74rem; padding: 1.1rem 0 0; color: var(--muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs li + li::before { content: "/"; margin-right: .45rem; color: var(--line); }
.pagemeta { font-family: var(--font-mono); font-size: .73rem; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: .7rem 0; margin: 0 0 2rem; display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ---------- prose ---------- */
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 1.9rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1.3rem; }
.prose li { margin-bottom: .45rem; }
.prose figure { margin: 2rem 0; }
.prose figure img { border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- sticky CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
    padding: .6rem var(--gap) calc(.6rem + env(safe-area-inset-bottom)); }
  .sticky-cta .btn, .sticky-cta a.btn { width: 100%; min-height: 50px; }
  body { padding-bottom: 4.5rem; }
}

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #b9b6ad; padding: clamp(3rem,6vw,4.5rem) 0 2rem; font-size: .92rem; }
.footer a { color: #e8e5dd; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: .74rem; font-family: var(--font-mono); font-weight: 400; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer__brand svg { width: 42px; height: 42px; margin-bottom: .9rem; }
.footer address { font-style: normal; line-height: 1.7; }

/* the retailer statement is named here and nowhere else on the site */
.footer__disclosure { border-top: 1px solid #34383d; padding: 1.5rem 0 1.25rem; margin-bottom: .25rem; }
.footer__disclosure p { margin: 0; font-size: .93rem; line-height: 1.55; color: #e8e5dd; max-width: 62ch; }
.footer__legal { padding-top: 1.25rem; font-size: .82rem; line-height: 1.6; color: #8d8a82; }

/* ---------- cookie banner ---------- */
.cookiebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--ink); color: #ddd9d1; padding: 1.1rem var(--gap) calc(1.1rem + env(safe-area-inset-bottom)); display: none; box-shadow: 0 -8px 30px rgba(26,29,33,.25); }
.cookiebar[data-show="true"] { display: block; }
.cookiebar__in { max-width: var(--wrap); margin-inline: auto; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cookiebar p { margin: 0; font-size: .88rem; flex: 1 1 22rem; line-height: 1.5; }
.cookiebar a { color: #fff; }
.cookiebar__btns { display: flex; gap: .6rem; }
.cookiebar button { font-family: var(--font-display); font-weight: 700; font-size: .88rem; padding: .6rem 1.4rem; border-radius: var(--radius); cursor: pointer; border: 1px solid #4a4e54; background: transparent; color: #ddd9d1; }
.cookiebar button.is-accept { background: var(--slate); border-color: var(--slate); color: #fff; }
.cookiebar button:hover { border-color: #fff; }

/* ---------- misc ---------- */
.vis-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }
