/* =====================================================================
   ŚREDNI FORMAT — wynajem Hasselblad X2D II 100C
   Styl: luksusowy minimalizm (inspiracja hasselblad.com)
   ===================================================================== */

:root {
  /* Kolory */
  --ink:        #0b0b0c;   /* tło główne, graphite-black */
  --ink-soft:   #111113;   /* sekcje naprzemienne */
  --ink-card:   #161618;   /* karty / powierzchnie */
  --paper:      #f1ede4;   /* tekst główny, ciepła biel */
  --muted:      #908d85;   /* tekst drugorzędny */
  --muted-dim:  #5d5b56;   /* etykiety, podpisy */
  --line:       rgba(241, 237, 228, 0.12);
  --line-soft:  rgba(241, 237, 228, 0.06);
  --accent:     #c2a164;   /* champagne / mosiądz — bardzo oszczędnie */
  --accent-dim: rgba(194, 161, 100, 0.16);

  /* Typografia — neutralny neo-grotesk zbliżony do kroju Hasselblada */
  --display: "Archivo", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --ui: "Archivo", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Helvetica, system-ui, sans-serif;

  /* Miara */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------- Reset ---------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Grain / atmosfera */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(80px, 12vw, 160px); }
.section:nth-of-type(even) { background: var(--ink-soft); }

/* ---------------------------- Typografia pomocnicza ---------------------------- */
.eyebrow {
  font-family: var(--ui);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }

.h-display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: 0.5em;
}
.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  margin-top: 1.4em;
}
.lead--center { margin-inline: auto; text-align: center; }

.section-head { text-align: center; margin-bottom: clamp(48px, 7vw, 96px); }
.section-head .lead { margin-top: 1.6em; }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 88px); align-items: center;
}

/* ---------------------------- Przyciski ---------------------------- */
.btn {
  --bg: transparent; --fg: var(--paper); --bd: var(--line);
  font-family: var(--ui); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.7em; border-radius: 100px;
  border: 1px solid var(--bd); background: var(--bg); color: var(--fg);
  cursor: pointer; transition: all 0.4s var(--ease); position: relative;
}
.btn--accent { --bg: var(--accent); --fg: #1a1408; --bd: var(--accent); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--accent-dim); filter: brightness(1.07); }
.btn--line:hover, .btn--ghost:hover { border-color: var(--paper); background: rgba(241,237,228,0.06); }
.btn--ghost { padding: 0.72em 1.4em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand__text {
  font-family: var(--ui); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.01em; line-height: 1; display: flex; flex-direction: column; gap: 0.3em;
}
.brand__text small { font-weight: 500; font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-family: var(--ui); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--muted); transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 6rem; overflow: hidden;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.78) 0%, rgba(11,11,12,0.35) 35%, rgba(11,11,12,0.55) 75%, var(--ink) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(11,11,12,0.2), rgba(11,11,12,0.85));
}
.hero .shot--bg { position: absolute; inset: 0; z-index: 1; border: 0; border-radius: 0; }
.hero__content { position: relative; z-index: 3; }
.hero__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.6rem, 8.5vw, 6.8rem); line-height: 0.98;
  letter-spacing: -0.035em; margin: 0.3em 0 0;
}
.hero__title span { display: block; }
.hero__title--rent {
  max-width: 11ch;
}
.hero__sub {
  font-family: var(--ui); font-weight: 500; letter-spacing: 0.04em;
  font-size: clamp(1rem, 2.4vw, 1.5rem); color: var(--paper); margin-top: 0.6em; opacity: 0.85;
}
.hero__lead { color: var(--muted); max-width: 55ch; margin-top: 1.6em; font-size: clamp(1rem, 1.4vw, 1.12rem); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  max-width: 760px; margin-top: 1.45em;
}
.hero__proof li {
  font-family: var(--ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper);
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(11, 11, 12, 0.48); backdrop-filter: blur(10px);
  padding: 0.72em 1em;
}
.hero__proof li:first-child {
  color: var(--accent);
  border-color: rgba(194, 161, 100, 0.42);
  background: rgba(194, 161, 100, 0.09);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1em; }

.hero__strip {
  position: relative; z-index: 3; margin-top: clamp(40px, 6vw, 72px);
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border-top: 1px solid var(--line);
}
.hero__strip li {
  padding: 1.4rem 0.5rem 0; display: flex; flex-direction: column; gap: 0.25em;
  position: relative;
}
.hero__strip li + li::before {
  content: ""; position: absolute; left: -0.5px; top: 1.4rem; bottom: 0; width: 1px; background: var(--line-soft);
}
.hero__strip b { font-family: var(--display); font-weight: 300; font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
.hero__strip span { font-family: var(--ui); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.hero__scroll {
  position: absolute; z-index: 3; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 20px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--accent); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ============================================================
   ZESTAW
   ============================================================ */
.kit__list { margin-top: 2.4em; border-top: 1px solid var(--line); }
.kit__list li, .rental__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2em; align-items: baseline;
  padding: 1.05em 0; border-bottom: 1px solid var(--line-soft);
  color: var(--muted); font-size: 0.98rem;
}
.kit__list span, .rental__list span {
  font-family: var(--ui); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.1em;
}
.kit__list b, .rental__list b { color: var(--paper); font-weight: 600; }

/* ============================================================
   KORZYŚCI
   ============================================================ */
.benefit { margin-block: clamp(48px, 7vw, 96px); }
.benefit--rev .benefit__text { order: 2; }
.benefit__no {
  font-family: var(--display); font-size: 3.2rem; font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px var(--muted-dim); line-height: 1; margin-bottom: 0.2em;
}
.benefit__text h3 {
  font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 0.5em;
}
.benefit__text p { color: var(--muted); max-width: 42ch; }
.vs {
  margin-top: 1.6em !important; font-family: var(--ui); font-size: 0.78rem;
  letter-spacing: 0.06em; color: var(--paper); display: inline-flex; flex-wrap: wrap; gap: 0.3em;
  padding: 0.7em 1.1em; border: 1px solid var(--line); border-radius: 100px; background: var(--ink-card);
}
.vs i { font-style: normal; color: var(--muted); }
.vs b { color: var(--accent); font-weight: 600; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); margin-top: clamp(48px, 6vw, 80px);
}
.stats li { padding: 2.2em 1.4em 2.2em 0; border-bottom: 1px solid var(--line); }
.stats b { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 4.5vw, 3.4rem); display: block; line-height: 1; }
.stats span { font-family: var(--ui); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.9em; display: block; max-width: 22ch; }

/* Sensor compare — relatywne porównanie wielkości matryc (dosunięte do prawego-dolnego rogu) */
.sensor { margin-top: clamp(56px, 7vw, 96px); display: flex; flex-direction: column; align-items: center; gap: 1.6em; }
.sensor__box { border-radius: 3px; }
.sensor__box--mf {
  width: clamp(260px, 44vw, 440px); aspect-ratio: 44 / 33; position: relative;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  border-radius: 4px; overflow: visible;
}
.sensor__box--ff {
  width: 81.8%; aspect-ratio: 36 / 24; position: absolute; right: 0; bottom: 0;
  border: 1px dashed var(--muted); background: rgba(11, 11, 12, 0.42);
}
.sensor__box--apsc {
  width: 65.3%; aspect-ratio: 23.5 / 15.6; position: absolute; right: 0; bottom: 0;
  border: 1px solid rgba(241, 237, 228, 0.55); background: rgba(11, 11, 12, 0.5);
}
.sensor__box--m43 {
  width: 73.6%; aspect-ratio: 17.3 / 13; position: absolute; right: 0; bottom: 0;
  border: 1px dotted var(--accent);
  background: linear-gradient(135deg, rgba(194, 161, 100, 0.14), rgba(11, 11, 12, 0.55));
}
.sensor__label {
  position: absolute; top: 0.55em; left: 0.75em; z-index: 2;
  font-family: var(--ui); font-size: clamp(0.52rem, 1.5vw, 0.64rem);
  letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}
.sensor__label--mf   { color: var(--accent); }
.sensor__label--ff   { color: var(--paper); }
.sensor__label--apsc { color: var(--muted); }
.sensor__label--m43  { color: var(--accent); }
.sensor figcaption { color: var(--muted); font-size: 0.92rem; text-align: center; max-width: 52ch; line-height: 1.6; }
.sensor figcaption b { color: var(--paper); font-weight: 500; }

/* ---- Sekcja matryc na tle korpusu (grafika po lewej, w wolnej przestrzeni) ---- */
.sensorband { 
  position: relative; 
  isolation: isolate; 
  overflow: hidden; 
  margin-top: clamp(44px, 6vw, 92px); 
  background: var(--ink);
  /* ZMIANA 1: Ustawiamy tło bezpośrednio na kontenerze i dajemy mu zachowanie Hasselblada */
  background-image: url("images/cmos-pc.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sensorband::before {
  /* ZMIANA 2: Usuwamy stare podejście */
  display: none;
}
.sensorband::after {
  /* Delikatny cień tylko pod samym tekstem, żeby był czytelny (Hasselblad ma ciemne zdjęcie, tu dajemy lekki gradient z lewej) */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.5) 40%, rgba(11, 11, 12, 0) 60%);
  pointer-events: none;
}
.sensorband__inner {
  position: relative; z-index: 2;
  /* ZMIANA 3: Layout jak w Hasselblad - blok blokowy ograniczający tekst, zamiast sztywnego gridu */
  display: block;
  min-height: clamp(400px, 50vw, 720px); 
  padding-block: clamp(60px, 8vw, 110px);
}
.sensorband .sensor {
  /* Ograniczamy szerokość karty i nie dajemy jej na prawą stronę */
  margin-top: 0; 
  margin-right: auto;
  align-items: flex-start; text-align: left; 
  max-width: 620px;
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border: none; border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.sensorband .sensor {
  margin-top: 0; align-items: flex-start; text-align: left; max-width: 620px;
  background: linear-gradient(150deg, rgba(18, 18, 20, 0.80), rgba(11, 11, 12, 0.55));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(22px, 3vw, 42px);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.95);
}
/* Szersza wizualizacja: wszystkie matryce skalują się proporcjonalnie dzięki zagnieżdżonym %.
   460px daje wystarczająco miejsca na etykietę Micro 4/3 bez fałszowania proporcji. */
.sensorband .sensor__box--mf { width: min(100%, 460px); }
.sensorband .sensor figcaption { text-align: left; }
.sensor__kicker { display: flex; flex-direction: column; gap: 0.6em; margin-bottom: 0.4em; }
.sensor__kicker b { font-family: var(--display); font-weight: 300; font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--paper); line-height: 1.1; }

@media (max-width: 880px) {
  .sensorband::before { background-size: cover; background-position: center center; opacity: 0.35; }
  .sensorband::after { background: linear-gradient(180deg, rgba(11, 11, 12, 0.5) 0%, rgba(11, 11, 12, 0.84) 62%); }
  .sensorband__inner { grid-template-columns: 1fr; min-height: auto; gap: 1.4em; }
  .sensorband .sensor { align-items: center; text-align: center; max-width: 560px; margin-inline: auto; }
  .sensorband .sensor figcaption { text-align: center; }
  .sensor__kicker { align-items: center; }
}

/* ============================================================
   OBIEKTYW
   ============================================================ */
.lens__shots {
  /* Większe zdjęcia tylko w sekcji "Jeden obiektyw" — bez zmiany proporcji kadrów. */
  max-width: 1680px;
  padding-inline: clamp(16px, 3vw, 48px);
  gap: clamp(18px, 2vw, 32px);
  margin-bottom: clamp(56px, 7vw, 88px);
}
.lens__specs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.lens__specs li { padding: 2em 1.2em 0 0; }
.lens__specs b { font-family: var(--display); font-weight: 300; font-size: clamp(1.4rem, 3vw, 2rem); display: block; }
.lens__specs span { font-family: var(--ui); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.8em; display: block; }

/* ============================================================
   GALERIA
   ============================================================ */
.gallery .section-head { margin-bottom: clamp(28px, 4vw, 52px); }

/* Karuzela kadrów */
.carousel { position: relative; max-width: calc(var(--maxw) + 120px); margin-inline: auto; padding-inline: var(--pad); }
.carousel__stage { position: relative; }
.carousel__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; border-radius: 8px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }
.carousel__track { display: flex; gap: clamp(14px, 2vw, 26px); padding-block: 4px; }

.slide {
  position: relative; flex: 0 0 auto; scroll-snap-align: center;
  height: clamp(320px, 54vh, 540px);
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--ink-card); isolation: isolate;
}
.slide__media { height: 100%; }
.slide__media img { height: 100%; width: auto; max-width: none; display: block; }

.slide__exif {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-family: var(--ui); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper);
  background: linear-gradient(135deg, rgba(11, 11, 12, 0.72), transparent);
  padding: 0.7em 1.1em 0.9em; border-bottom-right-radius: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8); transition: opacity 0.4s ease;
}
.slide:hover .slide__exif, .slide:focus-within .slide__exif, .slide.is-revealed .slide__exif { opacity: 0; }

.slide__note {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; z-index: 3;
  transform: translateY(102%); transition: transform 0.55s var(--ease);
  background: linear-gradient(to top, rgba(8, 8, 9, 0.97) 0%, rgba(11, 11, 12, 0.88) 68%, rgba(11, 11, 12, 0) 100%);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  padding: clamp(16px, 2.4vw, 26px); padding-top: clamp(30px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 0.55em;
}
.slide__note-by { font-family: var(--ui); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.slide__note-text { font-family: var(--body); font-weight: 300; font-size: clamp(0.86rem, 1.2vw, 0.98rem); line-height: 1.55; color: var(--paper); }
.slide__note-by, .slide__note-text { opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.18s, transform 0.45s var(--ease) 0.18s; }
.slide:hover .slide__note, .slide:focus-within .slide__note, .slide.is-revealed .slide__note { transform: translateY(0); }
.slide:hover .slide__note-by, .slide:hover .slide__note-text,
.slide:focus-within .slide__note-by, .slide:focus-within .slide__note-text,
.slide.is-revealed .slide__note-by, .slide.is-revealed .slide__note-text { opacity: 1; transform: none; }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(11, 11, 12, 0.6); border: 1px solid var(--line); color: var(--paper);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s;
}
.carousel__nav:hover { background: rgba(11, 11, 12, 0.9); border-color: var(--accent); color: var(--accent); }
.carousel__nav:disabled { opacity: 0; pointer-events: none; }
.carousel__nav--prev { left: clamp(4px, 1vw, 16px); }
.carousel__nav--next { right: clamp(4px, 1vw, 16px); }

.carousel__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.7rem; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: var(--line); transition: background 0.3s, transform 0.3s; }
.carousel__dot:hover { background: var(--muted); }
.carousel__dot.is-active { background: var(--accent); transform: scale(1.35); }

@media (hover: none) {
  .carousel__nav { display: none; }
}
@media (max-width: 560px) {
  .slide { height: clamp(300px, 64vh, 460px); }
}

/* ============================================================
   PLACEHOLDERY ZDJĘĆ (.shot)
   ============================================================ */
.shot {
  position: relative; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  aspect-ratio: 3 / 4; background:
    radial-gradient(130% 120% at 28% 18%, #202023 0%, transparent 60%),
    linear-gradient(140deg, #161618 0%, #0e0e10 58%, #1a1a1d 100%);
  isolation: isolate;
}
.shot::after { /* delikatne ziarno na placeholderze */
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--tall { aspect-ratio: 3 / 4; }
.shot--igwide { aspect-ratio: 4 / 3; }
.shot--wide { aspect-ratio: 16 / 10; }
.shot--bg { aspect-ratio: auto; }
.shot--xpan { aspect-ratio: 65 / 24; }

.shot--squer {
  aspect-ratio: 1 / 1;
}

.ph-glyph {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  opacity: 0.5;
}
.ph-glyph::before, .ph-glyph::after {
  content: ""; position: absolute; border-radius: 50%;
}
.ph-glyph::before { width: 34px; height: 34px; border: 1px solid var(--muted-dim); }
.ph-glyph::after { width: 6px; height: 6px; background: var(--accent); opacity: 0.7; }

.shot figcaption {
  position: absolute; left: 1em; bottom: 0.9em; z-index: 3;
  font-family: var(--ui); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--muted);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.shot .shot__caption {
  position: absolute;
  left: 1em;
  bottom: 0.9em;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25em;

  font-family: var(--ui);
  font-size: 0.66rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  pointer-events: none;
}

.shot .shot__credit {
  opacity: 0.85;
}



.shot .tag {
  position: absolute; top: 0.9em; right: 0.9em; z-index: 3;
  font-family: var(--ui); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 0.35em 0.8em;
  background: rgba(11,11,12,0.4); backdrop-filter: blur(4px);
}
.hero .shot--bg figcaption { left: var(--pad); bottom: calc(var(--pad) + 0.5em); }
.hero .shot--bg .tag { top: 6.5rem; right: var(--pad); }

/* ============================================================
   ZOOM 300% NA ZDJĘCIACH — sekcje Korzyści + Obiektyw
   ============================================================ */
.shot.zoom-300 {
  --zoom-x: 50%;
  --zoom-y: 50%;
  cursor: zoom-in;
}

.shot.zoom-300 img {
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}

.shot.zoom-300:hover img,
.shot.zoom-300.is-zooming img {
  transform: scale(3);
}

/* Jeżeli dodasz <img> do placeholdera, symbol zastępczy automatycznie znika. */
.shot.zoom-300 img + .ph-glyph {
  display: none;
}

/* Overlaye zostają czytelne i nie przechwytują kursora. */
.shot.zoom-300 figcaption,
.shot.zoom-300 .tag {
  pointer-events: none;
}

@media (hover: none), (pointer: coarse) {
  .shot.zoom-300 {
    cursor: default;
  }

  .shot.zoom-300:hover img,
  .shot.zoom-300.is-zooming img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shot.zoom-300 img {
    transition: none;
  }

  .shot.zoom-300:hover img,
  .shot.zoom-300.is-zooming img {
    transform: none;
  }
}


/* ============================================================
   KALKULATOR
   ============================================================ */
.calc__app {
  max-width: 760px; margin-inline: auto;
  border: 1px solid var(--line); border-radius: 16px; background: var(--ink-card);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.calc__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1em; flex-wrap: wrap; margin-bottom: 2em; }
.calc__head .lbl { font-family: var(--ui); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.calc__days { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.calc__days--sm { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.calc__head-rate { text-align: right; }
.calc__days small { font-size: 0.32em; color: var(--muted); font-family: var(--ui); letter-spacing: 0.1em; margin-left: 0.4em; vertical-align: middle; }

/* Slider */
.calc__slider { position: relative; padding: 0.4em 0 1.4em; }
.range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(to right, var(--accent) var(--fill, 0%), var(--line) var(--fill, 0%));
  outline: none; cursor: pointer;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper); border: 5px solid var(--accent); cursor: grab;
  box-shadow: 0 4px 16px -2px rgba(0,0,0,0.6); transition: transform 0.25s var(--ease);
}
.range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(0.96); }
.range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 5px solid var(--accent); cursor: grab;
}
.range::-moz-range-track { height: 2px; background: var(--line); }
.calc__ticks { display: flex; justify-content: space-between; margin-top: 1em; }
.calc__ticks span { font-family: var(--ui); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--muted-dim); }

/* Quick pills */
.calc__pills { display: flex; flex-wrap: wrap; gap: 0.6em; margin: 1.6em 0 2em; }
.pill {
  font-family: var(--ui); font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 0.6em 1.1em; border-radius: 100px; border: 1px solid var(--line);
  background: transparent; color: var(--muted); cursor: pointer; transition: all 0.3s var(--ease);
}
.pill:hover { border-color: var(--muted); color: var(--paper); }
.pill.is-active { border-color: var(--accent); color: #1a1408; background: var(--accent); }

/* Wynik */
.calc__result {
  border-top: 1px solid var(--line); padding-top: 1.8em; margin-top: 0.4em;
  display: grid; gap: 1em;
}
.calc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1em; }
.calc__row .k { font-family: var(--ui); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.calc__row .v { font-family: var(--body); font-size: 1rem; color: var(--paper); }
.calc__row--save .v { color: var(--accent); }
.calc__total { display: flex; justify-content: space-between; align-items: baseline; gap: 1em; margin-top: 0.6em; padding-top: 1.2em; border-top: 1px solid var(--line); }
.calc__total .k { font-family: var(--ui); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.calc__total .amount { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1; color: var(--paper); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.calc__total .amount sup { font-size: 0.34em; color: var(--accent); font-family: var(--ui); letter-spacing: 0.06em; top: -1.4em; margin-left: 0.3em; }
.calc__note { font-family: var(--ui); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--muted-dim); margin-top: 1.4em; line-height: 1.6; }

/* Stan indywidualny (powyżej 2 tygodni) */
.calc__custom { text-align: center; padding: 1.4em 0 0.4em; animation: fadeUp 0.5s var(--ease) both; }
.calc__custom .big { font-family: var(--display); font-weight: 300; font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.05; }
.calc__custom .big b { color: var(--accent); font-weight: 300; }
.calc__custom p { color: var(--muted); max-width: 38ch; margin: 1em auto 1.8em; }

/* mała animacja wejścia bloku wyniku */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.calc__swap { animation: fadeUp 0.45s var(--ease) both; }

/* ============================================================
   KONTAKT / STOPKA
   ============================================================ */
.contact { text-align: center; }
.contact__inner { display: flex; flex-direction: column; align-items: center; }
.contact__title { font-size: clamp(2.2rem, 6vw, 4.4rem); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4em; }
.contact__note { font-family: var(--ui); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-dim); margin-top: 2em; }

.footer { border-top: 1px solid var(--line); padding-block: 3rem; background: var(--ink); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2em; }
.footer__brand { font-family: var(--ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.footer__legal { font-size: 0.72rem; color: var(--muted-dim); max-width: 52ch; line-height: 1.6; }
.footer__copy { font-family: var(--ui); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }

/* ============================================================
   MAPA WYSYŁKI (animowana — cała Polska)
   ============================================================ */
.pl-mapwrap { display: flex; flex-direction: column; gap: 1.2em; }
.pl-map { width: 100%; height: auto; display: block; overflow: visible; }

.pl-fill { fill: rgba(241, 237, 228, 0.028); stroke: none; }
.pl-border {
  fill: none; stroke: var(--line); stroke-width: 1.4; stroke-linejoin: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
}
.pl-mapwrap.is-in .pl-border { animation: plDraw 1.7s var(--ease) forwards; }

.pl-route {
  fill: none; stroke: var(--accent); stroke-width: 1; opacity: 0.42;
  stroke-dasharray: 100; stroke-dashoffset: 100;
}
.pl-mapwrap.is-in .pl-route { animation: plDraw 1.1s var(--ease) forwards; }
@keyframes plDraw { to { stroke-dashoffset: 0; } }

.parcel { filter: drop-shadow(0 0 5px rgba(194, 161, 100, 0.6)); }
.parcel rect { fill: var(--accent); }

.dest { fill: var(--paper); stroke: var(--ink); stroke-width: 1.5; }
.pl-cities .dest { animation: plPulse 2.6s var(--ease) infinite; }
@keyframes plPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

.dest-label, .hub-label {
  font-family: var(--ui); fill: var(--muted);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
}
.hub-label { fill: var(--accent); font-weight: 600; }

.hub-dot { fill: var(--accent); }
.hub-ring {
  fill: none; stroke: var(--accent); stroke-width: 1.4;
  transform-box: fill-box; transform-origin: center;
  animation: plRing 2.8s var(--ease) infinite;
}
.hub-ring--2 { animation-delay: 1.4s; }
@keyframes plRing { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(3.6); opacity: 0; } }

.pl-cap {
  display: flex; align-items: center; gap: 0.7em;
  font-family: var(--ui); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.pl-cap__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none;
  animation: plBlink 1.8s var(--ease) infinite;
}
@keyframes plBlink {
  0% { box-shadow: 0 0 0 0 rgba(194, 161, 100, 0.5); }
  70%, 100% { box-shadow: 0 0 0 11px rgba(194, 161, 100, 0); }
}

/* ============================================================
   POPUP PROMOCJI (z licznikiem)
   ============================================================ */
.promo {
  position: relative; max-width: 760px; margin: 0 auto 1.6rem;
  border: 1px solid var(--accent); border-radius: 14px;
  background: linear-gradient(180deg, rgba(194, 161, 100, 0.1), var(--ink-card));
  padding: clamp(20px, 3vw, 26px) clamp(20px, 3vw, 32px);
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  align-items: center; justify-content: space-between;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  opacity: 0; transform: translateY(14px) scale(0.98);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.promo.is-on { opacity: 1; transform: none; }
.promo.is-closing { opacity: 0; transform: translateY(-8px) scale(0.98); pointer-events: none; }
.promo__close {
  position: absolute; top: 8px; right: 14px; background: none; border: 0;
  color: var(--muted); font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 4px; transition: color 0.3s;
}
.promo__close:hover { color: var(--paper); }
.promo__head { flex: 1 1 260px; min-width: 220px; }
.promo__badge {
  display: inline-block; font-family: var(--ui); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #1a1408;
  background: var(--accent); padding: 0.4em 0.85em; border-radius: 100px;
}
.promo__title {
  font-family: var(--display); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem); margin-top: 0.7em; line-height: 1.1;
}
.promo__text { color: var(--muted); font-size: 0.9rem; margin-top: 0.45em; max-width: 42ch; }
.promo__code { font-family: var(--ui); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin-top: 0.8em; }
.promo__code b { color: var(--accent); letter-spacing: 0.14em; }
.promo__timer { display: flex; gap: 0.6rem; }
.promo__seg {
  display: flex; flex-direction: column; align-items: center; min-width: 54px;
  border: 1px solid var(--line); border-radius: 10px; padding: 0.6em 0.35em;
  background: rgba(11, 11, 12, 0.45);
}
.promo__seg b {
  font-family: var(--display); font-weight: 500; font-size: 1.55rem; line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.promo__seg span { font-family: var(--ui); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.55em; }
.promo__over { font-family: var(--ui); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 560px) {
  .promo { justify-content: center; text-align: left; }
  .promo__timer { width: 100%; justify-content: space-between; }
}

/* ============================================================
   ANIMACJE WEJŚCIA (scroll reveal)
   ============================================================ */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in, .reveal-up.is-in { opacity: 1; transform: none; }

/* Hero działa jako „miękki preloader”: wolniejsze wejście daje czas na cache zdjęć. */
.hero .reveal {
  transform: translateY(34px);
  transition-duration: 1.8s;
  will-change: opacity, transform;
}
.hero .reveal[data-d="0"] { transition-delay: 0.20s; }
.hero .reveal[data-d="1"] { transition-delay: 0.48s; }
.hero .reveal[data-d="2"] { transition-delay: 0.78s; }
.hero .reveal[data-d="3"] { transition-delay: 1.08s; }
.hero .reveal[data-d="4"] { transition-delay: 1.38s; }
.hero .reveal[data-d="5"] { transition-delay: 1.68s; }
.hero .reveal[data-d="6"] { transition-delay: 2.00s; }
.hero .reveal[data-d="7"] { transition-delay: 2.34s; }

html.is-media-warming .hero__scroll {
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
html.is-media-ready .hero__scroll { opacity: 1; pointer-events: auto; }



.photo-authenticity {
  max-width: 680px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;

  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    150deg,
    rgba(18, 18, 20, 0.72),
    rgba(11, 11, 12, 0.38)
  );
  backdrop-filter: blur(10px);
}

.photo-authenticity__label {
  font-family: var(--ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.photo-authenticity__text {
  max-width: 58ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}


/* ============================================================
   RESPONSYWNOŚĆ
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .lens__shots { padding-inline: var(--pad); gap: clamp(18px, 4vw, 32px); }
  .benefit--rev .benefit__text { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats li { padding: 1.6em 1em 1.6em 0; }
  .lens__specs { grid-template-columns: 1fr 1fr; gap: 0.5em 1.5em; }
  .lens__specs li { padding-top: 1.6em; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__strip { grid-template-columns: 1fr 1fr; gap: 1px 0; }
  .hero__strip li:nth-child(3), .hero__strip li:nth-child(4) { padding-top: 1.4rem; }
}
@media (max-width: 540px) {
  .hero__title--rent { max-width: 12ch; }
  .hero__proof { gap: 0.5rem; }
  .hero__proof li { width: 100%; font-size: 0.66rem; }
  .hero__strip { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .calc__head { align-items: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* Szanuj preferencje ruchu */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal, .reveal-up { opacity: 1 !important; transform: none !important; transition: none; }
  /* mapa: pokaż granicę i trasy statycznie (rysowanie wyłączone) */
  .pl-border, .pl-route { stroke-dashoffset: 0 !important; }
}

/* ============================================================
   HERO — wersja bez ucinania na MacBookach i telefonach
   Dopisane jako ostatni override, żeby nadpisać wcześniejsze reguły.
   ============================================================ */

/* Niższe ekrany laptopów: hero ma naturalną wysokość + zapas na dole. */
@media (max-height: 860px) and (min-width: 901px) {
  .hero {
    min-height: auto;
    height: auto;
    justify-content: flex-start;
    overflow: visible;
    padding-top: clamp(6.75rem, 11vh, 8rem);
    padding-bottom: clamp(3.5rem, 8vh, 5.5rem);
  }

  .hero__content {
    padding-top: clamp(1.25rem, 3vh, 2.25rem);
  }

  .hero__title {
    font-size: clamp(3.2rem, 6.4vw, 5.35rem);
    line-height: 0.96;
    margin-top: 0.22em;
  }

  .hero__sub {
    margin-top: 0.45em;
  }

  .hero__lead {
    margin-top: 1em;
    font-size: clamp(0.95rem, 1.15vw, 1.04rem);
    line-height: 1.52;
    max-width: 52ch;
  }

  .hero__proof {
    margin-top: 1.05em;
  }

  .hero__proof li {
    padding: 0.58em 0.9em;
    font-size: 0.66rem;
  }

  .hero__actions {
    margin-top: 1.25em;
  }

  .hero__actions .btn {
    padding: 0.8em 1.35em;
    font-size: 0.74rem;
  }

  .hero__strip {
    margin-top: clamp(28px, 4vh, 46px);
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
  }

  .hero__strip li {
    padding-top: 1rem;
    padding-bottom: 0.25rem;
  }

  .hero__scroll {
    display: none;
  }
}

/* Telefony i tablety: żadnego przycinania — sekcja rośnie zgodnie z treścią. */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    height: auto;
    justify-content: flex-start;
    overflow: visible;
    padding-top: calc(7.25rem + env(safe-area-inset-top));
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }

  .hero__content {
    padding-top: 1.25rem;
  }

  .hero__title {
    font-size: clamp(3rem, 12.5vw, 4.4rem);
    line-height: 0.98;
    margin-top: 0.24em;
  }

  .hero__title--rent {
    max-width: 10.5ch;
  }

  .hero__sub {
    font-size: clamp(1rem, 4vw, 1.22rem);
    line-height: 1.25;
    margin-top: 0.65em;
  }

  .hero__lead {
    max-width: 100%;
    margin-top: 1.05em;
    font-size: clamp(0.98rem, 3.6vw, 1.08rem);
    line-height: 1.5;
  }

  .hero__proof {
    margin-top: 1.15em;
  }

  .hero__actions {
    margin-top: 1.35em;
  }

  .hero__scroll {
    display: none;
  }

  .hero__strip {
    margin-top: clamp(32px, 8vw, 52px);
    padding-bottom: 2.75rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero__strip li {
    padding-top: 1.2rem;
    padding-bottom: 1.15rem;
  }

  .hero__strip li + li::before {
    top: 1.2rem;
    bottom: 1.15rem;
  }

  .hero__strip b {
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1;
  }

  .hero__strip span {
    line-height: 1.35;
  }
}

/* Węższe telefony: dodatkowo zmniejszamy pion i pełne przyciski zostają czytelne. */
@media (max-width: 540px) {
  .hero {
    padding-top: calc(7.8rem + env(safe-area-inset-top));
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }

  .hero__content {
    padding-top: 1rem;
  }

  .hero__title {
    font-size: clamp(2.8rem, 12vw, 3.55rem);
    line-height: 0.98;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .hero__lead {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero__proof li {
    padding: 0.62em 0.9em;
    line-height: 1.25;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9em 1.15em;
    font-size: 0.74rem;
  }

  .hero__strip {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 3.25rem;
    margin-bottom: 0;
  }

  .hero__strip li {
    padding: 1.15rem 0.85rem 1.25rem 0;
    min-height: 112px;
  }
}

/* Bardzo niskie telefony / tryb poziomy: bezpieczeństwo przed przycięciem. */
@media (max-width: 900px) and (max-height: 760px) {
  .hero {
    padding-top: calc(7rem + env(safe-area-inset-top));
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .hero__title {
    font-size: clamp(2.65rem, 10.5vw, 3.6rem);
  }

  .hero__strip {
    padding-bottom: 3.5rem;
  }
}
