@charset "utf-8";
/* ============================================================================
   BERGHAUS — Explore
   Built from Figma  ChaosCRM › Frame 166 (161:7220)
   Reference width 1920px. Every clamp() upper bound is the literal Figma value;
   the vw middle term is that value ÷ 19.2 so the design is pixel-exact at 1920
   and scales down cleanly.
   ============================================================================ */

/* ---------------------------------------------------------------- 1. Fonts */
@font-face { font-family: Dazzed; src: url("fonts/Dazzed-TRIAL-Regular.otf")  format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: Dazzed; src: url("fonts/Dazzed-TRIAL-Medium.otf")   format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: Dazzed; src: url("fonts/Dazzed-TRIAL-SemiBold.otf") format("opentype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: Dazzed; src: url("fonts/Dazzed-TRIAL-Bold.otf")     format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: Dazzed; src: url("fonts/Dazzed-TRIAL-Heavy.otf")    format("opentype"); font-weight: 800; font-style: normal; font-display: swap; }

/* --------------------------------------------------------------- 2. Tokens */
:root {
  /* colour — Figma variables */
  --ink:          #2F3038;   /* page background, everywhere */
  --surface:      #40424D;   /* media tiles + category cards */
  --lime:         #AFDA42;   /* eyebrow labels */
  --muted:        #ACAEB8;   /* section headings */
  --white:        #FFFFFF;
  --black:        #000000;
  --outlet:       #E03124;
  --rule:         #D9CCC9;
  --cream:        #F2E9E4;
  --text-light:   #4D4D4D;
  --oos:          #6F7174;

  /* type scale */
  --fs-section:  clamp(21px,   1.8405vw, 35.337px);
  --fs-cat:      clamp(19px,   1.6146vw, 31px);
  --fs-lede:     clamp(14px,   0.8052vw, 15.46px);
  --fs-body:     clamp(14px,   0.8333vw, 16px);
  --fs-sm:       clamp(13px,   0.7292vw, 14px);
  --fs-xs:       clamp(10px,   0.5729vw, 11px);
  --fs-label:    clamp(10px,   0.5751vw, 11.043px);
  --fs-nav:      clamp(14px,   0.9724vw, 18.667px);
  --fs-name:     clamp(15px,   0.8854vw, 17px);
  --fs-price:    clamp(15px,   0.9375vw, 18px);
  --fs-ftr-h:    clamp(16px,   0.9375vw, 18px);
  --fs-legal:    clamp(11px,   0.625vw,  12px);

  /* layout frame — only the hero is full-bleed; everything else sits in 1720 */
  --frame:       1720px;
  --edge:        max(0px, (100vw - var(--frame)) / 2);   /* grey margin outside the frame */
  --pad-frame:   clamp(16px,   7.5521vw, 145px);         /* frame edge → the 1430 content measure */
  --sec-gap:     clamp(44px,   4.1667vw, 80px);          /* the one gap between sections */

  /* spacing */
  --pad:         calc(var(--edge) + var(--pad-frame));   /* full-bleed sections — lands on 245 @1920 */
  --pad-hdr:     clamp(16px,   1.0417vw, 20px);
  --pad-ftr:     clamp(20px,   1.6667vw, 32px);
  --gutter:      clamp(14px,   1.6365vw, 31.42px);   /* dark gap between category panels */
  --cat-edge:    clamp(5px,    0.5752vw, 11.043px);
  --logo-h:      clamp(24px,   1.9444vw, 37.333px);
  --hdr-pad-y:   clamp(14px,   1.6667vw, 32px);
  --hdr-h:       calc(var(--hdr-pad-y) * 2 + var(--logo-h));
  --hdr-top:     clamp(8px,    0.8333vw, 16px);   /* float of the bar off the top */
  --radius:      14px;
  --inset:       clamp(5px,    0.5208vw, 10px);    /* the 10px bg-coloured card border */

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------------- 3. Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
       scroll-padding-top: calc(var(--hdr-h) + var(--hdr-top) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Dazzed, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.2; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--white); color: var(--black);
  padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------- 4. Layout */
.frame {
  width: 100%; max-width: var(--frame); margin-inline: auto;
  --pad: var(--pad-frame);      /* inside the frame, gutters measure from the frame edge */
}

/* one rhythm for the whole page — no section sets its own outer padding */
main > * + * { margin-top: var(--sec-gap); }
.ftr         { margin-top: var(--sec-gap); }

/* --------------------------------------------------- 5. Shared primitives */

/* white block button — Figma "Button" component: 24/16 padding, 14px Bold */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: clamp(11px, 0.8333vw, 16px) clamp(16px, 1.25vw, 24px);
  background: var(--white);
  color: var(--black);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { background: var(--lime); color: var(--black); }

/* lime eyebrow label */
.label {
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--lime);
}
.label--white { color: var(--white); }

/* centred grey section heading — 35.337px Medium */
.section-title {
  font-size: var(--fs-section);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  text-wrap: balance;
}

/* 11px uppercase runners used on the scenes and under the pack */
.crumbs, .crumbs__place, .pack__meta {
  font-size: var(--fs-xs);
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--white);
}
.crumbs { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 48px); min-width: 0; }
.crumbs li { display: flex; align-items: center; gap: 6px; }
.crumbs__ico { width: 11px; height: auto; flex: none; fill: currentColor; }
.crumbs__place { display: flex; align-items: center; gap: 6px; text-align: right; white-space: nowrap; }

/* ================================================================ 5. Header
   Figma 145:3457 — solid white bar, 1.333px bottom rule
   ========================================================================= */
/* the bar floats on the 1720 frame over the hero, so .hdr is only the
   positioning shell — the white surface is .hdr__inner */
.hdr {
  position: fixed; top: var(--hdr-top); left: 0; right: 0; z-index: 60;
  color: var(--black);
  pointer-events: none;
}
.hdr__inner {
  position: relative;
  pointer-events: auto;
  width: 100%; max-width: var(--frame); margin-inline: auto;
  background: var(--white);
  border-bottom: 1.333px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: var(--hdr-pad-y) var(--pad-hdr);
}
.hdr__left { display: flex; align-items: center; gap: clamp(16px, 1.6667vw, 32px); min-width: 0; }
.hdr__logo img { height: var(--logo-h); width: auto; }

.hdr__nav ul { display: flex; align-items: center; gap: clamp(12px, 1.1111vw, 21.333px); }
.hdr__nav a {
  display: inline-flex; align-items: center; gap: clamp(6px, 0.5556vw, 10.667px);
  font-size: var(--fs-nav);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  padding-block: 4px;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s var(--ease);
}
.hdr__nav a:hover { border-bottom-color: currentColor; }
.hdr__nav a.is-current { font-weight: 700; }
.hdr__nav a.is-outlet { color: var(--outlet); }
.chev { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.hdr__right { display: flex; align-items: center; gap: clamp(8px, 1.6667vw, 32px); }
.switcher { display: flex; align-items: center; gap: clamp(8px, 1.25vw, 24px); }
.switcher__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); font-weight: 500; white-space: nowrap;
}
.switcher__btn:hover { text-decoration: underline; }
.flag { width: 26px; height: 17px; flex: none; border-radius: 2px; }

.iconbtn {
  position: relative;
  display: inline-grid; place-items: center;
  width: clamp(28px, 1.6667vw, 32px); height: clamp(28px, 1.6667vw, 32px);
}
.iconbtn svg {
  width: 100%; height: 100%;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.iconbtn:hover svg { stroke-width: 2.1; }
.iconbtn[data-wishlist].is-on svg { fill: var(--outlet); stroke: var(--outlet); }
.iconbtn__count {
  position: absolute; top: -4px; right: -6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 700; line-height: 15px; text-align: center;
}

.burger { display: none; width: 32px; height: 32px; position: relative; }
.burger span {
  position: absolute; left: 5px; right: 5px; height: 1.6px; background: currentColor;
  transition: transform .25s var(--ease), opacity .2s linear, top .25s var(--ease);
}
.burger span:nth-child(1) { top: 10px; }
.burger span:nth-child(2) { top: 15.2px; }
.burger span:nth-child(3) { top: 20.4px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 15.2px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 15.2px; transform: rotate(-45deg); }

/* ================================================= 6. Scenes (hero + discover)
   plate photo → wordmark → cut-out figure. data-depth drives the parallax.
   ========================================================================= */
.scene { position: relative; overflow: hidden; isolation: isolate; }
.scene--hero     { height: 100svh; min-height: 560px; }
.scene--discover { aspect-ratio: 1920 / 750; min-height: 400px; }

.scene__plate,
.scene__front {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 68%;   /* pushes the walking figure up into the frame */
  will-change: transform;
}
.scene__plate { z-index: 0; }
.scene__front { z-index: 3; pointer-events: none; }
.scene__front[hidden] { display: none; }

.scene__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,21,26,.30) 0%, rgba(20,21,26,0) 26%,
                            rgba(20,21,26,0) 58%, rgba(20,21,26,.42) 100%);
}

/* wordmark — SVG text locked to the exact Figma box via textLength */
.scene__word {
  position: absolute; left: 50%; z-index: 2;
  transform: translateX(-50%);
  height: auto;
  pointer-events: none;
  will-change: transform, opacity;
}
/* 1:1 exports out of Figma — 1430×245 and 1419×217 */
.scene--hero     .scene__word { width: 74.48%; top: 30.2%; }
.scene--discover .scene__word { width: 73.91%; top: 35.6%; }

/* scene copy blocks */
.scene__crumbs {
  position: absolute; left: 0; right: 0; z-index: 4;
  padding-inline: var(--pad);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: nowrap;
}
.scene--hero .scene__crumbs { top: calc(var(--hdr-top) + var(--hdr-h) + clamp(12px, 1.15vw, 22px)); }
.scene__crumbs--bottom      { top: 94.4%; }

.scene__cta { position: absolute; z-index: 4; display: flex; flex-direction: column; gap: clamp(12px, 0.8333vw, 16px); }
.scene__cta p:first-child { font-size: var(--fs-body); font-weight: 500; line-height: 1.5; }
.scene__cta--left  { left: 11.72%; top: 70.7%; width: min(33.85%, 650px); }
.scene__cta--right { left: 68.7%; top: 69.9%; width: min(18.75%, 360px); }
.scene__cta--right p:first-child { font-weight: 600; }

.scene__note {
  position: absolute; z-index: 4;
  left: 68.7%; top: 20.7%; width: min(18.75%, 360px);
  font-size: var(--fs-body); font-weight: 600; line-height: 1.5;
}

/* ============================================================ 7. Essentials
   Figma 145:3087 — 205px title band / 560×700 tiles / 206px lede band
   ========================================================================= */
.essentials { padding-inline: var(--pad); }
.essentials .section-title { margin-bottom: clamp(40px, 4.2188vw, 81px); }

.essentials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.0417vw, 20px);
  max-width: 1140px;
  margin-inline: auto;
}
.tile { position: relative; aspect-ratio: 560 / 700; }
.tile__img {
  position: absolute; inset: var(--inset);
  width: calc(100% - var(--inset) * 2); height: calc(100% - var(--inset) * 2);
  object-fit: cover;
  border-radius: var(--radius);
}
.tile::after {                       /* whisper of a scrim so white type always holds */
  content: ""; position: absolute; inset: var(--inset);
  border-radius: var(--radius);
  background: linear-gradient(180deg, transparent 52%, rgba(20,21,26,.34) 100%);
  pointer-events: none;
}
.tile__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  height: 33.86%;                    /* 237 / 700 */
  padding: clamp(20px, 3.125vw, 60px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  gap: clamp(10px, 0.8333vw, 16px);
}
.tile__copy { font-size: var(--fs-lede); font-weight: 600; line-height: 1.5; }
.essentials__lede {
  max-width: 856px; margin: clamp(40px, 3.5417vw, 68px) auto 0;
  font-size: var(--fs-lede); font-weight: 500; line-height: 1.5;
  text-align: center;
}

/* ====================================================== 8. Category cards
   Figma 154:5109 — four 473px squares, full bleed, #40424D on #2F3038
   ========================================================================= */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  padding-inline: var(--cat-edge);
}
.cat {
  position: relative;
  min-height: 22.06vw;           /* 473 / 1720 in the frame — grows if the copy needs more */
  background: var(--surface);
  padding: 14% 13.47%;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.cat__title {
  max-width: 11em;               /* 340 / 31 — holds the Figma line breaks at any size */
  font-size: var(--fs-cat);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
}
.cat__foot {
  position: relative; z-index: 2;
  width: 54%; max-width: 12em;   /* 180 / 15.46 */
  display: flex; flex-direction: column; align-items: flex-start;
  gap: clamp(10px, 0.9375vw, 18px);
}
.cat__copy { font-size: var(--fs-lede); font-weight: 600; line-height: 1.5; }
.cat__pack {
  position: absolute; right: 2.77%; bottom: 7.93%; z-index: 1;
  height: 42.28%; width: auto; max-width: 40%;
  aspect-ratio: 180 / 200;
  object-fit: contain; object-position: bottom center;
  transition: transform .5s var(--ease);
}
.cat:hover .cat__pack { transform: translateY(-6px); }
.cat__shadow {
  /* concentric with .cat__pack: both are sized off the card height, and the
     -23.64% self-translate re-centres the narrower ellipse under the pack. */
  position: absolute; right: 2.77%; bottom: 5.5%; z-index: 0;
  height: 2.33%; width: auto; aspect-ratio: 122 / 11;
  transform: translateX(-23.64%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,0,0,.5), rgba(0,0,0,0));
}

/* ======================================================== 9. Pack spotlight
   Figma 148:3164 / 154:5094 — now a horizontal carousel
   ========================================================================= */

.packs__head {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(14px, 1.3542vw, 26px);
  padding-inline: var(--pad);
}
.packs__intro {
  max-width: 560px;
  font-size: var(--fs-lede); font-weight: 500; line-height: 1.5;
  text-align: center;
}

.packs__viewport { position: relative; margin-top: clamp(20px, 2.1354vw, 41px); }

.pack {
  position: relative;
  display: grid;
  grid-template-columns: 418fr 742fr 270fr;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  padding: clamp(24px, 3.75vw, 72px) var(--pad) clamp(24px, 2.1354vw, 41px);
  min-height: clamp(520px, 43.18vw, 829px);
}

.pack__col { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.pack__col--left  { grid-column: 1; grid-row: 1 / 3; justify-content: space-between; gap: clamp(24px, 2.5vw, 48px); }
.pack__col--right { grid-column: 3; grid-row: 1 / 3; justify-content: space-between; gap: clamp(12px, 1.0417vw, 20px); }
.pack__block { display: flex; flex-direction: column; gap: clamp(12px, 0.9375vw, 18px); }
.pack__desc { display: flex; flex-direction: column; gap: 1em; font-size: var(--fs-sm); font-weight: 500; line-height: 1.5; }

.specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 12px;
  font-size: var(--fs-xs);
  line-height: 2.41;
  text-transform: uppercase;
}
.specs > div { display: contents; }
.specs dt { color: var(--lime); font-weight: 600; }
.specs dd { color: var(--white); font-weight: 500; }

.feats { display: flex; flex-direction: column; justify-content: space-between; gap: clamp(12px, 1.0417vw, 20px); height: 100%; }
.feats li { font-size: var(--fs-xs); font-weight: 500; line-height: 1.5; text-transform: uppercase; }
.feats b { font-weight: 600; }

.pack__stage {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.pack__glow {
  position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);
  width: 59.38%; aspect-ratio: 1140 / 658;   /* 1140 of 1920 */
  background: radial-gradient(closest-side, rgba(255,255,255,.085), rgba(255,255,255,.03) 58%, rgba(255,255,255,0) 100%);
}
.pack__img {
  position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);
  height: 84%; width: auto;        /* 728 tall in the 829 Figma slide */
  max-width: 26%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.pack__img.is-active { opacity: 1; }
.pack__cast {
  position: absolute; left: 50%; top: 89.5%; transform: translate(-50%, -50%);
  width: 21.15%; aspect-ratio: 406 / 36;     /* 406 of 1920 */
  background: radial-gradient(closest-side, rgba(0,0,0,.55), rgba(0,0,0,0));
}

.pack__meta {
  position: relative; z-index: 1;
  grid-column: 1 / -1; grid-row: 3;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 48px);
  padding-top: clamp(20px, 2vw, 40px);
}
.pack__meta li { display: flex; align-items: center; gap: 6px; }

/* arrows + dots */
.packs__arrow {
  position: absolute; top: 45%; z-index: 5;
  transform: translate(-50%, -50%);
  width: clamp(38px, 2.5521vw, 49px); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(2px);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.packs__arrow:hover { background: rgba(255,255,255,.3); }
.packs__arrow:active { transform: translate(-50%, -50%) scale(.94); }
.packs__arrow svg { width: 45%; height: 45%; fill: none; stroke: rgba(255,255,255,.9); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.packs__arrow[disabled] { opacity: .25; pointer-events: none; }
/* pinned either side of the pack shot (max-width 26%, so 13% each side) */
.packs__arrow--prev { left: calc(50% - 13% - clamp(18px, 1.7708vw, 34px)); }
.packs__arrow--next { left: calc(50% + 13% + clamp(18px, 1.7708vw, 34px)); }


/* =================================================== 10. Featured collection
   Figma 161:5107 — 4 cards, 21.33px outer, 10.67px gutters
   ========================================================================= */
.featured { padding: 0; }
.featured .section-title { margin-bottom: clamp(20px, 1.6667vw, 32px); }
.featured__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(6px, 0.5556vw, 10.667px);
  padding-inline: clamp(12px, 1.1111vw, 21.333px);
}
.card__media {
  display: block; position: relative;
  aspect-ratio: 1;
  background: var(--surface);
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 9%;
  transition: transform .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__body {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: clamp(6px, 0.4vw, 7.5px);
  padding-block: clamp(14px, 1.1111vw, 21.333px);
}
.card__body .swatches { margin-bottom: clamp(3px, 0.28vw, 5.4px); }
.card__cta { margin-top: clamp(8px, 0.8333vw, 16px); }

.swatches { display: flex; flex-wrap: wrap; gap: 5.333px 10.667px; }
.swatches li {
  position: relative;
  width: clamp(20px, 1.3889vw, 26.667px); aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sw, #888);
  cursor: pointer;
}
.swatches li.is-active {
  background: transparent;
  border: 1.333px solid var(--white);
  padding: 2.667px;
  background-clip: content-box;
  background-color: var(--sw);
}
.swatches li.is-oos::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 1.333px; height: 138%;
  background: var(--oos);
  transform: translate(-50%, -50%) rotate(45deg);
}
.card__name { font-size: var(--fs-name); font-weight: 500; line-height: 1.5; letter-spacing: .5px; }
.card__name a:hover { text-decoration: underline; }
.card__price { font-size: var(--fs-price); font-weight: 600; line-height: 1.5; }

/* ============================================================== 11. Footer
   Figma 161:3891 — white, cream legal bar
   ========================================================================= */
.ftr { background: var(--white); color: var(--black); border-top: 1px solid var(--rule); }

.ftr__blocks {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(36px, 3.3333vw, 64px) var(--pad-ftr) clamp(32px, 3.3333vw, 64px);
}
.ftr__col { padding-right: clamp(12px, 1.25vw, 24px); display: flex; flex-direction: column; gap: clamp(12px, 0.8333vw, 16px); }
.ftr__h { font-size: var(--fs-ftr-h); font-weight: 500; line-height: 1.3; }
.ftr__links { display: flex; flex-direction: column; gap: clamp(10px, 0.8333vw, 16px); }
.ftr__links a { font-size: var(--fs-sm); font-weight: 500; line-height: 1.5; }
.ftr__links a:hover { text-decoration: underline; }
.ftr__links a.is-link { text-decoration: underline; }

.social { display: flex; gap: clamp(10px, 0.8333vw, 16px); }
.social a { display: grid; place-items: center; width: 24px; height: 24px; }
.social svg { width: 100%; height: 100%; fill: currentColor; }
.social a:hover { opacity: .6; }

.ftr__utility {
  position: relative;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 1.6667vw, 32px) var(--pad-ftr);
}
.ftr__region { display: flex; flex-direction: column; gap: 8px; width: 230px; max-width: 45%; }
.ftr__region-label { font-size: var(--fs-sm); font-weight: 700; line-height: 1.5; }
.field { position: relative; display: flex; align-items: center; height: 48px; border: 1px solid var(--black); padding: 12px 16px; }
.field select {
  appearance: none; border: 0; background: none; width: 100%;
  font: inherit; font-size: var(--fs-sm); font-weight: 700; line-height: 1.2;
  color: var(--black); cursor: pointer; padding-right: 20px;
}
.field select:focus { outline: none; }
.field .chev { position: absolute; right: 14px; pointer-events: none; }

.trustpilot {
  position: absolute; left: 50%; bottom: 50%;
  transform: translate(-50%, 50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.trustpilot__name { display: flex; align-items: center; gap: 5px; font-size: var(--fs-sm); font-weight: 700; }
.trustpilot__star { width: 17px; height: 17px; fill: #000; }
.trustpilot__stars { display: flex; gap: 2px; }
.trustpilot__stars li {
  width: 22px; height: 22px; background: #00B67A;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.ftr__pay { display: flex; flex-direction: column; align-items: flex-end; gap: 11px; }
.pay { display: flex; gap: clamp(6px, 0.8333vw, 16px); flex-wrap: wrap; justify-content: flex-end; }
.pay li {
  width: 38px; height: 24px; border-radius: 3px;
  border: 1px solid #EEEFEF; background: #fff;
  display: grid; place-items: center;
  font-size: 8px; font-weight: 700; letter-spacing: .02em;
  color: #1A1F71;
  overflow: hidden;
}
.pay--klarna { background: #FFA8CD; border-color: #FFA8CD; color: #17120F; }
.pay--gpay   { color: #5F6368; }
.pay--visa   { color: #1A1F71; font-style: italic; font-size: 9px; }
.pay--amex   { background: #2E77BB; border-color: #2E77BB; color: #fff; font-size: 7px; }
.pay--apple  { background: #000; border-color: #000; color: #fff; font-size: 8px; }
.pay--mc, .pay--maestro { position: relative; }
.pay--mc i, .pay--maestro i { position: absolute; top: 50%; width: 15px; height: 15px; border-radius: 50%; transform: translateY(-50%); }
.pay--mc i:nth-child(1) { background: #EB001B; left: 6px; }
.pay--mc i:nth-child(2) { background: #F79E1B; right: 6px; mix-blend-mode: multiply; }
.pay--maestro i:nth-child(1) { background: #0099DF; left: 6px; }
.pay--maestro i:nth-child(2) { background: #ED0006; right: 6px; mix-blend-mode: multiply; }

.ftr__copy { font-size: var(--fs-legal); font-weight: 500; line-height: 1.5; text-align: right; }

.ftr__legal { background: var(--cream); color: var(--text-light); padding: 8px 16px; }
.ftr__legal ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.ftr__legal a { font-size: var(--fs-legal); font-weight: 500; line-height: 1.6; }
.ftr__legal a:hover { text-decoration: underline; }

/* ========================================================= 12. Entrances */
[data-reveal] { opacity: 0; transform: translateY(22px); }
.is-in[data-reveal] { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ======================================================== 13. Responsive */
@media (max-width: 1280px) {
  .pack { grid-template-columns: 1fr 1.4fr 1fr; }
}

@media (max-width: 1440px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .cat { min-height: 0; }
  .scene__crumbs .crumbs li:nth-child(3) { display: none; }
}

@media (max-width: 1100px) {
  .featured__row { grid-template-columns: repeat(2, 1fr); }

  .pack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: clamp(20px, 3vw, 40px);
    min-height: 0;
  }
  .pack__stage    { position: relative; grid-column: 1 / -1; grid-row: 1; min-height: 62vw; }
  .pack__img      { height: auto; width: min(38%, 260px); max-width: none; top: 50%; }
  .pack__glow     { top: 50%; width: 92%; }
  .pack__cast     { top: 96%; width: 40%; }
  .pack__col--left  { grid-column: 1; grid-row: 2; }
  .pack__col--right { grid-column: 2; grid-row: 2; }
  .pack__meta     { grid-row: 3; }
  .packs__arrow       { top: 30%; }
  .packs__arrow--prev { left: calc(50% - 22% - 14px); }
  .packs__arrow--next { left: calc(50% + 22% + 14px); }
}

@media (max-width: 900px) {
  :root { --pad: clamp(20px, 6vw, 48px); }

  .burger { display: block; }
  .hdr__nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    padding: 8px var(--pad-hdr) 20px;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .25s;
    z-index: -1;
  }
  .hdr__nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hdr__nav a { font-size: 17px; padding-block: 10px; }
  .hdr.is-open .hdr__nav { transform: translateY(0); opacity: 1; visibility: visible; transition-delay: 0s; }
  .switcher { display: none; }

  .essentials__grid { grid-template-columns: 1fr; max-width: 560px; }

  .scene--hero .scene__word { width: 88%; top: 27%; }
  .scene--discover { aspect-ratio: 4 / 3; }
  .scene--discover .scene__word { width: 88%; top: 26%; }
  .scene__cta--left  { left: var(--pad); top: auto; bottom: 7%; width: min(78%, 520px); }
  .scene__cta--right { left: var(--pad); right: var(--pad); top: auto; bottom: 12%; width: auto; }
  .scene__note { left: var(--pad); right: var(--pad); top: 46%; width: auto; }
  .scene__crumbs--bottom { top: auto; bottom: 3%; }
  .scene__crumbs .crumbs li:nth-child(n+2) { display: none; }
  .crumbs__place { max-width: 42%; }

  .ftr__blocks { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ftr__utility { flex-direction: column; align-items: stretch; padding-bottom: 88px; }
  .ftr__region { width: 100%; max-width: none; }
  .trustpilot { position: static; transform: none; align-items: flex-start; }
  .ftr__pay { align-items: flex-start; }
  .pay { justify-content: flex-start; }
  .ftr__copy { text-align: left; }
}

@media (max-width: 640px) {
  .cats { grid-template-columns: 1fr; }
  .cat { aspect-ratio: 16 / 11; padding: 8%; }
  .cat__foot { width: 58%; }
  .featured__row { grid-template-columns: repeat(2, 1fr); }

  .pack { grid-template-columns: 1fr; }
  .pack__col--left, .pack__col--right { grid-column: 1; }
  .pack__col--right { grid-row: 3; }
  .pack__meta { grid-row: 4; }
  .packs__arrow { top: 18%; }

  .ftr__blocks { grid-template-columns: 1fr; }
  .ftr__legal ul { justify-content: flex-start; gap: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .packs__track { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
