/* ════════════════════════════════════════════════
   OBSIDIAN DETAIL STUDIO — Shared Styles
════════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg:       #060606;
  --surface:  #0c0c0c;
  --lift:     #131313;
  --line:     #1d1d1d;
  --gray-4:   #3a3a3a;
  --gray-3:   #606060;
  --gray-2:   #909090;
  --gray-1:   #b8b6b2;
  --paper:    #f0ede8;
  --ink:      #111010;
  --white:    #f5f3ef;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior:smooth; overflow-x:hidden; }

body {
  background: var(--bg);
  color: var(--gray-1);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

img {
  display: block;
  user-select: none;
}

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 56px;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 20px 56px;
  background: rgba(6,6,6,.94);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav-brand {
  display: flex; flex-direction: column; gap: 3px;
  text-decoration: none;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 400;
  letter-spacing: .1em; color: var(--white);
  line-height: 1;
}
.nav-brand-sub {
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gray-3);
  line-height: 1;
}
.nav-links {
  display: flex; gap: 44px; list-style: none;
}
.nav-links a {
  font-family: var(--sans); font-size: .6rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-1); text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--white);
}
.nav-cta {
  font-family: var(--sans); font-size: .58rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-2); text-decoration: none;
  border: 1px solid var(--line); padding: 10px 22px;
  transition: border-color .3s, color .3s;
}
.nav-cta:hover { border-color: var(--gray-3); color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  z-index: 210;
}
.nav-burger span {
  display: block; width: 100%; height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(6,6,6,.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--sans); font-size: .85rem; font-weight: 300;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gray-1); text-decoration: none;
  transition: color .3s;
}
.nav-mobile a.active, .nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-cta {
  display: inline-block; margin-top: 8px;
}

/* ════════════════════════════════════════════════
   PAGE TOP (non-hero pages)
════════════════════════════════════════════════ */
.page-top {
  padding-top: 130px;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  height: 100vh; min-height: 720px;
  display: grid;
  grid-template-columns: 26vw 1fr;
  position: relative; overflow: hidden;
}

.hero-text-panel {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 40px 80px 56px;
  background: linear-gradient(
    105deg,
    rgba(6,6,6,1)    0%,
    rgba(6,6,6,.98)  55%,
    rgba(6,6,6,.85)  75%,
    rgba(6,6,6,.4)   90%,
    transparent      100%
  );
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: .52rem; font-weight: 200;
  letter-spacing: .45em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(14px);
  animation: up .9s ease .4s forwards;
}
.hero-eyebrow::before { content:''; width:18px; height:1px; background:var(--gray-4); }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.2vw, 5.2rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: up 1.1s ease .7s forwards;
}
.hero-headline em { font-style: italic; }

.hero-sub {
  font-family: var(--sans); font-size: .78rem; font-weight: 200;
  line-height: 1.9; color: var(--gray-3);
  max-width: 230px; margin-bottom: 52px;
  opacity: 0; transform: translateY(14px);
  animation: up .9s ease 1.1s forwards;
}

.hero-actions {
  display: flex; flex-direction: column; gap: 16px;
  opacity: 0; transform: translateY(14px);
  animation: up .9s ease 1.3s forwards;
}
.hero-action-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .6rem; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px;
  width: fit-content;
  transition: gap .4s ease, border-color .3s;
}
.hero-action-primary:hover { gap: 20px; border-bottom-color: rgba(255,255,255,.6); }
.hero-action-primary::after { content: '↗'; }
.hero-action-secondary {
  font-family: var(--sans); font-size: .56rem; font-weight: 200;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-3); text-decoration: none;
  transition: color .3s;
}
.hero-action-secondary:hover { color: var(--gray-1); }

.hero-image-panel {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 75% 55% at 55% 48%, #1f1b17 0%, #0a0908 100%);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
  filter: brightness(.68) contrast(1.08) saturate(.75);
  transform: scale(1.06);
  transition: transform 14s ease, filter 3s ease;
}
.hero-img.loaded {
  transform: scale(1.0);
  filter: brightness(.72) contrast(1.05) saturate(.8);
}
.hero-image-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,6,6,.35) 0%, transparent 30%);
  pointer-events: none; z-index: 1;
}

.hero-scroll {
  position: absolute; bottom: 80px; right: 56px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; animation: up .8s ease 2s forwards;
}
.hero-scroll span {
  font-family: var(--sans); font-size: .48rem; font-weight: 200;
  letter-spacing: .45em; text-transform: uppercase; color: var(--gray-3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gray-4), transparent);
  animation: pulse 2.2s ease infinite 2.5s;
}

/* ════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0; background: var(--surface);
}
.ticker-wrap {
  display: flex; width: fit-content;
  animation: ticker 45s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 0 28px; flex-shrink: 0;
  font-family: var(--sans); font-size: .55rem; font-weight: 200;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gray-3);
  white-space: nowrap;
}
.ticker-sep { width: 3px; height: 3px; background: var(--gray-4); border-radius: 50%; }

/* ════════════════════════════════════════════════
   CAR TYPE SELECTOR (Usługi page)
════════════════════════════════════════════════ */
.csel {
  background: var(--bg);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.csel-header { padding: 0 24px 44px; }
.csel-eyebrow {
  font-family: var(--sans); font-size: .5rem; font-weight: 300;
  letter-spacing: .45em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 18px;
}
.csel-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.025em; color: var(--white);
  margin-bottom: 14px;
}
.csel-header h2 em { font-style: italic; }
.csel-sub {
  font-family: var(--sans); font-size: .72rem; font-weight: 200;
  line-height: 1.8; color: var(--gray-3);
}

.csel-tabs {
  display: inline-flex; gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 60px;
  padding: 5px;
  margin-bottom: 40px;
}
.csel-tab {
  padding: 11px 30px;
  border-radius: 60px;
  font-family: var(--sans); font-size: .55rem; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray-2); cursor: pointer;
  transition: background .3s, color .3s;
}
.csel-tab:hover { color: var(--white); }
.csel-tab.active { background: var(--white); color: var(--ink); font-weight: 400; }

.csel-stage {
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.csel-slides-wrap {
  position: relative;
  flex: 1; min-width: 0; max-width: 760px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
}
.csel-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
}
.csel-slide.active { opacity: 1; }
.csel-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.csel-arr {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--white);
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  margin: 0 28px;
  transition: background .3s, border-color .3s;
}
.csel-arr:hover { background: var(--lift); border-color: var(--gray-4); }

.csel-foot { padding: 36px 24px 0; }
.csel-foot-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 6px;
}
.csel-foot-name em { font-style: italic; color: var(--gray-1); }
.csel-foot-price {
  font-family: var(--sans); font-size: .68rem; font-weight: 200;
  color: var(--gray-3); letter-spacing: .08em; margin-bottom: 28px;
}
.csel-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .62rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); background: var(--white);
  text-decoration: none; padding: 18px 44px;
  border-radius: 60px;
  transition: background .3s, transform .3s;
}
.csel-cta:hover { background: var(--paper); transform: translateY(-2px); }

/* ════════════════════════════════════════════════
   USŁUGI — SLIDER
════════════════════════════════════════════════ */
#uslugi { background: var(--bg); }

.uslugi-head {
  padding: 80px 56px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.uslugi-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.015em; color: var(--white);
}
.uslugi-head h2 em { font-style: italic; }
.uslugi-head-note {
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  line-height: 1.9; color: var(--gray-3); max-width: 360px;
}

/* Slider wrapper */
.svc-slider {
  position: relative; overflow: hidden;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.svc-track {
  display: flex;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.svc-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 42% 58%;
  height: 340px;
}
.svc-slide-content {
  padding: 40px 52px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line);
}
.svc-slide-num {
  font-family: var(--sans); font-size: .48rem; font-weight: 200;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gray-4);
  margin-bottom: 14px;
}
.svc-slide-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.4rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 18px;
}
.svc-slide-name em { font-style: italic; color: var(--gray-2); }
.svc-slide-price {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 300; color: var(--white);
  letter-spacing: -.01em; line-height: 1.2;
  margin-bottom: 6px;
}
.svc-slide-price-unit {
  font-family: var(--sans); font-size: .6rem; font-weight: 200;
  letter-spacing: .08em; color: var(--gray-3); margin-bottom: 20px;
}
.svc-slide-desc {
  font-family: var(--sans); font-size: .68rem; font-weight: 200;
  line-height: 1.85; color: var(--gray-3); max-width: 360px;
}
.svc-slide-img {
  overflow: hidden; position: relative;
  background: var(--lift);
}
.svc-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.58) saturate(.72);
  transition: transform 1s cubic-bezier(.2,0,.1,1);
}
.svc-slide.active .svc-slide-img img { transform: scale(1.03); }

/* Nav bar */
.svc-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-nav-arrows { display: flex; }
.svc-nav-btn {
  background: none; border: none;
  font-family: var(--sans); font-size: .55rem; font-weight: 200;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gray-3);
  padding: 16px 28px;
  border-right: 1px solid var(--line);
  transition: color .3s, background .3s;
}
.svc-nav-btn:first-child { border-left: 1px solid var(--line); }
.svc-nav-btn:hover { color: var(--white); background: var(--surface); }
.svc-nav-counter {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  color: var(--gray-3); letter-spacing: -.01em;
}
.svc-nav-counter em { color: var(--white); font-style: normal; }
.svc-nav-dots { display: flex; gap: 8px; align-items: center; }
.svc-nav-dot {
  width: 20px; height: 1px; background: var(--gray-4);
  transition: background .3s, width .3s;
}
.svc-nav-dot.active { background: var(--white); width: 36px; }

/* ════════════════════════════════════════════════
   REALIZACJE
════════════════════════════════════════════════ */
#realizacje {
  background: var(--bg);
  padding: 120px 0 0;
}
.real-head {
  padding: 0 56px 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.real-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -.02em; color: var(--white);
}
.real-head h2 em { font-style: italic; color: var(--gray-2); }
.real-count {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 300; line-height: 1;
  color: var(--lift); letter-spacing: -.05em;
  user-select: none;
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 380px 260px 420px;
  gap: 2px;
}
.rg { overflow: hidden; position: relative;  background: #0d0d0d; }
.rg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.62) saturate(.72);
  transition: transform .9s cubic-bezier(.2,0,.1,1), filter .7s ease;
}
.rg:hover .rg-img { transform: scale(1.06); filter: brightness(.78) saturate(.85); }
.rg-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px 24px;
  background: linear-gradient(to top, rgba(6,6,6,.88), transparent);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.2,0,.1,1);
}
.rg:hover .rg-overlay { transform: translateY(0); }
.rg-car {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  color: var(--white); line-height: 1;
}
.rg-svc {
  font-family: var(--sans); font-size: .55rem; font-weight: 200;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gray-1); margin-top: 5px;
}
.rg1  { grid-column: 1/5;  grid-row: 1/3; }
.rg2  { grid-column: 5/8;  grid-row: 1/2; }
.rg3  { grid-column: 8/13; grid-row: 1/2; }
.rg4  { grid-column: 5/9;  grid-row: 2/4; }
.rg5  { grid-column: 9/13; grid-row: 2/3; }
.rg6  { grid-column: 1/4;  grid-row: 3/4; }
.rg7  { grid-column: 4/5;  grid-row: 3/4; }
.rg8  { grid-column: 9/13; grid-row: 3/4; }

/* ════════════════════════════════════════════════
   PRZED / PO
════════════════════════════════════════════════ */
#efekty { background: var(--bg); padding: 140px 0; }
.efekty-head { padding: 0 56px 72px; }
.efekty-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.02em; color: var(--white);
}
.efekty-head h2 em { font-style: italic; }
.efekty-head p {
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  line-height: 1.9; color: var(--gray-3);
  max-width: 380px; margin-top: 20px;
}
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; 
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.42) saturate(.15) contrast(1.1);
}
.ba-after { clip-path: inset(0 50% 0 0); transition: clip-path .75s cubic-bezier(.4,0,.2,1); }
.ba-after img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.72) saturate(.82);
}
.ba:hover .ba-after { clip-path: inset(0 0% 0 0); }
.ba-divider {
  position: absolute; top: 0; left: 50%; bottom: 0;
  width: 1px; background: rgba(255,255,255,.6);
  z-index: 5; pointer-events: none;
  transition: left .75s cubic-bezier(.4,0,.2,1);
}
.ba:hover .ba-divider { left: 100%; }
.ba-tag {
  position: absolute; top: 18px; z-index: 6;
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .25em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,6,6,.55); color: var(--gray-2);
  backdrop-filter: blur(4px);
}
.ba-tag-l { left: 18px; }
.ba-tag-r { right: 18px; border-color: rgba(255,255,255,.35); color: var(--white); }
.ba-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 6;
  padding: 16px 22px 20px;
  background: linear-gradient(to top, rgba(6,6,6,.88), transparent);
}
.ba-car  { font-family: var(--serif); font-size: .95rem; font-weight: 400; color: var(--white); }
.ba-work { font-family: var(--sans); font-size: .55rem; font-weight: 200;
           letter-spacing: .15em; text-transform: uppercase; color: var(--gray-2); margin-top: 4px; }

/* ════════════════════════════════════════════════
   CYTAT
════════════════════════════════════════════════ */
#cytat {
  background: var(--surface);
  padding: 120px 56px;
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 80px; align-items: center;
}
.cytat-meta {}
.cytat-label {
  font-family: var(--sans); font-size: .52rem; font-weight: 200;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gray-3);
  display: flex; align-items: center; gap: 14px;
}
.cytat-label::before { content:''; width:20px; height:1px; background:var(--gray-4); }
.cytat-marks {
  font-family: var(--serif);
  font-size: 10rem; font-weight: 300;
  color: var(--lift); line-height: .8;
  margin-top: 12px; letter-spacing: -.05em;
  user-select: none;
}
.cytat-body {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2.8rem);
  font-weight: 300; line-height: 1.35;
  color: var(--white); letter-spacing: -.01em;
  font-style: italic;
}
.cytat-author {
  margin-top: 44px;
  display: flex; align-items: center; gap: 16px;
}
.cytat-author-line { width: 32px; height: 1px; background: var(--gray-4); }
.cytat-author-text {
  font-family: var(--sans); font-size: .6rem; font-weight: 200;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gray-3);
}
.cytat-author-text strong { color: var(--gray-1); font-weight: 300; }

/* ════════════════════════════════════════════════
   PROCES — AUTO-SCROLL TICKER
════════════════════════════════════════════════ */
#proces {
  background: var(--bg);
  padding: 100px 0 0;
}
.proces-head {
  padding: 0 56px 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
}
.proces-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.015em; color: var(--white);
}
.proces-head h2 em { font-style: italic; }
.proces-head p {
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  line-height: 1.9; color: var(--gray-3);
}

.proces-ticker-outer {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.proces-ticker-inner {
  display: flex; width: fit-content;
  animation: procesScroll 22s linear infinite;
}
.proces-ticker-outer:hover .proces-ticker-inner {
  animation-play-state: paused;
}
.pstep {
  flex-shrink: 0;
  width: 340px;
  padding: 44px 40px 44px 44px;
  border-right: 1px solid var(--line);
  transition: background .35s;
}
.pstep:hover { background: var(--surface); }
.ps-n {
  font-family: var(--sans); font-size: .48rem; font-weight: 200;
  letter-spacing: .35em; color: var(--gray-4); text-transform: uppercase;
  margin-bottom: 24px;
}
.ps-t {
  font-family: var(--serif); font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -.01em;
}
.ps-d {
  font-family: var(--sans); font-size: .68rem; font-weight: 200;
  line-height: 1.85; color: var(--gray-3);
}

@keyframes procesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   POJAZDY
════════════════════════════════════════════════ */
#pojazdy {
  background: var(--surface);
  padding: 80px 56px;
  display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pojazdy-label {
  font-family: var(--sans); font-size: .52rem; font-weight: 200;
  letter-spacing: .38em; text-transform: uppercase; color: var(--gray-3);
  line-height: 2.2;
}
.pojazdy-grid { display: flex; flex-wrap: wrap; gap: 2px; }
.pmarka {
  flex: 1 0 auto; padding: 28px 36px;
  border: 1px solid var(--line);
  transition: background .4s, border-color .4s; 
}
.pmarka:hover { background: var(--lift); border-color: var(--gray-4); }
.pm-name {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--white); line-height: 1; transition: letter-spacing .4s;
}
.pmarka:hover .pm-name { letter-spacing: .02em; }
.pm-models {
  font-family: var(--sans); font-size: .56rem; font-weight: 200;
  letter-spacing: .12em; color: var(--gray-3); margin-top: 6px;
}

/* ════════════════════════════════════════════════
   KONTAKT
════════════════════════════════════════════════ */
#kontakt {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.kontakt-left { position: relative; overflow: hidden; background: #0d0c0b; }
.kontakt-left-img { position: absolute; inset: 0; }
.kontakt-left-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45) saturate(.6);
}
.kontakt-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,6,6,.6) 0%, rgba(6,6,6,.3) 100%);
}
.kontakt-left-content {
  position: relative; z-index: 2;
  padding: 120px 72px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.kontakt-left-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -.015em; color: var(--white);
  margin-bottom: 48px;
}
.kontakt-left-content h2 em { font-style: italic; }
.kontakt-details { display: flex; flex-direction: column; gap: 28px; }
.kd-label {
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .35em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 5px;
}
.kd-val {
  font-family: var(--sans); font-size: .82rem; font-weight: 200;
  color: var(--gray-1); line-height: 1.6;
}
.kontakt-right {
  background: var(--surface);
  padding: 120px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.form-title {
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 52px; display: flex; align-items: center; gap: 14px;
}
.form-title::before { content:''; width:20px; height:1px; background:var(--gray-4); }
.fg { margin-bottom: 28px; }
.fg label {
  display: block; font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 10px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans); font-size: .8rem; font-weight: 200;
  color: var(--white); outline: none;
  transition: border-bottom-color .35s;
  -webkit-appearance: none; 
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray-4); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-bottom-color: var(--gray-2); }
.fg select option { background: var(--lift); }
.fg textarea { resize: none; height: 72px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-btn {
  margin-top: 20px; width: 100%;
  font-family: var(--sans); font-size: .58rem; font-weight: 300;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink); background: var(--white);
  border: none; padding: 18px 24px;
  
  transition: background .3s, transform .3s;
  position: relative; overflow: hidden;
}
.form-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--paper);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.form-btn:hover::after { transform: translateX(0); }
.form-btn:hover { transform: translateY(-2px); }
.form-btn span { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════
   KONFIGURATOR / REZERWACJA
════════════════════════════════════════════════ */
#rezerwacja { background: var(--bg); }

.rez-head {
  padding: 80px 56px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.rez-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.015em; color: var(--white);
}
.rez-head h2 em { font-style: italic; }
.rez-head-note {
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  line-height: 1.9; color: var(--gray-3); max-width: 360px;
}

.rez-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.rez-steps { }
.kstep {
  border-bottom: 1px solid var(--line);
  padding: 56px 56px;
}
.kstep-num {
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gray-4);
  margin-bottom: 12px;
}
.kstep-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--white); letter-spacing: -.01em; margin-bottom: 8px;
}
.kstep-title em { font-style: italic; }
.kstep-note {
  font-family: var(--sans); font-size: .7rem; font-weight: 200;
  color: var(--gray-3); line-height: 1.7; margin-bottom: 36px;
}

.car-opts { display: flex; flex-direction: column; gap: 2px; }
.car-opt {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border: 1px solid var(--line);
   transition: background .3s;
  position: relative; overflow: hidden;
}
.car-opt::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--white);
  transform: scaleY(0); transform-origin: center;
  transition: transform .35s ease;
}
.car-opt:hover { background: var(--surface); }
.car-opt.active { background: var(--surface); }
.car-opt.active::before { transform: scaleY(1); }
.co-l { display: flex; flex-direction: column; gap: 4px; }
.co-name {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: var(--gray-1); transition: color .3s;
}
.car-opt.active .co-name, .car-opt:hover .co-name { color: var(--white); }
.co-desc {
  font-family: var(--sans); font-size: .6rem; font-weight: 200;
  letter-spacing: .06em; color: var(--gray-4);
}
.co-price {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  color: var(--gray-3); transition: color .3s; text-align: right;
}
.car-opt.active .co-price { color: var(--gray-1); }

.svc-opts { display: flex; flex-direction: column; gap: 2px; }
.svc-opt {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 24px; border: 1px solid var(--line);
   transition: background .3s; position: relative;
}
.svc-opt:hover { background: var(--surface); }
.svc-opt.checked { background: var(--surface); }
.svc-box {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid var(--gray-4);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
}
.svc-opt.checked .svc-box { border-color: var(--white); background: var(--white); }
.svc-check-icon { display: none; width: 10px; height: 10px; }
.svc-opt.checked .svc-check-icon { display: block; }
.svc-l {
  flex: 1;
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  color: var(--gray-2); transition: color .3s;
}
.svc-opt.checked .svc-l { color: var(--white); }
.svc-p {
  font-family: var(--sans); font-size: .68rem; font-weight: 200;
  color: var(--gray-3); white-space: nowrap; transition: color .3s;
}
.svc-opt.checked .svc-p { color: var(--gray-1); }

.contact-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 36px;
}
.ctoggle {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border: 1px solid var(--line);
   transition: all .3s; position: relative;
}
.ctoggle::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--white);
  transform: scaleY(0); transform-origin: center;
  transition: transform .35s ease;
}
.ctoggle:hover { background: var(--surface); }
.ctoggle.active { background: var(--surface); }
.ctoggle.active::before { transform: scaleY(1); }
.ctoggle-icon { font-size: .85rem; color: var(--gray-3); transition: color .3s; }
.ctoggle.active .ctoggle-icon { color: var(--white); }
.ctoggle-label {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  color: var(--gray-2); transition: color .3s;
}
.ctoggle.active .ctoggle-label { color: var(--white); }
.ctoggle-sub {
  font-family: var(--sans); font-size: .56rem; font-weight: 200;
  letter-spacing: .1em; color: var(--gray-4); margin-top: 2px;
}

.contact-field { margin-bottom: 24px; }
.contact-field label {
  display: block; font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 10px;
}
.contact-field input,
.contact-field textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans); font-size: .82rem; font-weight: 200;
  color: var(--white); outline: none;
  transition: border-bottom-color .35s; 
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--gray-4); }
.contact-field input:focus,
.contact-field textarea:focus { border-bottom-color: var(--gray-2); }
.contact-field textarea { resize: none; height: 72px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.rez-btn {
  width: 100%; margin-top: 12px;
  font-family: var(--sans); font-size: .58rem; font-weight: 300;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink); background: var(--white);
  border: none; padding: 18px 24px;
   transition: background .3s, transform .3s;
}
.rez-btn:hover { background: var(--paper); transform: translateY(-2px); }

.rez-summary {
  position: sticky; top: 100px;
  background: var(--lift); border-left: 1px solid var(--line);
  padding: 48px 40px; min-height: 600px;
}
.rs-title {
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.rs-title::before { content:''; width:18px; height:1px; background:var(--gray-4); }
.rs-row { padding: 18px 0; border-bottom: 1px solid var(--line); }
.rs-label {
  font-family: var(--sans); font-size: .48rem; font-weight: 200;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 6px;
}
.rs-val {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 300;
  color: var(--white); line-height: 1.3;
}
.rs-empty { color: var(--gray-4) !important; font-size: .9rem !important; font-style: italic; }
.rs-svc-list { display: flex; flex-direction: column; gap: 4px; }
.rs-svc-item {
  font-family: var(--serif); font-size: .85rem; font-weight: 300;
  color: var(--gray-1); display: flex; justify-content: space-between;
}
.rs-total { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-4); }
.rs-total-label {
  font-family: var(--sans); font-size: .48rem; font-weight: 200;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 10px;
}
.rs-total-price {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: var(--white); letter-spacing: -.03em; line-height: 1;
}
.rs-disclaimer {
  font-family: var(--sans); font-size: .58rem; font-weight: 200;
  line-height: 1.7; color: var(--gray-3); margin-top: 20px;
}

.rez-confirm { display: none; text-align: center; padding: 60px 40px; }
.rez-confirm.show { display: block; }
.rez-confirm-icon { font-size: 2rem; margin-bottom: 20px; color: var(--gray-1); }
.rez-confirm h3 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  color: var(--white); margin-bottom: 12px;
}
.rez-confirm p {
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  line-height: 1.8; color: var(--gray-3);
}

/* ════════════════════════════════════════════════
   CENNIK
════════════════════════════════════════════════ */
#cennik { background: var(--surface); }

.cennik-head {
  padding: 80px 56px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.cennik-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.015em; color: var(--white);
}
.cennik-head h2 em { font-style: italic; }
.cennik-head-note {
  font-family: var(--sans); font-size: .75rem; font-weight: 200;
  line-height: 1.9; color: var(--gray-3); max-width: 360px; align-self: end;
}

.cennik-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--line);
}
.ctier {
  background: var(--surface); padding: 52px 48px;
  border-top: 1px solid var(--line); transition: background .4s;
}
.ctier:hover { background: var(--lift); }
.ctier-size {
  font-family: var(--sans); font-size: .52rem; font-weight: 200;
  letter-spacing: .38em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 24px;
}
.ctier-price {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; color: var(--white); line-height: 1; letter-spacing: -.03em;
}
.ctier-unit {
  font-family: var(--sans); font-size: .6rem; font-weight: 200;
  letter-spacing: .15em; color: var(--gray-3); margin-top: 10px;
}

.cennik-scope {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cscope-col { padding: 56px 56px; border-right: 1px solid var(--line); }
.cscope-col:last-child { border-right: none; }
.cscope-label {
  font-family: var(--sans); font-size: .52rem; font-weight: 200;
  letter-spacing: .38em; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
}
.cscope-label::before { content:''; width:20px; height:1px; background:var(--gray-4); }
.cscope-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cscope-list li {
  font-family: var(--sans); font-size: .73rem; font-weight: 200;
  line-height: 1.6; color: var(--gray-2);
  display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: baseline;
}
.cscope-list li span.li-n {
  font-family: var(--serif); font-size: .65rem; color: var(--gray-4); text-align: right;
}

.cennik-extra { padding: 72px 56px; }
.cennik-extra-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  font-weight: 300; color: var(--white);
  letter-spacing: -.01em; margin-bottom: 48px;
}
.cennik-extra-title em { font-style: italic; }
.extra-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--line);
}
.eitem {
  background: var(--surface); padding: 36px 40px; transition: background .4s;
}
.eitem:hover { background: var(--lift); }
.eitem-name {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  color: var(--white); line-height: 1.2; margin-bottom: 10px;
}
.eitem-price {
  font-family: var(--sans); font-size: .65rem; font-weight: 300;
  letter-spacing: .08em; color: var(--gray-1); margin-bottom: 8px;
}
.eitem-note {
  font-family: var(--sans); font-size: .62rem; font-weight: 200;
  line-height: 1.7; color: var(--gray-3);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 40px;
}
.foot-brand {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  letter-spacing: .08em; color: var(--white); text-decoration: none;
}
.foot-copy {
  font-family: var(--sans); font-size: .55rem; font-weight: 200;
  letter-spacing: .15em; color: var(--gray-3); text-align: center;
}
.foot-links {
  display: flex; gap: 32px; justify-content: flex-end; list-style: none;
}
.foot-links a {
  font-family: var(--sans); font-size: .55rem; font-weight: 200;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-3); text-decoration: none; transition: color .3s;
}
.foot-links a:hover { color: var(--gray-1); }

/* ════════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════════ */
.rule { height: 1px; background: var(--line); }

.sr {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.sr.in { opacity: 1; transform: translateY(0); }
.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.d3 { transition-delay: .3s; }
.sr.d4 { transition-delay: .4s; }
.sr.d5 { transition-delay: .5s; }

.sl {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 1s ease, transform 1s ease;
}
.sl.in { opacity: 1; transform: translateX(0); }

@keyframes up {
  to { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:.4; transform:scaleY(.65); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding-left: 36px; padding-right: 36px; }
  .hero-text-panel { padding-left: 36px; }
  .uslugi-head, .real-head, .efekty-head,
  #cytat, #proces, #pojazdy, footer { padding-left: 36px; padding-right: 36px; }
  .urow { grid-template-columns: 56px 1fr 30vw auto; }
  .u-num { padding-left: 36px; }
  .kontakt-left-content, .kontakt-right { padding: 80px 48px; }
  .csel-header, .csel-info, .csel-controls, .csel-cta-bar { padding-left: 36px; padding-right: 36px; }
  .rez-head, .cennik-head { padding-left: 36px; padding-right: 36px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #hero { grid-template-columns: 1fr; position: relative; }
  .hero-image-panel { position: absolute; inset: 0; z-index: 0; }
  .hero-text-panel {
    z-index: 1; grid-column: 1; grid-row: 1;
    padding: 0 24px 60px;
    background: linear-gradient(to top, rgba(6,6,6,.96) 0%, rgba(6,6,6,.5) 100%);
  }
  .uslugi-head { grid-template-columns: 1fr; padding: 80px 24px 40px; }
  .csel-header { padding: 0 24px 36px; }
  .csel-slides-wrap { max-width: 100%; }
  .csel-arr { width: 40px; height: 40px; margin: 0 8px; font-size: 1.2rem; }
  .svc-slide { grid-template-columns: 1fr; height: auto; }
  .svc-slide-img { display: none; }
  .svc-slide-content { border-right: none; padding: 32px 24px 36px; }
  .svc-nav { padding: 0 24px; }
  .svc-nav-counter { display: none; }
  .urow { grid-template-columns: 48px 1fr auto; }
  .u-car { display: none; }
  .u-num { padding-left: 24px; }
  .real-head { padding: 0 24px 48px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .real-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .rg1,.rg2,.rg3,.rg4,.rg5,.rg6,.rg7,.rg8 { grid-column:auto; grid-row:auto; aspect-ratio:4/3; }
  .efekty-head { padding: 0 24px 52px; }
  .ba-grid { grid-template-columns: 1fr; }
  #cytat { grid-template-columns: 1fr; padding: 80px 24px; }
  .cytat-marks { display: none; }
  #proces { padding: 80px 0 0; }
  .proces-head { grid-template-columns: 1fr; padding: 0 24px 40px; gap: 24px; }
  .pstep { width: 260px; padding: 32px 28px; }
  #pojazdy { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  #kontakt { grid-template-columns: 1fr; }
  .kontakt-left { min-height: 55vh; }
  .kontakt-left-content, .kontakt-right { padding: 60px 24px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .foot-links { justify-content: center; }
  .rez-layout { grid-template-columns: 1fr; }
  .rez-summary { position: static; border-left: none; border-top: 1px solid var(--line); }
  .rez-head, .cennik-head { grid-template-columns: 1fr; padding: 80px 24px 40px; }
  .cennik-tiers { grid-template-columns: 1fr; }
  .cennik-scope { grid-template-columns: 1fr; }
  .cscope-col { border-right: none; border-bottom: 1px solid var(--line); }
  .cennik-extra { padding: 56px 0 56px; }
  .cennik-extra-title { padding: 0 24px; }
  .extra-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
    background: transparent;
    padding: 0 24px 16px;
    scrollbar-width: none;
  }
  .extra-grid::-webkit-scrollbar { display: none; }
  .eitem {
    flex: 0 0 80vw;
    scroll-snap-align: start;
    border: 1px solid var(--line);
  }
}
