@font-face {
  font-family: 'Gloock';
  src: url('Fonty/Gloock/Gloock-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
 
:root {
  --orange: #ff5b00;
  --orange-deep: #d94300;
  --orange-light: #ff7a2e;
  --black: #0a0a0a;
  --yellow: #dbd645;
  --white: #ffffff;

  /* "1 piksel projektu" — projekt jest robiony pod szerokość 1920.
     --s skaluje się WPROST z szerokością viewportu: = 1px przy 1920,
     0.8px przy 1536 (skala 125%), 0.667px przy 1280 (150%), 0.571px przy 1097 (175%).
     Dzięki temu cały layout wypełnia szerokość ekranu i ma STAŁY rozmiar fizyczny
     przy każdej skali Windows (mniejszy rozmiar CSS × większe DPI = ten sam piksel).
     Referencją jest tylko SZEROKOŚĆ — wysokość pomijamy, bo realny viewport
     przeglądarki jest niższy niż 1080 (zakładki, pasek adresu, pasek zadań),
     co przy uwzględnieniu wysokości błędnie zmniejszałoby całość już na 100%.
     Każdą sztywną wartość px piszemy jako calc(N * var(--s)). */
  --s: min(100vw / 1920, 100vh / 880);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  margin: 0;
  position: relative;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #F06F1C 15%, #ED3D10 50%, #CF2E05 92%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.25) transparent;
}

/* Photo behind sections 2 + 3 — starts at bottom of video frame and runs to end of page */
.floor-photo {
  position: absolute;
  left: 0;
  right: 0;
  top: 95vh;
  bottom: 0;
  background-image: url('images/Home/Foto%20tło.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Full-viewport sections driven by script.js */
.snap {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}
.brand-mark:hover { transform: scale(1.05); }
.brand-mark img {
  width: 121px;
  height: 121px;
  display: block;
  animation: spin 12s linear infinite;
  transform-origin: 50% 50%;
}
.brand-mark img.brand-wordmark { display: none; }   /* wordmark tylko na mobile (patrz media query); wyższa specyficzność, by nadpisać .brand-mark img */

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hamburger {
  width: 44px;
  height: 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  padding: 0;
  transform: scale(1.4);
  transform-origin: center right;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 14px; }
.hamburger span:nth-child(3) { top: 26px; }

/* Hamburger morphs into an X when the menu is open */
.hamburger.is-open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* NAV OVERLAY — slides in over the page, reversed gradient */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Same gradient as the page, opposite direction (page uses 135deg) */
  background: linear-gradient(315deg, #F06F1C 15%, #ED3D10 50%, #CF2E05 92%);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.6s;
}
.nav-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Decorative circle behind the menu, to the right of the labels */
.nav-glow {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  margin-left: 320px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(207, 46, 5, 0) 0%, rgba(207, 46, 5, 0) 45%, rgba(240, 111, 28, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Sygnet watermark, bottom-right, very faint */
.nav-sygnet {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(229px, 25.7vw, 429px);
  height: auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.nav-menu {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav-menu li { margin: 0; }
.nav-menu a {
  display: inline-block;
  font-family: 'Gloock', serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1.5;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.5px;
  -webkit-text-stroke: 0 transparent;
  transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
}
/* Hover: text turns into a transparent black outline */
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 1);
}

@media (max-width: 1080px) {
  .nav-menu a { font-size: clamp(40px, 9vw, 80px); }
}

/* HERO */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  overflow: hidden;
}

/* Decorative circle — fixed, morphs & glides per section like picperfect.studio.
   script.js puts a .view-N class on <body>; each state moves / rotates / resizes
   the circle, and `transition: all` makes it flow smoothly between sections. */
.hero-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(207, 46, 5, 0) 0%, rgba(240, 111, 28, 0.5) 100%);
  transform: translate(calc(-50% - 600px), calc(-50% - 210px)) rotate(0deg);
  opacity: 1;
  transition: transform 1s ease, width 1s ease, height 1s ease, opacity 1s ease;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

/* Section 0 — hero (default position kept) */
.view-0 .hero-glow {
  width: 600px;
  height: 600px;
  transform: translate(calc(-50% - 600px), calc(-50% - 210px)) rotate(0deg);
  opacity: 1;
}

/* Section 1 — video */
.view-1 .hero-glow {
  width: 700px;
  height: 700px;
  transform: translate(calc(-50% + 520px), calc(-50% - 190px)) rotate(120deg);
  opacity: 0.8;
}

/* Section 2 — production */
.view-2 .hero-glow {
  width: 500px;
  height: 500px;
  transform: translate(calc(-50% - 320px), calc(-50% - 180px)) rotate(220deg);
  opacity: 0.9;
}

.bg-text {
  position: absolute;
  left: 0;
  right: 0;
  font-family: 'Gloock', serif;
  font-weight: 400;
  font-size: clamp(110px, 18vw, 260px);
  line-height: 0.95;
  color: transparent;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  opacity: 0.5;           /* przewijany napis w tle hero - 50% */
}
.bg-text-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}
.bg-text-track span {
  display: inline-block;
  -webkit-text-stroke: 1px #F06F1C;
}
.bg-text--top {
  top: 20px;
}
.bg-text--top .bg-text-track {
  animation: bg-slide-right 180s linear infinite;
}
.bg-text--bottom {
  bottom: -2%;
}
.bg-text--bottom .bg-text-track span {
  -webkit-text-stroke: 1px #CF2E05;
}
.bg-text--bottom .bg-text-track {
  animation: bg-slide-left 220s linear infinite;
}

@keyframes bg-slide-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bg-slide-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.fotorygo-logo {
  position: relative;
  z-index: 2;
  margin: 0 auto 60px;
  transform: translateY(-30px);
  width: clamp(324px, 33.6vw, 504px);
  display: block;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Gloock', serif;
  font-weight: 400;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 80px;
  transform: translateY(40px);
}

.scroll-indicator {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100px);
}
.scroll-indicator img {
  width: 48px;
  height: auto;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* VIDEO SECTION */
.video-section {
  z-index: 3;
  padding: 100px 24px;
}

.video-block {
  width: min(1080px, 90%);
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 38px);
  letter-spacing: 0.45em;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* PHOTO PRODUCTION SECTION with model */
.production-section {
  position: relative;
  padding: 80px 0 80px;
  text-align: center;
  overflow: hidden;
  justify-content: flex-end;
}

/* Domyślnie kontener przezroczysty (nie tworzy boksu) — układ desktop nadaje mu
   ramkę dopiero w @media (min-width:901px); na mobile dzieci działają jak dotąd. */
.prod-stage { display: contents; }

.production-bg {
  display: none;
}

/* Fanned-out photo spread */
.photo-fan {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 0;
  height: 0;
  z-index: 2;          /* zdjęcia zawsze NAD dekoracyjnym kołem (.hero-glow z-index:1) */
}
.fan-photo {
  position: absolute;
  left: -236px;
  top: -329px;
  width: 472px;
  height: 658px;
  object-fit: cover;
  transform-origin: 50% 145%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  cursor: pointer;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  /* kąt obrotu i warstwę ustawia script.js per zdjęcie (zależnie od liczby zdjęć w wachlarzu) */
  transform: rotate(var(--rot, 0deg));
  z-index: var(--z, 1);
}
.fan-photo:hover { transform: rotate(var(--rot, 0deg)) scale(1.1); z-index: 20; }
/* Domyślne kąty dla 5 zdjęć — fallback, gdy JS nie zbuduje wachlarza (np. brak HOME_IMAGES) */
.fan-photo:nth-child(1) { --rot: -17deg; --z: 1; }
.fan-photo:nth-child(2) { --rot: -8.5deg; --z: 2; }
.fan-photo:nth-child(3) { --rot: 0deg; --z: 3; }
.fan-photo:nth-child(4) { --rot: 8.5deg; --z: 4; }
.fan-photo:nth-child(5) { --rot: 17deg; --z: 5; }
@media (max-width: 900px) {
  /* HERO + VIDEO na jednym ekranie - układ odporny na skalę:
     flexbox do rozkładu, clamp() na rozmiary, jednostki względne zamiast sztywnych px */
  .hero {
    min-height: 55vh; min-height: 55dvh;
    height: auto;
    padding: clamp(96px, 14vh, 124px) 6vw clamp(8px, 2vh, 18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }
  .hero-title { transform: none; line-height: 1.3; margin: 0; }   /* interlinia +30%, bez przesuwania px */
  .bg-text { display: none; }                 /* bez pływających napisów w tle */
  .hero-glow { display: none; }               /* bez jeżdżącego koła po stronie */
  /* hamburger tej samej wielkości co na podstronach (40×28, bez powiększenia) */
  .hamburger { transform: none; width: 40px; height: 28px; }
  /* strzałka wyśrodkowana dokładnie między napisem a prostokątem video.
     Pozycję w pionie (top) ustawia skrypt mierząc oba elementy - responsywnie na każdym telefonie.
     Poniżej wyśrodkowanie w poziomie + skala; bottom to fallback, gdyby JS nie zadziałał. */
  .scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 8px;
    z-index: 9;
    transform: translateX(-50%) scale(0.84);
  }
  .video-section {
    min-height: 45vh; min-height: 45dvh;
    height: auto;
    padding: clamp(8px, 2vh, 18px) 3vw clamp(12px, 3vh, 28px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .video-block {
    transform: none;
    width: min(640px, 100%);
    max-height: 80%;
    font-size: clamp(13px, 3.6vw, 20px);      /* "VIDEO SOON" skaluje się płynnie (tu trafi wideo z YT) */
  }
  /* photo fan → swipe carousel: one photo visible, swipe left/right for the rest */
  .production-section { justify-content: center; padding: 12px 0; }
  .photo-fan {
    position: relative;
    left: auto; top: auto;
    width: 100%;
    height: auto;
    transform: translateY(26px);    /* wachlarz nieco niżej, by górka zdjęcia nie chowała się pod stałym nagłówkiem (90px) */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;       /* każde zdjęcie wyśrodkowane w pionie w swojej ramce */
    gap: 3vw;
    padding: 0 15vw;           /* boczny margines = (100-70)/2, by skrajne zdjęcia też się centrowały, a sąsiednie ledwo wystawały */
    box-sizing: border-box;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .photo-fan::-webkit-scrollbar { display: none; }
  .fan-photo {
    position: relative;
    left: auto; top: auto;
    flex: 0 0 70vw;            /* mniejsze niż ekran — wyśrodkowany kafelek z podglądem sąsiednich */
    width: 70vw;
    max-width: 70vw;
    height: auto;
    aspect-ratio: 4 / 5;       /* stała wysokość (proporcja zdjęć Home) → bez przeskoku układu przy wczytywaniu */
    max-height: 62vh;
    max-height: 62dvh;         /* zabezpieczenie na niskich ekranach; dvh = realna wysokość okna na iOS */
    object-fit: contain;       /* pełne zdjęcie, bez przycinania */
    transform: none !important;
    transition: none;
    box-shadow: none;
    scroll-snap-align: center;
  }
  .marquee-stack { margin: 14px 0 10px; }
  /* przecięcie białych pasków na środku (wyśrodkowane względem przycisku), nie z boku */
  .marquee--top { transform: translateX(0) rotate(-3deg); }
  .marquee--bottom { transform: translateX(0) rotate(3deg); }
  .cta-wrap { margin-top: 16px; transform: translateY(-50px); }
  /* "Odkryj więcej" zawsze biały na mobile (też w stanie hover/po stuknięciu) */
  .cta,
  .cta:hover { background: var(--white) !important; color: var(--black) !important; border-color: var(--white) !important; transform: none !important; }
  /* nagłówek: zamiast rotowanego sygnetu - wordmark jak na podstronach (54px, bez rotacji) */
  .brand-mark img.brand-sygnet { display: none; }
  .brand-mark img.brand-wordmark {
    display: block;
    width: auto;
    max-width: 56vw;
    height: 54px;
    object-fit: contain;
    object-position: left center;
    animation: none;
  }
  /* usuń logo nad napisem "Creative Photo Production" na mobile */
  .fotorygo-logo { display: none; }
}

/* Marquee bands */
.marquee-stack {
  position: relative;
  z-index: 8;
  margin: 80px 0 60px;
  pointer-events: none;
}
.marquee {
  background: var(--white);
  color: var(--black);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
  width: 200%;
  margin-left: -50%;
  opacity: 1;              /* pasek w pełni kryjący - 100% */
}
.marquee-track {
  display: inline-flex;
  font-family: 'Gloock', serif;
  font-weight: 400;
  font-size: clamp(20px, 2.3vw, 36px);
  animation: scroll 100s linear infinite;
}
.marquee-track span {
  display: inline-block;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "·";
  margin: 0 0.7em;
}

.marquee--top {
  transform: translateX(490px) rotate(-3deg);
  margin-bottom: -8px;
}
.marquee--bottom {
  transform: translateX(490px) rotate(3deg);
}
.marquee--bottom .marquee-track {
  animation-direction: reverse;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* CTA */
.cta-wrap {
  position: relative;
  z-index: 9;
  text-align: center;
  margin-top: 40px;
}
.cta {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Decorative bg circle behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -10%;
  width: 56vw;
  height: 56vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 640px) {
  .site-header { padding: 18px 20px; }
  .brand-mark img { width: 92px; height: 92px; }
  .hero { padding: 110px 18px 60px; }
  .fotorygo-logo { margin-bottom: 40px; width: 60%; }
  .hero-title { margin-bottom: 60px; }
  .bg-text { font-size: clamp(80px, 22vw, 200px); }
  .video-block { width: 92%; }
}

/* =====================================================================
   SKALOWANIE PROPORCJONALNE DESKTOP (1920×1080 → 100/125/150/175%)
   Wszystkie sztywne px z układu desktopowego liczone przez --s, więc cały
   layout kurczy się równo wraz z viewportem CSS i wygląda identycznie przy
   każdej skali Windows. Liczby zostają oryginalne (= px przy 1920), żeby
   intencja była czytelna. Tylko >900px — niżej działa layout mobilny.
   ===================================================================== */
@media (min-width: 901px) {
  /* Nagłówek */
  .site-header { padding: calc(28 * var(--s)) calc(40 * var(--s)); }
  .brand-mark img { width: calc(121 * var(--s)); height: calc(121 * var(--s)); }
  .hamburger { width: calc(44 * var(--s)); height: calc(30 * var(--s)); }
  .hamburger span:nth-child(1) { top: calc(2 * var(--s)); }
  .hamburger span:nth-child(2) { top: calc(14 * var(--s)); }
  .hamburger span:nth-child(3) { top: calc(26 * var(--s)); }
  .hamburger.is-open span:nth-child(1) { top: calc(14 * var(--s)); }
  .hamburger.is-open span:nth-child(3) { top: calc(14 * var(--s)); }

  /* Menu / overlay */
  .nav-glow {
    margin-left: calc(320 * var(--s));
    width: calc(800 * var(--s));
    height: calc(800 * var(--s));
    transform: translate(-50%, calc(-50% - 20 * var(--s)));
  }
  .nav-sygnet { width: calc(429 * var(--s)); }
  .nav-menu a { font-size: calc(80 * var(--s)); }

  /* Hero */
  .hero { padding: calc(140 * var(--s)) calc(24 * var(--s)) calc(80 * var(--s)); }
  .hero-glow,
  .view-0 .hero-glow {
    width: calc(600 * var(--s));
    height: calc(600 * var(--s));
    transform: translate(calc(-50% - 600 * var(--s)), calc(-50% - 210 * var(--s))) rotate(0deg);
  }
  .view-1 .hero-glow {
    width: calc(700 * var(--s));
    height: calc(700 * var(--s));
    transform: translate(calc(-50% + 520 * var(--s)), calc(-50% - 190 * var(--s))) rotate(120deg);
  }
  .view-2 .hero-glow {
    width: calc(500 * var(--s));
    height: calc(500 * var(--s));
    transform: translate(calc(-50% - 320 * var(--s)), calc(-50% - 180 * var(--s))) rotate(220deg);
  }
  .bg-text { font-size: calc(260 * var(--s)); }
  .bg-text--top { top: calc(20 * var(--s)); }
  .fotorygo-logo {
    margin: 0 auto calc(60 * var(--s));
    transform: translateY(calc(-30 * var(--s)));
    width: calc(504 * var(--s));
  }
  .hero-title {
    font-size: calc(132 * var(--s));
    margin-bottom: calc(80 * var(--s));
    transform: translateY(calc(40 * var(--s)));
  }
  .scroll-indicator {
    font-size: calc(13 * var(--s));
    gap: calc(14 * var(--s));
    transform: translateY(calc(100 * var(--s)));
  }
  .scroll-indicator img { width: calc(48 * var(--s)); }

  /* Sekcja wideo */
  .video-section { padding: calc(100 * var(--s)) calc(24 * var(--s)); }
  .video-block {
    width: min(calc(1080 * var(--s)), 90%);
    font-size: calc(38 * var(--s));
  }

  /* Sekcja produkcyjna: kompozycja (wachlarz + marquee + CTA) żyje w sztywnej
     ramce .prod-stage o wysokości 880*--s, WYŚRODKOWANEJ w sekcji. Dzięki temu
     cała kompozycja jest jednym, sztywnym blokiem skalowanym przez --s i nie
     przesuwa się ani nie tnie przy zmianie proporcji okna (różne skale Windows).
     Limit 100vh/880 w --s gwarantuje, że ramka zawsze mieści się w viewport. */
  .production-section { justify-content: center; padding: 0; }
  .prod-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: calc(880 * var(--s));
    padding-bottom: calc(80 * var(--s));   /* odstęp CTA od dołu, jak dawne padding sekcji */
  }
  .photo-fan { transform: translateY(calc(-60 * var(--s))); }   /* cały wachlarz nieco wyżej */
  .fan-photo {
    left: calc(-236 * var(--s));
    top: calc(-329 * var(--s));
    width: calc(472 * var(--s));
    height: calc(658 * var(--s));
  }

  /* Pasy marquee */
  .marquee-stack { margin: calc(80 * var(--s)) 0 calc(60 * var(--s)); }
  .marquee { padding: calc(12 * var(--s)) 0; }
  .marquee-track { font-size: calc(36 * var(--s)); }
  .marquee--top { transform: translateX(calc(490 * var(--s))) rotate(-3deg); margin-bottom: calc(-8 * var(--s)); }
  .marquee--bottom { transform: translateX(calc(490 * var(--s))) rotate(3deg); }

  /* CTA */
  .cta-wrap { margin-top: calc(40 * var(--s)); }
  .cta { padding: calc(18 * var(--s)) calc(48 * var(--s)); font-size: calc(12 * var(--s)); }
}
