:root {
    --paper: #FFFFFF;
    --paper-soft: #F3F2EF;
    --ink: #15171A;
    --ink-soft: #6A6E74;
    --fog: #9A9DA2;
    --line: rgba(21,23,26,0.10);
    --red: #A3222C;
    --red-tint: rgba(163,34,44,0.09);
    --dark: #0E0F11;
    --dark-soft: #1C1E21;
    --dark-line: rgba(255,255,255,0.12);

    --font-display: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0; background: var(--paper); color: var(--ink);
    font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3 { font-family: 'Anton', var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.005em; text-wrap: balance; margin: 0; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  svg { display: block; }
  .red { color: var(--red); }

  .eyebrow { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); display: inline-flex; align-items: center; }

  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.4rem); }

  /* ---------- header ---------- */
  header.site {
    position: sticky; top: 0; z-index: 50;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
    padding: 1.1rem clamp(1.2rem, 4vw, 2.4rem);
  }
  header.site::before {
    content: ''; position: absolute; inset: -1px 0; z-index: -1;
    background: rgba(255,255,255,0.75); backdrop-filter: blur(10px) saturate(1.1);
  }
  .logo { display: flex; align-items: center; }
  .logo-img { height: 40px; width: auto; display: block; }

  .primary-nav { display: flex; justify-content: center; align-items: center; gap: 2.2rem; }
  .primary-nav a { font-weight: 400; font-size: 0.95rem; color: var(--ink-soft); letter-spacing: 0.01em; padding: 0.3rem 0; transition: color 0.2s ease; text-decoration: none; }
  .primary-nav a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
  @media (max-width: 900px) { .primary-nav { display: none; } }
  a.nav-catalog-link {
    position: relative;
    display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 600; text-decoration: none;
    background: var(--red); color: #fff;
    border-radius: 999px; border: 1px solid var(--line);
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    box-shadow: 0 4px 16px rgba(20,23,26,0.18);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  a.nav-catalog-link:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,23,26,0.24); }
  a.nav-catalog-link::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: conic-gradient(from var(--social-toggle-angle), transparent 0%, transparent 75%, #fff 92%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: social-toggle-shine 2.6s linear infinite;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) { a.nav-catalog-link::before { animation: none; } }
  @media (max-width: 900px) { a.nav-catalog-link { display: none; } }
  .nav-catalog-pill { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; white-space: nowrap; }
  @media (max-width: 1920px) {
    .primary-nav { gap: 1.3rem; }
    .primary-nav a { font-size: 0.82rem; }
    .header-actions { gap: 0.35rem; }
    .nav-catalog-pill { font-size: 0.82rem; }
    .nav-catalog-arrow { width: 28px; height: 28px; }
    .header-quote-btn { font-size: 0.76rem; padding: 0.52rem 0.9rem; }
  }
  .nav-catalog-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--ink); }
  .nav-catalog-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: #E4E4E7; color: var(--ink);
  }
  .nav-catalog-arrow svg { width: 14px; height: 14px; animation: arrow-nudge 1.6s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce) { .nav-catalog-arrow svg { animation: none; } }

  .header-actions { display: flex; align-items: center; gap: 0.6rem; justify-self: end; }
  .header-quote-btn {
    font-family: var(--font-body); font-size: 0.86rem; font-weight: 700; color: #fff;
    background: #3a3d42; border-radius: 999px; padding: 0.65rem 1.1rem; white-space: nowrap;
    transition: background 0.2s ease;
  }
  .header-quote-btn:hover { background: #24262a; animation: header-quote-bounce 0.5s ease; }
  @keyframes header-quote-bounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    55% { transform: translateY(0); }
    75% { transform: translateY(-3px); }
  }
  @media (prefers-reduced-motion: reduce) { .header-quote-btn:hover { animation: none; } }
  @media (max-width: 900px) { .header-quote-btn { display: none; } }
  .header-social { display: flex; align-items: center; gap: 0.5rem; }
  .header-social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--paper-soft); border: 1px solid var(--line); color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .header-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
  .header-social svg { width: 16px; height: 16px; }
  @media (max-width: 900px) { .header-social { display: none; } }
  .icon-pill {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--paper-soft); border: 1px solid var(--line);
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s ease;
  }
  .icon-pill:hover { transform: translateY(-2px); background: #ECEAE5; }
  .icon-pill.dark { background: var(--ink); border-color: var(--ink); color: #fff; display: none; }
  .icon-pill.dark:hover { background: #000; }
  @media (max-width: 900px) { .icon-pill.dark { display: flex; } }
  .icon-pill svg { width: 17px; height: 17px; }
  .burger { position: relative; width: 17px; height: 12px; }
  .burger span { position: absolute; left: 0; width: 100%; height: 1.6px; background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }
  .burger span:nth-child(1) { top: 0; }
  .burger span:nth-child(2) { top: 5px; }
  .burger span:nth-child(3) { top: 10px; }
  .icon-pill.open .burger span:nth-child(1) { top: 5px; transform: rotate(45deg); }
  .icon-pill.open .burger span:nth-child(2) { opacity: 0; }
  .icon-pill.open .burger span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

  .mobile-nav { position: sticky; top: 78px; z-index: 45; background: var(--paper); border-bottom: 0 solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), border-width 0.45s ease; }
  .mobile-nav.open { max-height: 340px; border-bottom-width: 1px; }
  .mobile-nav-inner { padding: 1.4rem clamp(1.2rem, 4vw, 2.4rem) 2rem; display: flex; flex-wrap: wrap; gap: 0.4rem 2.4rem; }
  .mobile-nav a { font-size: 1.3rem; font-weight: 700; padding: 0.35rem 0; }
  .mobile-nav a:hover { color: var(--red); }

  /* ---------- hero ---------- */
  .hero { padding: 0 clamp(1rem, 4vw, 2rem) 0; }
  .hero-frame { position: relative; height: 86vh; min-height: 540px; border-radius: 28px; overflow: hidden; background: var(--dark); }
  .hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 20s ease-in-out infinite alternate; }
  @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
  @media (prefers-reduced-motion: reduce) { .hero-media { animation: none; } }
  .hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,11,13,0.82), rgba(10,11,13,0.18) 48%, rgba(10,11,13,0.05) 68%); }
  .hero-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.6rem, 4vw, 3rem); color: #fff; }


  .hero-h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.25; max-width: 20ch; }
  .hero-sub { color: rgba(255,255,255,0.78); font-size: 1.08rem; max-width: 46ch; margin-top: 1.1rem; font-weight: 500; }
  .hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; color: var(--ink); font-weight: 700; font-size: 0.92rem;
    padding: 0.85rem 1.6rem; border-radius: 999px;
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s ease;
  }
  .btn-primary:hover { transform: translateY(-2px); background: #f0efec; }
  .btn-primary.on-dark { background: #fff; color: var(--ink); }
  .btn-primary.solid-ink { background: var(--ink); color: #fff; }
  .btn-primary.solid-ink:hover { background: #000; }

  .hero-drawers { position: fixed; right: 0; bottom: 6rem; z-index: 40; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; gap: 0.7rem; padding: 0.6rem clamp(1.4rem, 3.5vw, 2.4rem) clamp(1.4rem, 3.5vw, 2.4rem); pointer-events: none; max-height: calc(100vh - 8rem); }
  .hero-drawer {
    pointer-events: auto; position: relative; overflow: visible;
    width: 41%; min-width: 336px; max-width: 480px;
    background: rgba(8,9,11,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
    padding: 1.32rem 1.56rem 1.2rem; color: #fff; text-decoration: none;
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .hero-drawer[data-reveal].dismissed {
    animation: none; opacity: 0; transform: translateX(120%); pointer-events: none;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, border-color 0.25s ease;
  }
  @media (prefers-reduced-motion: reduce) { .hero-drawer[data-reveal].dismissed { transition: opacity 0.2s ease; } }
  .hero-drawer-thumb {
    position: absolute; top: -54px; left: 50%;
    width: 203px; height: auto; z-index: 2; pointer-events: none;
    filter: drop-shadow(0 10px 14px rgba(0,0,0,0.5));
    transform: translateX(calc(-50% + 108px)); opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) 2.2s, opacity 0.5s ease 2.2s;
  }
  .hero-drawer[data-reveal]:nth-child(2) .hero-drawer-thumb {
    top: -24px;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) 2.35s, opacity 0.5s ease 2.35s;
  }
  .hero-drawer[data-reveal].is-visible .hero-drawer-thumb {
    transform: translateX(-50%); opacity: 1;
    animation: hero-thumb-bounce 0.6s ease-out 2.8s 1;
  }
  .hero-drawer[data-reveal].is-visible:nth-child(2) .hero-drawer-thumb { animation-delay: 2.95s; }
  @keyframes hero-thumb-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    35% { transform: translateX(-50%) translateY(5px); }
    60% { transform: translateX(-50%) translateY(-3px); }
    80% { transform: translateX(-50%) translateY(1px); }
  }
  @media (prefers-reduced-motion: reduce) { .hero-drawer[data-reveal].is-visible .hero-drawer-thumb { animation: none; } }
  .hero-drawer:hover { background: rgba(8,9,11,0.86); border-color: rgba(255,255,255,0.32); animation-play-state: paused; }
  .hero-drawer[data-reveal] {
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 1s, transform 0.7s cubic-bezier(0.16,1,0.3,1) 1s, background 0.25s ease, border-color 0.25s ease;
  }
  .hero-drawer[data-reveal]:nth-child(2) {
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 1.15s, transform 0.7s cubic-bezier(0.16,1,0.3,1) 1.15s, background 0.25s ease, border-color 0.25s ease;
  }
  .hero-drawer[data-reveal].is-visible { animation: hero-drawer-float 4.6s ease-in-out 1.8s infinite; }
  .hero-drawer[data-reveal].is-visible:nth-child(2) { animation-duration: 5.2s; animation-delay: 2s; }
  @keyframes hero-drawer-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @media (prefers-reduced-motion: reduce) { .hero-drawer[data-reveal].is-visible { animation: none; } }
  .hero-drawer-close {
    position: absolute; top: 0.84rem; right: 0.84rem; z-index: 1; cursor: pointer;
    width: 29px; height: 29px; border-radius: 50%; background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
  }
  .hero-drawer-close:hover { background: rgba(255,255,255,0.24); }
  .hero-drawer-close svg { width: 14px; height: 14px; color: #fff; }
  .hero-drawer-icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 0.1rem; }
  .hero-drawer-icon svg { width: 19px; height: 19px; color: #fff; }
  .hero-drawer h2 { color: #fff; font-size: 1.22rem; line-height: 1.28; margin: 0; font-weight: 500; padding-right: 1.44rem; }
  .hero-drawer p { color: rgba(255,255,255,0.72); font-size: 0.98rem; line-height: 1.42; margin: 0; }
  .hero-drawer-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.98rem; font-weight: 700; color: #fff; margin-top: 0.15rem; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; padding: 0.42rem 1.02rem; }
  .hero-drawer-cta svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
  .hero-drawer:hover .hero-drawer-cta svg { transform: translateX(3px); }
  @media (max-width: 900px) { .hero-drawers { display: none; } }
  @media (min-width: 901px) and (max-width: 1920px) {
    .hero-drawers { bottom: 4.2rem; gap: 0.5rem; }
    .hero-drawer { width: 32%; min-width: 270px; max-width: 380px; padding: 1rem 1.3rem 0.9rem; }
    .hero-drawer-thumb { width: 150px; top: -36px; }
    .hero-drawer[data-reveal]:nth-child(2) .hero-drawer-thumb { top: -16px; }
    .hero-drawer-icon { width: 30px; height: 30px; }
    .hero-drawer-icon svg { width: 15px; height: 15px; }
    .hero-drawer h2 { font-size: 1rem; padding-right: 1.2rem; }
    .hero-drawer p { font-size: 0.82rem; }
    .hero-drawer-cta { font-size: 0.84rem; padding: 0.34rem 0.85rem; }
  }
  @media (min-width: 901px) and (max-height: 820px) {
    .hero-drawers { bottom: 2.6rem; gap: 0.35rem; }
    .hero-drawer { padding: 0.8rem 1.1rem 0.7rem; gap: 0.3rem; min-width: 280px; }
    .hero-drawer-thumb { width: 110px; top: -26px; }
    .hero-drawer[data-reveal]:nth-child(2) .hero-drawer-thumb { top: -10px; }
    .hero-drawer-icon { width: 26px; height: 26px; margin-bottom: 0; }
    .hero-drawer-icon svg { width: 13px; height: 13px; }
    .hero-drawer h2 { font-size: 0.94rem; line-height: 1.18; padding-right: 1rem; }
    .hero-drawer p { font-size: 0.76rem; line-height: 1.28; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hero-drawer-cta { font-size: 0.78rem; padding: 0.28rem 0.7rem; }
  }
  @media (min-width: 901px) and (max-height: 620px) { .hero-drawers { display: none; } }

  .link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.9rem; }
  .link-arrow svg { width: 15px; height: 15px; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); }
  .link-arrow:hover svg { transform: translateX(4px); }

  [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
  [data-reveal-group] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
  [data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }
  [data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0.02s; }
  [data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
  [data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.18s; }
  [data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
  @media (prefers-reduced-motion: reduce) { [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; transition: none !important; } }

  /* ---------- marquee ---------- */
  .marquee-section { padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
  .marquee-mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .marquee-track { display: flex; width: max-content; gap: 3.2rem; animation: scrollx 28s linear infinite; }
  .marquee-mask:hover .marquee-track { animation-play-state: paused; }
  @keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-25%); } }
  @media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
  .marquee-item { display: flex; align-items: center; color: var(--ink); opacity: 0.4; transition: opacity 0.3s ease, color 0.3s ease; cursor: pointer; }
  .marquee-item:hover { opacity: 1; color: var(--red); }
  .brand-mark { height: 34px; width: 108px; display: flex; align-items: center; justify-content: center; }
  .brand-mark svg { max-height: 100%; max-width: 100%; width: auto; height: auto; display: block; }
  .brand-avatr { max-height: 100%; max-width: 100%; width: auto; height: auto; display: block; filter: grayscale(1) brightness(0) saturate(100%); opacity: 0.85; transition: filter 0.3s ease, opacity 0.3s ease; }
  .marquee-item:hover .brand-avatr { opacity: 1; filter: grayscale(1) brightness(0) saturate(100%) invert(16%) sepia(64%) saturate(3200%) hue-rotate(340deg); }
  .brand-mark.brand-exeed, .brand-mark.brand-avatr { width: auto; max-width: none; }
  .brand-exeed svg, .brand-avatr { height: 14px; max-height: 14px; width: auto; max-width: none; }

  /* ---------- sections ---------- */
  section.block { padding: 6rem 0; }
  section.block.tint { background: var(--paper-soft); }
  section.block#opinie { background: #ECEAE5; }
  section.block#proces {
    position: relative; overflow: hidden; background: #0E0F11;
    padding-top: 3rem;
  }
  section.block#proces::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(to bottom, rgba(14,15,17,0.5), rgba(14,15,17,0.9) 75%, #0E0F11 100%),
      url(../images/tlo-samochody-na-miejscu.jpg) center 35% / cover no-repeat;
  }
  section.block#proces > .wrap { position: relative; z-index: 1; }
  section.block#proces .section-head h2 { color: #fff; }
  section.block#katalog { padding-top: 2.5rem; }
  .bg-decor { position: relative; overflow: hidden; }
  .bg-decor > .wrap { position: relative; z-index: 1; }
  .section-glow { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; animation: floaty 14s ease-in-out infinite; }
  .glow-a { width: 420px; height: 420px; background: var(--red-tint); top: -160px; left: -120px; }
  .glow-b { width: 360px; height: 360px; background: rgba(21,23,26,0.05); bottom: -140px; right: -100px; animation-delay: -6s; }
  @media (prefers-reduced-motion: reduce) { .section-glow { animation: none; } }
  .section-head { max-width: 60ch; margin-bottom: 3rem; }
  #dlaczego .section-head { max-width: none; }
  .section-head.center { max-width: 46ch; margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
  .section-head p { color: var(--ink-soft); margin-top: 0.9rem; font-size: 1.02rem; }

  /* feature grid */
  .feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.4rem; }
  @media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
  .feature-item { text-align: center; padding: 0 0.6rem; }
  .feature-icon { width: 56px; height: 56px; border-radius: 16px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; background: var(--paper); }
  .feature-icon svg { width: 24px; height: 24px; stroke: var(--ink); }
  .feature-item h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.4rem; }
  .feature-item p { font-size: 0.88rem; color: var(--ink-soft); }

  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
  .why-steps { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.6rem; }
  .why-step { display: flex; gap: 1.1rem; align-items: flex-start; }
  .why-step-num { font-family: var(--font-mono); font-size: 0.82rem; color: var(--red); border: 1px solid var(--line); width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .why-step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.3rem; }
  .why-step p { font-size: 0.9rem; color: var(--ink-soft); }
  .why-photo { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); margin-top: 2.2rem; }
  .why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .why-photo .art { position: absolute; inset: 0; }
  .why-photo .photo-tag { position: absolute; top: 1rem; right: 1rem; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.05em; background: rgba(14,15,17,0.6); color: #F1EEE4; padding: 0.4rem 0.7rem; border-radius: 999px; backdrop-filter: blur(4px); }

  .why-steps-mini { position: relative; }
.footer-watermark { position: absolute; left: -160px; bottom: -80px; width: 880px; max-width: none; z-index: 0; pointer-events: none; opacity: 0.05; }
  .footer-watermark svg { width: 100%; height: auto; display: block; }
  @media (max-width: 900px) { .footer-watermark { left: -100px; bottom: -40px; width: 560px; } }

  section.dark-team { position: relative; overflow: hidden; }
  section.dark-team > .wrap { position: relative; z-index: 1; }
  .team-watermark { position: absolute; right: -168px; top: -120px; width: 744px; max-width: none; z-index: 0; pointer-events: none; opacity: 0.06; }
  .team-watermark svg { width: 100%; height: auto; display: block; }
  .team-watermark .st0 { fill: #ffffff; stroke: #ffffff; }
  @media (max-width: 900px) { .team-watermark { right: -120px; top: -72px; width: 456px; } }
  .team-watermark.team-watermark-2 { left: -168px; bottom: -120px; top: auto; right: auto; transform: rotate(-15deg); }
  @media (max-width: 900px) { .team-watermark.team-watermark-2 { left: -120px; bottom: -72px; width: 456px; } }

  section#faq { position: relative; overflow: hidden; }
  section#faq > .wrap { position: relative; z-index: 1; }
  .faq-watermark { position: absolute; left: -140px; top: -80px; width: 620px; max-width: none; z-index: 0; pointer-events: none; opacity: 0.045; }
  .faq-watermark svg { width: 100%; height: auto; display: block; }
  .faq-watermark .st0 { fill: var(--ink); stroke: var(--ink); }
  @media (max-width: 900px) { .faq-watermark { left: -100px; top: -50px; width: 380px; } }
  .why-steps-heading { margin-top: 2.2rem; margin-bottom: 1.8rem; }
  .why-steps-heading h3 { font-family: 'Anton', var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 2.6vw, 2.1rem); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.05; color: var(--ink); }
  .why-mini-step {
    position: relative;
    padding: 0.75rem 0.5rem 0.75rem 1.1rem;
  }
  .why-mini-step::before {
    content: ""; position: absolute; left: 0; top: 0.75rem; bottom: 0.75rem; width: 2px;
    background: var(--red); opacity: 0; transform: scaleY(0.6); transform-origin: center;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .why-mini-step:hover::before { opacity: 1; transform: scaleY(1); }
  @media (prefers-reduced-motion: reduce) { .why-mini-step::before { transition: opacity 0.15s ease; transform: none; } }
  .why-mini-content { min-width: 0; }
  .why-mini-head { display: flex; align-items: center; gap: 0.7rem; width: 100%; }
  .mini-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--fog); flex-shrink: 0; }
  .why-mini-head h4 { flex: 1; min-width: 0; font-size: 0.98rem; font-weight: 400; color: var(--ink-soft); transition: font-weight 0.2s ease; }
  .why-mini-step:hover .why-mini-head h4 { font-weight: 600; }
  .why-mini-body p { padding-top: 0.4rem; font-size: 0.85rem; font-weight: 300; transition: font-weight 0.2s ease; color: var(--fog); }
  .why-mini-step:hover .why-mini-body p { font-weight: 500; }

  /* image carousel */
  .carousel { position: relative; border-radius: 24px; overflow: hidden; }
  .carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
  .carousel-slide { min-width: 100%; aspect-ratio: 16/7; position: relative; }
  @media (max-width: 700px) { .carousel-slide { aspect-ratio: 4/5; } }
  .carousel-slide .art { position: absolute; inset: 0; }
  .carousel-caption { position: absolute; left: 1.6rem; bottom: 1.6rem; color: #fff; }
  .carousel-caption .eyebrow { color: rgba(255,255,255,0.7); }
  .carousel-caption h4 { color: #fff; font-size: 1.5rem; margin-top: 0.3rem; }
  .carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.4rem; }
  .carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background 0.25s ease, width 0.25s ease; }
  .carousel-dots button.active { background: var(--ink); width: 22px; border-radius: 5px; }

  /* service cards */
  .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.4rem; }
  @media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }
  .service-card { display: block; }
  .service-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
  .service-media .art { position: absolute; inset: -8%; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
  .service-card:hover .service-media .art { transform: scale(1.08); }
  .service-caption { position: relative; margin: -2.2rem 1rem 0; background: var(--paper); border-radius: 14px; padding: 1.1rem 1.3rem; box-shadow: 0 16px 32px rgba(20,23,26,0.09); }
  .service-caption h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
  .service-caption p { font-size: 0.86rem; color: var(--ink-soft); }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

  /* inventory cards */
  .car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .car-grid > * { min-width: 0; }
  @media (max-width: 900px) { .car-grid { grid-template-columns: 1fr; } }
  .car-grid-catalog { grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
  @media (max-width: 1150px) { .car-grid-catalog { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 700px) { .car-grid-catalog { grid-template-columns: 1fr; } }
  .car-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 0.7rem; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease; display: flex; flex-direction: column; }
  .car-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(20,23,26,0.1); }
  .car-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
  .car-media .art { position: absolute; inset: -8%; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
  .car-card:hover .car-media .art { transform: scale(1.06); }
  .car-card:hover .stock-arrow { opacity: 1; }
  .car-media .stock-media { cursor: pointer; }
  .car-body { padding: 1.2rem 0.6rem 0.6rem; display: flex; flex-direction: column; flex: 1; }
  .car-body .year { font-family: var(--font-mono); font-size: 0.7rem; color: var(--red); letter-spacing: 0.05em; }
  .car-body h4 { font-size: 1.2rem; line-height: 1.25; margin-top: 0.3rem; margin-bottom: 0; cursor: pointer; transition: color 0.2s ease; }
  .car-body h4:hover { color: var(--red); }
  .cat-specs { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.15rem; }
  .cat-spec { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
  .cat-spec-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--fog); }
  .cat-spec-icon svg { width: 100%; height: 100%; display: block; }
  .cat-spec-label { color: var(--ink-soft); }
  .cat-spec-value { color: var(--ink); font-weight: 600; }
  .car-body .link-arrow { margin-top: auto; padding-top: 1rem; }

  .btn-lead {
    font-family: var(--font-body); font-weight: 700; font-size: 0.86rem; color: #fff;
    background: var(--red); padding: 0.65rem 0.9rem; border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s ease;
    display: inline-block; text-align: center;
  }
  .btn-lead:hover { background: #7e1a22; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(163,34,44,0.35); }
  .cat-card-actions { margin-top: 1rem; }
  .cat-card-actions .btn-lead { display: block; width: 100%; }

  /* ---------- lead modal (shared: homepage teaser + katalog) ---------- */
  .lead-modal { position: fixed; inset: 0; z-index: 320; background: rgba(10,11,13,0.6); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
  .lead-modal.open { display: flex; }
  .lead-modal-box {
    position: relative; width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto; background: var(--paper); border-radius: 20px;
    padding: 2rem; box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    opacity: 0; transform: scale(0.97) translateY(6px); transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .lead-modal.open .lead-modal-box { opacity: 1; transform: scale(1) translateY(0); }
  .lead-modal-close {
    position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; background: var(--paper-soft); color: var(--ink);
  }
  .lead-modal-close svg { width: 16px; height: 16px; }
  .lead-modal-box h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
  .lead-modal-car { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
  .lead-form { display: flex; flex-direction: column; gap: 0.9rem; }
  #quoteModal .lead-modal-box { max-width: 780px; }
  .lead-form.lead-form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.2rem; align-items: start; }
  .lead-form-col { display: flex; flex-direction: column; gap: 0.9rem; }
  @media (max-width: 700px) { .lead-form.lead-form-columns { display: flex; flex-direction: column; gap: 0.9rem; } }
  .lead-form label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fog); display: flex; flex-direction: column; gap: 0.4rem; }
  .lead-form input, .lead-form textarea, .lead-form select {
    font-family: var(--font-body); font-size: 0.92rem; color: var(--ink); text-transform: none; letter-spacing: normal;
    background: var(--paper-soft); border: 1px solid var(--line); border-radius: 10px; padding: 0.65rem 0.75rem; resize: vertical;
  }
  .lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: none; border-color: var(--red); }
  .lead-modal-hint { font-size: 0.78rem; color: var(--fog); margin: 0; }
  .lead-modal-error { color: var(--red); font-size: 0.82rem; margin: 0; }
  .lead-form label.lead-form-consent {
    flex-direction: row; align-items: flex-start; gap: 0.6rem;
    font-family: var(--font-body); font-size: 0.78rem; letter-spacing: normal; text-transform: none; color: var(--ink-soft); line-height: 1.5;
  }
  .lead-form-consent input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.15rem; accent-color: var(--red); }
  .lead-form-consent a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
  .payment-field { display: flex; flex-direction: column; gap: 0.5rem; }
  .payment-options { display: flex; flex-direction: column; gap: 0.6rem; }
  .lead-form label.payment-option {
    flex-direction: row; align-items: flex-start; gap: 0.7rem;
    background: var(--paper-soft); border: 1px solid var(--line); border-radius: 12px;
    padding: 0.75rem 0.9rem; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
  }
  .lead-form label.payment-option:hover { background: #ECEAE5; }
  .lead-form label.payment-option:has(input:checked) { border-color: var(--red); background: var(--red-tint); }
  .payment-option input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.2rem; accent-color: var(--red); }
  .payment-option-body { display: flex; flex-direction: column; gap: 0.2rem; }
  .payment-option-title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--ink); text-transform: none; letter-spacing: normal; }
  .payment-option-title b { color: var(--red); }
  .payment-option-desc { font-family: var(--font-body); font-size: 0.78rem; color: var(--ink-soft); text-transform: none; letter-spacing: normal; line-height: 1.4; }
  .lead-modal-success h3 { margin-bottom: 0.6rem; }
  .lead-modal-success p { color: var(--ink-soft); font-size: 0.94rem; }
  @media (prefers-reduced-motion: reduce) { .lead-modal-box { transition: none; } }

  .policy-link { color: inherit; text-decoration: none; }
  .policy-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
  .policy-modal { position: fixed; inset: 0; z-index: 330; background: rgba(10,11,13,0.7); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
  .policy-modal.open { display: flex; }
  .policy-modal-box {
    position: relative; width: 100%; max-width: 720px; max-height: 85vh; overflow-y: auto;
    background: var(--paper); border-radius: 20px; padding: 2.4rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    opacity: 0; transform: scale(0.97) translateY(6px); transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .policy-modal.open .policy-modal-box { opacity: 1; transform: scale(1) translateY(0); }
  .policy-modal-close {
    position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; background: var(--paper-soft); color: var(--ink);
  }
  .policy-modal-close svg { width: 16px; height: 16px; }
  .policy-modal-content h3 { font-size: 1.3rem; margin-bottom: 1.2rem; padding-right: 2rem; }
  .policy-modal-content h4 { font-size: 0.98rem; margin: 1.6rem 0 0.6rem; }
  .policy-modal-content p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.8rem; line-height: 1.65; }
  .policy-modal-content ul { margin: 0 0 0.8rem; padding-left: 1.2rem; }
  .policy-modal-content li { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 0.5rem; }
  @media (prefers-reduced-motion: reduce) { .policy-modal-box { transition: none; } }

  /* ---------- cookie consent banner ---------- */
  .cookie-banner {
    position: fixed; right: 1.5rem; bottom: 1.5rem; left: auto; z-index: 310;
    transform: translateY(24px) scale(0.97); opacity: 0; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
    pointer-events: none;
  }
  .cookie-banner.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .cookie-banner-box {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    max-width: 380px; width: calc(100vw - 2.4rem); background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
    padding: 1.3rem 1.4rem; box-shadow: 0 20px 50px rgba(20,23,26,0.2);
  }
  .cookie-banner-box p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }
  .cookie-banner-box p a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; align-self: stretch; }
  .cookie-banner-actions .btn-primary { flex: 1; justify-content: center; }
  .cookie-banner-reject {
    flex: 1; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-soft);
    padding: 0.7rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--paper);
    transition: background 0.2s ease; white-space: nowrap;
  }
  .cookie-banner-reject:hover { background: #ECEAE5; }
  @media (max-width: 480px) { .cookie-banner { right: 0.7rem; bottom: 0.7rem; } }
  @media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; } }

  /* ---------- car detail modal (shared) ---------- */
  .video-modal { position: fixed; inset: 0; z-index: 330; background: rgba(10,11,13,0.85); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
  .video-modal.open { display: flex; }
  .video-modal-box { position: relative; width: 100%; max-width: 900px; }
  .video-modal-close {
    position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center;
  }
  .video-modal-close:hover { background: rgba(255,255,255,0.28); }
  .video-modal-close svg { width: 17px; height: 17px; }
  .video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; }
  .video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .video-modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; }
  .video-modal-box.portrait { max-width: 380px; }
  .video-modal-box.portrait .video-modal-frame { aspect-ratio: 9/16; }
  @media (max-width: 640px) { .video-modal-close { top: -40px; } }

  [data-lightbox] { cursor: zoom-in; }

  .detail-modal { position: fixed; inset: 0; z-index: 310; background: rgba(10,11,13,0.75); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
  .detail-modal.open { display: flex; }
  .detail-modal-box {
    position: relative; width: 100%; max-width: 920px; max-height: 88vh; overflow-y: auto;
    background: var(--paper); border-radius: 22px; box-shadow: 0 40px 90px rgba(0,0,0,0.4);
    opacity: 0; transform: scale(0.97) translateY(8px); transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .detail-modal.open .detail-modal-box { opacity: 1; transform: scale(1) translateY(0); }
  .detail-modal-close {
    position: absolute; top: 1rem; right: 1rem; z-index: 5; width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; background: rgba(14,15,17,0.5); color: #fff; backdrop-filter: blur(4px);
  }
  .detail-modal-close svg { width: 17px; height: 17px; }
  .detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; }
  .detail-grid > * { min-width: 0; }
  @media (max-width: 760px) { .detail-grid { grid-template-columns: 1fr; } }
  .detail-gallery { position: relative; aspect-ratio: 4/3; background: var(--paper); border-radius: 22px 0 0 22px; overflow: hidden; }
  .detail-gallery .stock-media { cursor: zoom-in; top: 14px; right: 14px; bottom: 14px; left: 14px; border-radius: 16px; overflow: hidden; }
  .detail-gallery .stock-arrow { opacity: 1; }
  @media (max-width: 760px) { .detail-gallery { border-radius: 22px 22px 0 0; } }
  .detail-gallery .stock-track img { object-fit: cover; }
  .detail-thumbs { display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.7rem; }
  .detail-thumb { width: 112px; height: 84px; border-radius: 8px; overflow: hidden; flex-shrink: 0; cursor: pointer; opacity: 0.55; transition: opacity 0.2s ease; border: 2px solid transparent; }
  .detail-thumb.active { opacity: 1; border-color: var(--red); }
  .detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .detail-info { padding: 1.8rem 2rem 2rem; }
  .detail-info .year { font-family: var(--font-mono); font-size: 0.75rem; color: var(--red); letter-spacing: 0.05em; }
  .detail-info h3 { font-size: 1.7rem; margin-top: 0.3rem; }
  .detail-price { font-size: 1.3rem; font-weight: 800; margin-top: 0.5rem; }
  .detail-fine-print { font-size: 0.66rem; line-height: 1.5; color: var(--fog); margin-top: 1.6rem; }
  .detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1rem; margin-top: 1.3rem; }
  .detail-spec-item { border-top: 1px solid var(--line); padding-top: 0.5rem; }
  .detail-spec-item .label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--fog); }
  .detail-spec-item .value { font-size: 0.92rem; margin-top: 0.2rem; }
  .detail-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; margin-top: 1.3rem; }
  .detail-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }
  @media (prefers-reduced-motion: reduce) { .detail-modal-box { transition: none; } }

  .center-row { text-align: center; margin-top: 3rem; }

  .katalog-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
  .katalog-head-row .section-head { margin-bottom: 0; }
  .fav-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
    background: var(--red); color: #fff; font-weight: 700; font-size: 0.86rem;
    padding: 0.75rem 1.3rem; border-radius: 999px;
    animation: fav-badge-pulse 2.4s ease-in-out infinite;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .fav-badge:hover { transform: translateY(-2px); background: #7e1a22; }
  .fav-badge svg { width: 16px; height: 16px; stroke: #fff; fill: none; flex-shrink: 0; }
  @keyframes fav-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(163,34,44,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(163,34,44,0); }
  }
  @media (prefers-reduced-motion: reduce) { .fav-badge { animation: none; } }
  @media (max-width: 700px) { .katalog-head-row { align-items: flex-start; } }

  .btn-catalog-small {
    display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
    background: var(--ink); color: #fff; font-weight: 700; font-size: 0.82rem;
    padding: 0.65rem 1.3rem; border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .btn-catalog-small:hover { background: #000; transform: translateY(-2px); }
  .btn-catalog-small svg { width: 14px; height: 14px; animation: arrow-nudge 1.6s ease-in-out infinite; }
  @keyframes arrow-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
  @media (prefers-reduced-motion: reduce) { .btn-catalog-small svg { animation: none; } }


  /* FAQ */
  .faq-columns { display: flex; gap: 2rem; align-items: flex-start; max-width: 1100px; margin: 0 auto; }
  .faq-list { display: flex; flex-direction: column; gap: 0.7rem; flex: 1; min-width: 0; }
  @media (max-width: 800px) { .faq-columns { flex-direction: column; gap: 0.7rem; } }
  .faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
  .faq-q { width: 100%; display: flex; align-items: center; gap: 0.9rem; padding: 1.2rem 1.4rem; font-weight: 500; font-size: 1rem; text-align: left; }
  .faq-q span:nth-child(2) { flex: 1; }
  .faq-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--fog); flex-shrink: 0; }
  .faq-plus { width: 26px; height: 26px; border-radius: 50%; background: var(--paper-soft); flex-shrink: 0; position: relative; }
  .faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .faq-plus::before { width: 10px; height: 1.6px; }
  .faq-plus::after { width: 1.6px; height: 10px; transition: transform 0.3s ease, opacity 0.3s ease; }
  .faq-item.open .faq-plus::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
  .faq-a p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: 0.94rem; max-width: 64ch; }

  @keyframes floaty { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px,24px); } }

  /* footer */
  footer.site { position: relative; overflow: hidden; background: var(--dark); color: #C9C7C2; padding: 4rem 0 0; }
  footer.site .gbp-card {
    margin: 0 0 2.4rem; gap: 0.7rem; padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14);
  }
  footer.site .gbp-card:hover { background: rgba(255,255,255,0.1); }
  footer.site .gbp-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.9); }
  footer.site .gbp-icon svg { width: 15px; height: 15px; }
  footer.site .gbp-title { color: #fff; font-size: 0.85rem; }
  footer.site .gbp-sub { color: rgba(255,255,255,0.5); font-size: 0.72rem; }
  footer.site .gbp-cta { color: #fff; font-size: 0.76rem; }
  footer.site .gbp-cta svg { width: 13px; height: 13px; }
  .foot-cols { display: flex; gap: 3.6rem; flex-wrap: wrap; justify-content: flex-start; padding-bottom: 3rem; border-bottom: 1px solid var(--dark-line); }
  .foot-col h5 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: #7C7A76; margin-bottom: 0.9rem; }
  .foot-col a, .foot-col span { display: block; font-size: 0.9rem; margin-bottom: 0.5rem; color: #C9C7C2; }
  .foot-col a:hover { color: #fff; }
  .foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding: 1.6rem clamp(1.2rem, 4vw, 2.4rem); font-size: 0.76rem; color: #6E6C68; font-family: var(--font-mono); }
  .foot-wordmark { font-family: 'Anton', var(--font-display); font-size: clamp(1.75rem, 8vw, 5.5rem); line-height: 0.85; text-align: center; padding: 1.2rem 0 0.6rem; white-space: nowrap; overflow: hidden;
    background: linear-gradient(100deg, #3a3a3d, #f2f0ec 45%, #3a3a3d 60%, #f2f0ec 85%);
    background-size: 260% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: shimmer 9s linear infinite;
  }
  @keyframes shimmer { to { background-position: -260% 0; } }
  @media (prefers-reduced-motion: reduce) { .foot-wordmark { animation: none; background-position: -60% 0; } }

  section.dark-parts { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
  section.dark-parts > .wrap { position: relative; z-index: 1; }
  section.dark-parts h2 { color: #fff; }
  section.dark-parts .parts-copy p { color: rgba(255,255,255,0.68); }
  section.dark-parts .transport-label { color: #fff; }
  section.dark-parts .transport-days { color: rgba(255,255,255,0.68); }
  section.dark-parts .transport-track { background: rgba(255,255,255,0.16); }
  section.dark-parts .transport-row.train .transport-fill { background: rgba(255,255,255,0.55); }
  .parts-watermark { position: absolute; right: -140px; top: -100px; width: 620px; max-width: none; z-index: 0; pointer-events: none; opacity: 0.06; }
  .parts-watermark svg { width: 100%; height: auto; display: block; }
  .parts-watermark .st0 { fill: #ffffff; stroke: #ffffff; }
  @media (max-width: 900px) { .parts-watermark { right: -100px; top: -60px; width: 380px; } }

  .section-photo-band { position: relative; width: 100%; height: 320px; overflow: hidden; background: var(--paper); }
  .section-photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
  .section-photo-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,11,13,0.45), rgba(10,11,13,0.55)); }
  .section-photo-band-content {
    position: absolute; inset: 0; z-index: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
    padding: 0 1rem; text-align: center;
  }
  .section-photo-band-text {
    margin: 0; width: 100%; white-space: nowrap;
    font-family: 'Anton', var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.005em;
    font-size: clamp(1.3rem, 3.2vw, 2.5rem); color: #fff;
    text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  }
  .band-cta {
    position: relative; display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 600;
    background: #E4E4E7; color: var(--ink); border: 1px solid var(--line); border-radius: 999px;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem; box-shadow: 0 4px 16px rgba(20,23,26,0.18);
    cursor: pointer; transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .band-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,23,26,0.24); }
  .band-cta::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: conic-gradient(from var(--social-toggle-angle), transparent 0%, transparent 75%, #fff 92%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: social-toggle-shine 2.6s linear infinite;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) { .band-cta::before { animation: none; } }
  .band-cta-pill { font-family: var(--font-body); font-size: 0.95rem; }
  .band-cta-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--red); color: #fff;
  }
  .band-cta-arrow svg { width: 14px; height: 14px; animation: arrow-nudge 1.6s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce) { .band-cta-arrow svg { animation: none; } }
  @media (max-width: 900px) {
    .section-photo-band { height: 280px; }
    .section-photo-band-text { white-space: normal; font-size: clamp(1.1rem, 5vw, 1.5rem); }
  }

  .platnosci-watermark { position: absolute; left: -140px; top: -100px; width: 620px; max-width: none; z-index: 0; pointer-events: none; opacity: 0.05; }
  .platnosci-watermark svg { width: 100%; height: auto; display: block; }
  .platnosci-watermark .st0 { fill: var(--ink); stroke: var(--ink); }
  @media (max-width: 900px) { .platnosci-watermark { left: -100px; top: -60px; width: 380px; } }

  section.dark-team { background: var(--dark); }
  section.dark-team h2 { color: #fff; }
  section.dark-team .section-head p { color: rgba(255,255,255,0.68); }
  .parts-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.8rem; align-items: stretch; }
  @media (max-width: 800px) { .parts-layout { grid-template-columns: 1fr; } }
  .parts-photo { border-radius: 20px; overflow: hidden; }
  .parts-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 800px) { .parts-photo { aspect-ratio: 4/3; } }
  .parts-copy { max-width: 46ch; display: flex; flex-direction: column; justify-content: center; }
  .parts-copy h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.15; }
  .parts-copy .transport-compare { margin-top: 1.8rem; }
  .spark-box {
    position: relative; margin-top: 1.6rem; border-radius: 14px; padding: 1.05rem 1.3rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16);
    overflow: hidden; animation: spark-glow 2.4s ease-in-out infinite;
  }
  @keyframes spark-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(163,34,44,0); }
    50% { box-shadow: 0 0 26px rgba(163,34,44,0.5), inset 0 0 20px rgba(163,34,44,0.12); }
  }
  .spark-box::after {
    content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    animation: spark-sweep 2.8s ease-in-out infinite; pointer-events: none;
  }
  @keyframes spark-sweep { 0% { left: -60%; } 55%, 100% { left: 130%; } }
  @media (prefers-reduced-motion: reduce) {
    .spark-box, .spark-box::after { animation: none; box-shadow: none; }
  }
  .spark-box p { position: relative; z-index: 1; font-size: 0.88rem; line-height: 1.55; color: rgba(255,255,255,0.8); margin: 0; }
  .spark-box strong { color: #fff; }
  .transport-compare { display: flex; flex-direction: column; gap: 1.3rem; }
  .transport-row { display: flex; align-items: center; gap: 1rem; }
  .transport-label { width: 128px; flex-shrink: 0; font-size: 0.88rem; font-weight: 700; }
  .transport-icon { font-size: 1.2rem; flex-shrink: 0; width: 24px; text-align: center; }
  .transport-track { flex: 1; height: 7px; background: var(--line); border-radius: 999px; position: relative; overflow: hidden; }
  .transport-fill { position: absolute; top: 0; left: 0; height: 100%; border-radius: 999px; width: 0%; background: var(--red); animation: fillbar 2.4s ease-in-out infinite; }
  .transport-row.train .transport-fill { background: var(--ink-soft); animation-duration: 9s; }
  @keyframes fillbar { 0% { width: 0%; } 82% { width: 100%; } 100% { width: 100%; } }
  @media (prefers-reduced-motion: reduce) { .transport-fill { animation: none; width: 60%; } }
  .transport-days { width: 84px; flex-shrink: 0; text-align: right; font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); }

  .price-tag {
    position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
    font-family: 'Anton', var(--font-display); font-weight: 400; color: #fff;
    font-size: clamp(1rem, 1.8vw, 1.3rem); white-space: nowrap;
    background: rgba(14,15,17,0.4); backdrop-filter: blur(4px);
    padding: 0.35rem 0.85rem; border-radius: 999px;
    animation: pricepulse 2.4s ease-in-out infinite;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) { .price-tag { animation: none; } }

  /* ---------- favorites: heart button + tooltip ---------- */
  .photo-watermark {
    position: absolute; bottom: 0.6rem; left: 0.6rem; z-index: 3;
    width: 32%; max-width: 130px; height: auto; opacity: 0.5; pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
  }
  .detail-gallery .photo-watermark { width: 26%; max-width: 150px; bottom: calc(14px + 0.6rem); left: calc(14px + 0.6rem); }

  .fav-btn {
    position: absolute; bottom: 0.7rem; right: 0.7rem; z-index: 4;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(14,15,17,0.5); backdrop-filter: blur(4px); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .fav-btn svg { width: 17px; height: 17px; fill: none; transition: fill 0.2s ease; }
  .fav-btn:hover { background: rgba(14,15,17,0.75); transform: scale(1.08); }
  .fav-btn.active { color: var(--red); background: rgba(255,255,255,0.92); }
  .fav-btn.active svg { fill: var(--red); }
  [data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute; bottom: calc(100% + 8px); right: 0; z-index: 20;
    background: rgba(14,15,17,0.94); color: #fff; font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.02em; padding: 0.4rem 0.65rem; border-radius: 8px; white-space: nowrap; pointer-events: none;
  }
  @media (max-width: 640px) { [data-tooltip]:hover::after { display: none; } }

  .btn-fav-text {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.03em; color: var(--ink);
    background: var(--paper-soft); border: 1px solid var(--line); padding: 0.55rem 0.9rem; border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .btn-fav-text svg { width: 15px; height: 15px; fill: none; transition: fill 0.2s ease; }
  .btn-fav-text:hover { background: #ECEAE5; }
  .btn-fav-text.active { color: var(--red); border-color: var(--red-tint); background: var(--red-tint); }
  .btn-fav-text.active svg { fill: var(--red); }
  .live-dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: #2FAE5B; margin-right: 1rem; position: relative; flex-shrink: 0; }
  .live-dot::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: radial-gradient(circle, rgba(47,174,91,0.65) 0%, rgba(47,174,91,0.25) 55%, rgba(47,174,91,0) 100%);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 70% { transform: scale(4.5); opacity: 0; } 100% { transform: scale(1); opacity: 0; } }
  @media (prefers-reduced-motion: reduce) { .live-dot::before { animation: none; } }

  .social-col-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; gap: 1rem; flex-wrap: wrap; }
  .social-col-head h3 { display: flex; align-items: center; gap: 0.5rem; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
  .social-title-play { width: 1.1em; height: 1.1em; flex-shrink: 0; }
  .social-title-play rect { fill: var(--red); }
  .social-title-play path { fill: #fff; }
  @property --social-toggle-angle {
    syntax: '<angle>'; inherits: false; initial-value: 0deg;
  }
  .social-toggle { position: relative; display: inline-flex; background: var(--paper-soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem; gap: 0.2rem; }
  .social-toggle::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: conic-gradient(from var(--social-toggle-angle), transparent 0%, transparent 75%, #fff 92%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: social-toggle-shine 2.6s linear infinite;
    pointer-events: none;
  }
  @keyframes social-toggle-shine { to { --social-toggle-angle: 360deg; } }
  @media (prefers-reduced-motion: reduce) { .social-toggle::before { animation: none; } }
  .social-toggle-btn { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); padding: 0.4rem 0.95rem; border-radius: 999px; transition: background 0.2s ease, color 0.2s ease; }
  .social-toggle-btn.active { background: var(--paper); color: var(--ink); box-shadow: 0 2px 8px rgba(20,23,26,0.1); }
  .social-toggle-btn:not(.active):hover { color: var(--ink); }
  .social-feed-panel iframe { display: block; }
  .follow-btn {
    font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); white-space: nowrap;
    border: 1px solid var(--line); border-radius: 999px; padding: 0.4rem 0.95rem; background: var(--paper-soft);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .follow-btn:hover { background: #ECEAE5; color: var(--ink); border-color: rgba(21,23,26,0.18); }

  .yt-feature-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.6rem; align-items: stretch; }
  @media (max-width: 800px) { .yt-feature-grid { grid-template-columns: 1fr; } }
  .yt-featured-player { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; }
  .yt-featured-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .yt-featured-info { margin-top: 0.8rem; }
  .yt-featured-info h4 { font-size: 1.05rem; font-weight: 700; }
  .yt-featured-info span { font-size: 0.8rem; color: var(--ink-soft); }

  .yt-scroll-row { display: flex; flex-direction: column; gap: 0.9rem; max-height: 100%; overflow-y: auto; scrollbar-width: thin; padding-right: 0.2rem; }
  @media (max-width: 800px) { .yt-scroll-row { max-height: none; overflow-y: visible; } }
  .yt-mini-card { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; color: inherit; }
  .yt-mini-thumb { position: relative; flex: 0 0 130px; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; }
  .yt-mini-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
  .yt-mini-card:hover .yt-mini-thumb img { transform: scale(1.06); }
  .yt-mini-info { min-width: 0; }
  .yt-mini-info h5 { font-size: 0.85rem; font-weight: 700; margin: 0; line-height: 1.3; }
  .yt-mini-info span { font-size: 0.74rem; color: var(--ink-soft); }
  .yt-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .yt-play span { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.94); display: flex; align-items: center; justify-content: center; }
  .yt-play svg { width: 11px; height: 11px; fill: var(--ink); margin-left: 1px; }
  .yt-duration { position: absolute; bottom: 5px; right: 5px; background: rgba(14,15,17,0.8); color: #fff; font-size: 0.64rem; padding: 0.1rem 0.4rem; border-radius: 4px; font-family: var(--font-mono); }

  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  @media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
  .team-card { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
  .team-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .team-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,15,17,0.88), rgba(14,15,17,0.15) 42%, rgba(14,15,17,0) 62%); }
  .team-info { position: absolute; left: 1.6rem; right: 1.6rem; bottom: 1.5rem; color: #fff; }
  .team-info h4 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.15rem; }
  .team-role { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.75); margin-bottom: 0.6rem; letter-spacing: 0.02em; }
  .team-phone { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 600; color: #fff; transition: color 0.2s ease; }
  .team-phone:hover { color: var(--red); }

  .fav-tab-wrap { position: fixed; top: 32%; right: 0; transform: translateY(-50%); z-index: 45; display: none; }
  .fav-tab-handle {
    position: relative; width: 46px; height: 92px; border-radius: 14px 0 0 14px;
    background: var(--red); color: #fff; box-shadow: -4px 0 16px rgba(0,0,0,0.18);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
    transition: background 0.2s ease;
  }
  .fav-tab-handle:hover { background: #8a1c25; }
  .fav-tab-handle svg { width: 20px; height: 20px; fill: #fff; stroke: #fff; }
  .fav-tab-count {
    font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
    background: rgba(255,255,255,0.22); border-radius: 999px; min-width: 20px; padding: 0.1rem 0.3rem;
  }
  .fav-tab-panel {
    position: absolute; top: 50%; right: calc(100% + 0.6rem); transform: translateY(-50%) scale(0.92);
    transform-origin: right center; width: min(300px, calc(100vw - 5rem)); max-height: 380px;
    background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18); overflow: hidden; display: flex; flex-direction: column;
    opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .fav-tab-wrap.open .fav-tab-panel { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1); }
  .fav-tab-header {
    display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
    padding: 0.8rem 0.9rem; border-bottom: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fog);
  }
  .fav-tab-clear {
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.02em; text-transform: none;
    color: var(--red); font-weight: 700; transition: opacity 0.2s ease;
  }
  .fav-tab-clear:hover { opacity: 0.7; }
  .fav-tab-list { overflow-y: auto; max-height: 260px; padding: 0.6rem; display: flex; flex-direction: column; gap: 0.3rem; }
  .fav-tab-item {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem; border-radius: 10px;
    text-align: left; transition: background 0.15s ease;
  }
  .fav-tab-item:hover { background: var(--paper-soft); }
  .fav-tab-thumb, .fav-tab-thumb-empty { width: 52px; height: 40px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--paper-soft); }
  .fav-tab-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .fav-tab-label { font-size: 0.86rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
  .fav-tab-link {
    display: block; text-align: center; padding: 0.9rem; font-size: 0.86rem; font-weight: 700;
    color: var(--red); border-top: 1px solid var(--line); flex-shrink: 0;
  }
  .fav-tab-link:hover { background: var(--paper-soft); }
  .office-row { text-align: center; margin-top: 3rem; padding-top: 2.2rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem 0.7rem; }
  .office-row a { color: var(--ink-soft); transition: color 0.2s ease; }
  .office-row a:hover { color: var(--red); }
  .office-sep { color: var(--line); }

  .location-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.8rem; align-items: stretch; }
  @media (max-width: 800px) { .location-layout { grid-template-columns: 1fr; } }
  .location-photo { border-radius: 20px; overflow: hidden; }
  .location-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 800px) { .location-photo { aspect-ratio: 4/3; } }
  .location-right { display: flex; flex-direction: column; justify-content: center; gap: 1.8rem; }
  .location-info { display: flex; flex-direction: column; gap: 1.6rem; }
  .loc-item { display: flex; align-items: flex-start; gap: 1rem; }
  .loc-item svg { width: 22px; height: 22px; stroke: var(--red); flex-shrink: 0; margin-top: 0.15rem; }
  .loc-label { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fog); margin-bottom: 0.25rem; }
  .loc-value { display: block; font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
  .loc-value a:hover { color: var(--red); }
  .location-map img, .location-map iframe { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 16px; border: 0; }
  .map-actions { margin-top: 0.7rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .map-open-btn {
    background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35);
    font-weight: 600; font-size: 0.8rem; padding: 0.5rem 1rem; border-radius: 999px;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .map-open-btn:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
  .gbp-card {
    display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem;
    background: var(--paper-soft); border: 1px solid var(--line); border-radius: 16px;
    padding: 1.1rem 1.4rem; transition: background 0.2s ease, transform 0.2s ease;
  }
  .gbp-card:hover { background: #ECEAE5; transform: translateY(-2px); }
  .gbp-icon {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--paper);
    display: flex; align-items: center; justify-content: center; color: var(--red);
    box-shadow: 0 4px 10px rgba(20,23,26,0.08);
  }
  .gbp-icon svg { width: 20px; height: 20px; }
  .gbp-body { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; }
  .gbp-title { font-weight: 700; font-size: 0.98rem; }
  .gbp-sub { font-size: 0.82rem; color: var(--ink-soft); }
  .gbp-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.86rem; color: var(--red); white-space: nowrap; }
  .gbp-cta svg { width: 15px; height: 15px; animation: arrow-nudge 1.6s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce) { .gbp-cta svg { animation: none; } }
  @media (max-width: 620px) {
    .gbp-card { flex-wrap: wrap; }
    .gbp-cta { width: 100%; justify-content: center; margin-top: 0.4rem; }
  }
  @media (max-width: 700px) {
    .location-map img, .location-map iframe { aspect-ratio: 3/2; }
    .map-actions { justify-content: center; }
  }

  section.dark-location { position: relative; background: #1c1e22; }
  section.dark-location::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(to bottom, rgba(28,30,34,0.55), rgba(28,30,34,0.85) 60%, #1c1e22 100%),
      url(../images/tlo-lokalizacja.webp) center -220px / cover no-repeat;
    filter: grayscale(1);
  }
  section.dark-location > .wrap { position: relative; z-index: 1; }
  section.dark-location h2 { color: #fff; }
  section.dark-location .loc-label { color: rgba(255,255,255,0.45); }
  section.dark-location .loc-value { color: #fff; }

  .delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  @media (max-width: 900px) { .delivery-grid { grid-template-columns: 1fr; } }
  .delivery-card { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
  .delivery-photo { position: absolute; inset: 0; background: var(--paper-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
  .delivery-photo svg { width: 46px; height: 46px; color: var(--fog); }
  .delivery-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .delivery-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(14,15,17,0.92) 0%, rgba(14,15,17,0.65) 14%, rgba(14,15,17,0) 30%); }
  .delivery-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem 1.2rem 1.1rem; color: #fff; }
  .delivery-car { font-weight: 700; font-size: 1.05rem; }
  .delivery-client { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }
  .delivery-review-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; max-width: 720px; margin: 2.6rem auto 0; }
  .delivery-review-slides { flex: 1; min-width: 0; text-align: center; }
  .delivery-review-slide { display: none; }
  .delivery-review-slide.active { display: block; animation: delivery-fadein 0.5s ease; }
  @keyframes delivery-fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  .delivery-review-stars { color: #E0A32E; font-size: 1.3rem; letter-spacing: 0.2em; margin-bottom: 0.9rem; }
  .delivery-review-quote { font-size: 1.05rem; line-height: 1.6; color: var(--ink); font-style: italic; }
  .delivery-review-author { margin-top: 0.9rem; font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); font-style: normal; }
  .delivery-review-arrow {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    background: var(--paper-soft); border: 1px solid var(--line); color: var(--ink-soft);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .delivery-review-arrow:hover { background: var(--paper); color: var(--ink); border-color: var(--ink-soft); }
  .delivery-review-arrow svg { width: 17px; height: 17px; }
  @media (max-width: 640px) { .delivery-review-arrow { width: 32px; height: 32px; } .delivery-review-arrow svg { width: 15px; height: 15px; } }

  .client-photos-carousel { margin-top: 1.4rem; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); }
  .client-photos-track { display: flex; gap: 1.2rem; width: max-content; animation: client-photos-scroll 32s linear infinite; }
  .client-photos-carousel:hover .client-photos-track { animation-play-state: paused; }
  .client-photos-item { width: 240px; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; background: var(--paper-soft); flex-shrink: 0; }
  .client-photos-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @keyframes client-photos-scroll { from { transform: translateX(-50%); } to { transform: translateX(0%); } }
  @media (prefers-reduced-motion: reduce) { .client-photos-track { animation: none; } }
  @media (max-width: 700px) { .client-photos-item { width: 190px; } }

  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; grid-auto-flow: dense; gap: 1rem; }
  .gallery-card { position: relative; grid-column: span 1; grid-row: span 1; border-radius: 16px; overflow: hidden; cursor: default; }
  .gallery-card.gallery-large { grid-column: span 2; grid-row: span 2; }
  .gallery-card.gallery-wide { grid-column: span 2; }
  .gallery-media { position: absolute; inset: 0; background: var(--paper-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
  .gallery-media svg { width: 34px; height: 34px; color: var(--fog); }
  .gallery-large .gallery-media svg { width: 46px; height: 46px; }
  .gallery-media img { width: 100%; height: 100%; object-fit: cover; display: block; border: none; }
  .gallery-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(14,15,17,0.85) 0%, rgba(14,15,17,0.4) 22%, rgba(14,15,17,0) 45%); }
  .gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem 1.1rem; color: #fff; font-weight: 600; font-size: 0.92rem; }
  .gallery-video { cursor: pointer; }
  .gallery-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
    width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center; color: var(--ink);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .gallery-video:hover .gallery-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
  .gallery-play svg { width: 20px; height: 20px; margin-left: 2px; }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-card.gallery-large { grid-column: span 2; grid-row: span 2; }
  }
  @media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-card, .gallery-card.gallery-wide, .gallery-card.gallery-large { grid-column: span 1; grid-row: span 1; }
  }

  .stock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  @media (max-width: 800px) { .stock-grid { grid-template-columns: 1fr; } }
  .stock-card { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
  .stock-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; cursor: pointer; }
  .stock-track { display: flex; height: 100%; width: 100%; transition: transform 0.55s cubic-bezier(0.65,0,0.35,1); }
  .stock-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; display: block; }
  .stock-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 36px; height: 36px; border-radius: 50%; background: rgba(14,15,17,0.45); backdrop-filter: blur(4px);
    color: #fff; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s ease, background 0.25s ease;
  }
  .stock-card:hover .stock-arrow { opacity: 1; }
  .stock-arrow:hover { background: rgba(14,15,17,0.75); }
  .stock-arrow.prev { left: 0.8rem; }
  .stock-arrow.next { right: 0.8rem; }
  .stock-arrow svg { width: 15px; height: 15px; }
  .stock-counter {
    position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
    font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.85);
    background: rgba(14,15,17,0.4); backdrop-filter: blur(3px); padding: 0.3rem 0.6rem; border-radius: 999px;
    pointer-events: none;
  }
  .stock-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(14,15,17,0.94) 0%, rgba(14,15,17,0.6) 34%, rgba(14,15,17,0) 62%); }
  .stock-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.5rem 1.3rem 0; color: #fff; pointer-events: none; }
  .stock-info h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
  .stock-specs { display: flex; flex-wrap: wrap; gap: 0 0.2rem; }
  .spec { flex: 0 1 auto; min-width: 0; display: flex; align-items: center; gap: 0.5rem; padding: 0.9rem 0.9rem 0.9rem 0; }
  .spec + .spec { padding-left: 0.9rem; border-left: 1px solid rgba(255,255,255,0.28); }
  .spec svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.9); flex-shrink: 0; }
  .spec-col { display: flex; flex-direction: column; min-width: 0; }
  .spec-label { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); white-space: nowrap; }
  .spec-value { font-size: 0.8rem; font-weight: 700; color: #fff; white-space: nowrap; }
  .stock-reserve-marquee { position: absolute; left: 0; right: 0; top: 40%; transform: translateY(-50%); z-index: 1; overflow: hidden; pointer-events: none; }
  .stock-reserve-track { display: flex; width: max-content; animation: stock-marquee 16s linear infinite; }
  .stock-reserve-track span {
    flex-shrink: 0; white-space: nowrap; padding: 0 2rem;
    font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
    font-size: clamp(1.6rem, 5vw, 2.8rem); color: rgba(255,255,255,0.25);
  }
  @keyframes stock-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .stock-reserve-track { animation: none; } }
  .stock-top-right { position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
  .stock-price {
    pointer-events: none;
    font-family: 'Anton', var(--font-display); font-weight: 400; color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2rem); white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    animation: pricepulse 2.4s ease-in-out infinite;
  }
  @keyframes pricepulse {
    0%, 100% { transform: scale(1); text-shadow: 0 2px 12px rgba(0,0,0,0.55); }
    50% { transform: scale(1.055); text-shadow: 0 4px 22px rgba(0,0,0,0.8); }
  }
  @media (prefers-reduced-motion: reduce) { .stock-price { animation: none; } }

  .stock-video-btn {
    display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap;
    background: rgba(14,15,17,0.4); backdrop-filter: blur(4px); color: #fff;
    border: 1px solid rgba(255,255,255,0.55);
    font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
    padding: 0.4rem 0.85rem 0.4rem 0.6rem; border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .stock-video-btn:hover { background: rgba(14,15,17,0.65); border-color: #fff; transform: translateY(-1px); }
  .stock-video-btn svg { width: 15px; height: 15px; color: #fff; flex-shrink: 0; }

  .lightbox { position: fixed; inset: 0; z-index: 340; background: rgba(10,11,13,0.95); display: none; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
  .lightbox.open { display: flex; }
  .lightbox-img { max-width: min(88vw, 1150px); max-height: 82vh; border-radius: 10px; object-fit: contain; box-shadow: 0 30px 70px rgba(0,0,0,0.5); opacity: 0; transform: scale(0.97); transition: opacity 0.28s ease, transform 0.28s ease; }
  .lightbox-img.show { opacity: 1; transform: scale(1); }
  .lightbox-close, .lightbox-arrow { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
  .lightbox-close:hover, .lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
  .lightbox-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; }
  .lightbox-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
  .lightbox-arrow.prev { left: 1rem; }
  .lightbox-arrow.next { right: 1rem; }
  .lightbox-close svg { width: 18px; height: 18px; }
  .lightbox-arrow svg { width: 20px; height: 20px; }
  .lightbox-counter { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); color: rgba(255,255,255,0.75); font-size: 0.82rem; }
  @media (max-width: 640px) { .lightbox-arrow { width: 42px; height: 42px; } .lightbox-arrow.prev { left: 0.4rem; } .lightbox-arrow.next { right: 0.4rem; } }

  #platnosci { padding: 3.4rem 0; }
  #platnosci .section-head { margin-bottom: 1.8rem; }
  .pay-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
  @media (max-width: 800px) { .pay-layout { grid-template-columns: 1fr; } }
  .pay-image { border-radius: 16px; overflow: hidden; }
  .pay-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 800px) { .pay-image { aspect-ratio: 4/3; } }
  .pay-list { display: flex; flex-direction: column; gap: 0.7rem; }
  .pay-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.3rem; text-align: center; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.5rem; flex: 1; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease; }
  .pay-card:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(20,23,26,0.08); }
  .pay-card.featured { border-color: var(--red); }
  .pay-badge { position: absolute; top: -0.6rem; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.28rem 0.65rem; border-radius: 999px; white-space: nowrap; }
  .pay-figure { font-family: 'Anton', var(--font-display); font-weight: 400; font-size: 2.5rem; color: var(--ink); margin: 0; line-height: 1.1; }
  .pay-card.featured .pay-figure { color: var(--red); }
  .pay-card h4 { font-size: 0.92rem; font-weight: 700; margin: 0; }
  .pay-card p { margin: 0; }
  .pay-card p { font-size: 0.8rem; color: var(--ink-soft); }
  .pay-note { text-align: center; margin-top: 1.2rem; font-size: 0.82rem; color: var(--fog); }

  ::selection { background: var(--red-tint); color: var(--red); }
