:root {
      --bg: #120f14;
      --bg-soft: #1a1620;
      --bg-soft-2: #221b28;
      --panel: rgba(255,255,255,0.06);
      --panel-strong: rgba(255,255,255,0.1);
      --line: rgba(255,255,255,0.12);
      --text: #f6eff4;
      --muted: #ccbfc8;
      --muted-2: #a995a4;
      --accent: #d8a6b8;
      --accent-2: #f2ced8;
      --accent-deep: #8f6274;
      --gold: #d9c4a1;
      --shadow: 0 18px 50px rgba(0,0,0,0.3);
      --radius: 22px;
      --radius-sm: 16px;
      --max: 1240px;
      --header-h: 80px;
      --pattern: radial-gradient(circle at 20% 20%, rgba(216,166,184,0.15), transparent 32%), radial-gradient(circle at 80% 10%, rgba(217,196,161,0.09), transparent 24%), radial-gradient(circle at 50% 80%, rgba(242,206,216,0.08), transparent 28%);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Manrope', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }
    img { display: block; width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .page-bg,
    body::before,
    body::after {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -3;
      content: "";
    }
    body::before {
      background: var(--pattern);
      opacity: .9;
    }
    body::after {
      background:
        radial-gradient(circle at 10% 10%, rgba(242,206,216,0.06), transparent 15%),
        radial-gradient(circle at 80% 30%, rgba(216,166,184,0.05), transparent 18%),
        radial-gradient(circle at 40% 90%, rgba(217,196,161,0.05), transparent 18%);
      filter: blur(16px);
    }

    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
    .section { position: relative; padding: 76px 0; }
    .section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
    .section.alt-2 { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)); }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--accent-2);
      background: rgba(255,255,255,0.03);
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 14px;
      backdrop-filter: blur(12px);
    }

    .tiny-icon {
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: var(--gold);
      flex: 0 0 auto;
    }

    .section-head {
      max-width: 680px;
      margin-bottom: 28px;
    }

    .section-head.center { text-align: center; margin-inline: auto; }

    .section-head.center .lead {
  margin-inline: auto;
  text-align: center;
}

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.02;
      letter-spacing: -0.02em;
      margin: 0 0 14px;
      font-weight: 600;
    }

    h1 { font-size: clamp(3rem, 9vw, 6.3rem); }
    h2 { font-size: clamp(2.3rem, 7vw, 4rem); }
    h3 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    p { margin: 0; color: var(--muted); }
    .lead { font-size: clamp(1rem, 2vw, 1.1rem);  }

    .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.05);
      color: var(--text);
      cursor: pointer;
      transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
      backdrop-filter: blur(14px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
      overflow: hidden;
    }
    .btn::before {
      content: "";
      position: absolute;
      inset: auto -40% 0 auto;
      width: 130px;
      height: 130px;
      background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 60%);
      opacity: 0;
      transform: translate3d(0,0,0);
      transition: opacity .35s ease;
    }
    .btn:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.28); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
    .btn:hover::before { opacity: 1; }
    .btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-color: transparent; }
    .btn.secondary { background: rgba(255,255,255,0.04); }
    .btn.ghost { background: transparent; }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      font-size: .85rem;
      color: var(--muted);
    }

    .card, .glass {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .ornament {
      position: absolute;
      pointer-events: none;
      opacity: .16;
      z-index: 0;
      filter: blur(.2px);
    }
    .ornament svg { width: 100%; height: auto; display: block; }
    .ornament.one { width: 180px; top: 28px; right: -40px; }
    .ornament.two { width: 140px; bottom: 40px; left: -30px; }
    .sparkle {
      position: absolute;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242,206,216,0.85), transparent 68%);
      filter: blur(1.5px);
      opacity: .55;
      animation: floatGlow 5s ease-in-out infinite;
    }
    .sparkle.s1 { top: 12%; left: 6%; }
    .sparkle.s2 { top: 28%; right: 10%; animation-delay: -2s; }
    .sparkle.s3 { bottom: 15%; left: 16%; animation-delay: -3s; }

    @keyframes floatGlow {
      0%, 100% { transform: translateY(0) scale(1); opacity: .35; }
      50% { transform: translateY(-12px) scale(1.1); opacity: .72; }
    }

    .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-text span {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(10px);

  /* KLUCZ */
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter .5s ease;

  will-change: transform, opacity;
}
    .reveal-left { transform: translateX(-50px); }
    .reveal-right { transform: translateX(50px); }
    .reveal-scale { transform: scale(.92); }
    .is-visible { opacity: 1 !important; transform: translate(0,0) scale(1) !important; filter: blur(0) !important; }
    .reveal-text span {
      display: inline;
      
      transition-delay: calc(var(--i) * 170ms);
    }

    /* HEADER START */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: transform .35s ease, background .35s ease, border-color .35s ease;
      background: rgba(14,12,17,0.55);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .site-header.hidden { transform: translateY(-100%); }
    .site-header.scrolled { background: rgba(14,12,17,0.86); border-color: rgba(255,255,255,0.1); }
    .nav-wrap {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 18px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      color: var(--accent-2);
      position: relative;
      overflow: hidden;
    }
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50%;
    }
    .brand-text strong { display: block; font-size: .98rem; letter-spacing: .06em; text-transform: uppercase; }
    .brand-text span { font-size: .74rem; color: var(--muted-2); letter-spacing: .12em; text-transform: uppercase; }

    .desktop-nav { display: none; }
    .menu-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .menu-item { position: relative; }
    .menu-link, .submenu-toggle {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid transparent;
      transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
    }
    .menu-link:hover, .submenu-toggle:hover, .menu-item:hover > .submenu-toggle {
      color: #fff;
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.08);
      transform: translateY(-1px);
    }
    .submenu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 240px;
      padding: 10px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(18,15,20,0.95);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    }
    .submenu a {
      display: block;
      padding: 11px 12px;
      border-radius: 14px;
      color: var(--muted);
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }
    .submenu a:hover { background: rgba(255,255,255,0.05); color: #fff; transform: translateX(4px); }
    .menu-item:hover > .submenu,
    .menu-item:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
    .menu-item.submenu-force-close > .submenu {
      opacity: 0 !important;
      visibility: hidden !important;
      transform: translateY(10px) !important;
      pointer-events: none;
    }

    .header-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
    .menu-trigger {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.05);
      display: inline-grid;
      place-items: center;
      color: #fff;
      cursor: pointer;
    }
    .menu-trigger span,
    .menu-trigger::before,
    .menu-trigger::after {
      content: "";
      display: block;
      width: 19px;
      height: 2px;
      background: #fff;
      border-radius: 99px;
      transition: transform .3s ease, opacity .3s ease;
      grid-area: 1 / 1;
    }
    .menu-trigger::before { transform: translateY(-6px); }
    .menu-trigger::after { transform: translateY(6px); }
    .menu-trigger.active span { opacity: 0; }
    .menu-trigger.active::before { transform: rotate(45deg); }
    .menu-trigger.active::after { transform: rotate(-45deg); }

    .mobile-panel {
      position: fixed;
      inset: var(--header-h) 14px auto 14px;
      max-height: calc(100vh - var(--header-h) - 24px);
      overflow: auto;
      padding: 16px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(19,15,23,0.96);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      transform: translateY(-12px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
      z-index: 999;
    }
    .mobile-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .mobile-group { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 0; }
    .mobile-link, .mobile-accordion-toggle {
      width: 100%;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      background: none;
      border: 0;
      color: #fff;
      padding: 0;
      text-align: left;
      cursor: pointer;
    }
    .mobile-submenu {
      display: grid;
      gap: 6px;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .mobile-group.open .mobile-submenu { max-height: 420px; padding-top: 10px; }
    .mobile-submenu a {
      color: var(--muted);
      padding: 9px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,0.03);
    }
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.34);
      opacity: 0;
      visibility: hidden;
      transition: opacity .28s ease, visibility .28s ease;
      z-index: 998;
    }
    .mobile-overlay.show { opacity: 1; visibility: visible; }
    /* HEADER END */

    

    /* HERO START */
    .hero-wrap {
      position: relative;
      min-height: calc(100vh - 20px);
      border-radius: 0 0 34px 34px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: var(--shadow);
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.04);
      transition: opacity .9s ease, transform 6s ease;
    }
    .hero-slide.active { opacity: 1; transform: scale(1); }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.92) contrast(1.02) brightness(.90);
    }
    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16,13,18,0.2), rgba(16,13,18,0.5)), linear-gradient(120deg, rgba(16,13,18,0.7), rgba(16,13,18,0.15) 60%);
    }
.hero-content {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;   /* 🔥 TO PRZESUWA NA DÓŁ */
  justify-content: center;
  transform: translateY(-80px);
  padding: 0 20px 80px; /* dół = odstęp od krawędzi */
  z-index: 2;
}
.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:16px;
margin:0 auto;
width:100%
}
.btn-row{
display:flex;
justify-content:center;
align-items:center;
gap:16px;
margin-top:24px;
}
    .hero-copy {
      max-width: 770px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
     
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--accent-2);
      font-size: .84rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-2));
    }
    .hero-copy p { max-width: 55ch; margin-bottom: 22px; color: #efe7ec; }
    .hero-pagination {
      position: absolute;
      left: 20px;
      bottom: 18px;
      z-index: 3;
      display: flex;
      gap: 8px;
    }
    .hero-dot {
      width: 36px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.24);
      overflow: hidden;
    }
    body {
  padding-top: var(--header-h);
}
    .hero-dot::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, var(--accent-2), #fff);
      transform: scaleX(0);
      transform-origin: left;
    }
    .hero-dot.active::after { animation: dotFill 5s linear forwards; }
    @keyframes dotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
    /* HERO END */

    /* SERVICE CATEGORY GRID START */
    .service-category-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .service-card {
      position: relative;
      min-height: 230px;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      isolation: isolate;
    }
    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s ease, filter .8s ease;
      filter: brightness(.90);
    }
    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(18,15,20,0.1), rgba(18,15,20,0.75));
    }
    .service-card-content {
      position: absolute;
      inset: auto 18px 18px 18px;
      z-index: 2;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
    }
    .service-card h3 { margin-bottom: 0; }
    
    .service-card:hover img { transform: scale(1.08); filter: brightness(.62); }
    .service-card .arrow {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  flex: 0 0 46px;
  transition: transform .4s ease, background .4s ease, border-color .4s ease;
}

.service-card .arrow::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  background: #fff;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
}

.service-card .arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.service-card:hover .arrow {
  transform: translateX(6px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
}
    /* SERVICE CATEGORY GRID END */

    /* SERVICE DETAIL START */
    .service-detail {
      display: grid;
      gap: 24px;
      align-items: start;
    }
    .service-media, .service-info { position: relative; z-index: 1; }

    .service-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }
    .service-track { display: flex; transition: transform .55s cubic-bezier(.22,.8,.2,1); }
    .service-slide {
      min-width: 100%;
      aspect-ratio: 4 / 4.65;
      position: relative;
      overflow: hidden;
    }
    .service-slide img { width: 100%; height: 100%; object-fit: cover; }
    .service-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(18,15,20,0.05), rgba(18,15,20,0.18));
    }
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(17,14,20,0.52);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 3;
      backdrop-filter: blur(12px);
      transition: transform .3s ease, background .3s ease;
    }
    .carousel-arrow:hover { background: rgba(17,14,20,0.72); }
    .carousel-arrow.prev { left: 12px; }
    .carousel-arrow.next { right: 12px; }

    .price-list {
      margin-top: 18px;
      display: grid;
      gap: 12px;
    }
    .price-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 16px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: transform .35s ease, border-color .35s ease, background .35s ease;
    }
    .price-row:hover { transform: translateY(-3px); background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.13); }
    .price-row h4 {
      font-family: 'Manrope', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 4px;
    }
    .price-row p { font-size: .92rem; }
    .price {
      font-weight: 800;
      color: var(--accent-2);
      white-space: nowrap;
      align-self: start;
    }
    /* SERVICE DETAIL END */

    /* CTA STRIP START */
    .cta-strip {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(0,0,0,0.5);
      box-shadow: var(--shadow);
      min-height: 320px;
      display: grid;
      align-items: center;
      padding: 30px 22px;
      margin-top: 22px;
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .cta-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(17,14,20,0.82), rgba(17,14,20,0.45));
    }
    .cta-strip .inner { position: relative; z-index: 1; max-width: 560px; }
    .cta-strip p { color: #eee2ea; margin-bottom: 18px; }
    /* CTA STRIP END */

    /* SIGNATURE START */
    .signature-grid {
      display: grid;
      gap: 16px;
    }
    .signature-card {
      position: relative;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid var(--line);
      min-height: 360px;
      box-shadow: var(--shadow);
    }
    .signature-card img { height: 100%; object-fit: cover; filter: brightness(.90); transition: transform .8s ease; }
    .signature-card:hover img { transform: scale(1.06); }
    .signature-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(18,15,20,0.15), rgba(18,15,20,0.88));
    }
    .signature-overlay {
      position: absolute;
      inset: auto 20px 20px 20px;
      z-index: 2;
    }
    .signature-price { color: var(--gold); font-weight: 700; letter-spacing: .04em; }
    /* SIGNATURE END */

    /* WHY CHOOSE US START */
    .why-grid, .story-grid, .contact-grid {
      display: grid;
      gap: 20px;
      align-items: center;
    }
    .media-frame {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      min-height: 360px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }
    .media-frame img { width: 100%; height: 100%; object-fit: cover; }
    .media-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(18,15,20,0.03), rgba(18,15,20,0.18));
    }
    /* WHY CHOOSE US END */

    /* EMBED SECTIONS START */
    .embed-shell {
      padding: 18px;
      border-radius: 28px;
      border: 1px dashed rgba(255,255,255,0.18);
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
      min-height: 330px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--muted);
      box-shadow: var(--shadow);
    }
    .embed-shell strong { display: block; color: #fff; margin-bottom: 8px; }
    .embed-placeholder {
      width: 100%;
      min-height: 260px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.12);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 20px, transparent 20px, transparent 40px);
      display: grid;
      place-items: center;
      padding: 20px;
    }
    /* EMBED SECTIONS END */

    /* GALLERY PREVIEW START */
    .preview-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .preview-card {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      aspect-ratio: 1 / 1.15;
    }
    .preview-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
    .preview-card:hover img { transform: scale(1.06); }
    /* GALLERY PREVIEW END */

    /* TEAM START */
    .team-grid {
      display: grid;
      gap: 16px;
    }
    .team-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      box-shadow: var(--shadow);
    }
    .team-image { aspect-ratio: 4 / 4.4; overflow: hidden; }
    .team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
    .team-card:hover .team-image img { transform: scale(1.04); }
    .team-meta {
      padding: 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    }
    .team-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 12px; }
    /* TEAM END */

    /* FULL GALLERY START */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .gallery-item {
      position: relative;
      aspect-ratio: 1 / 1.1;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      cursor: pointer;
      box-shadow: var(--shadow);
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s ease; }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-item::after {
      content: "View";
      position: absolute;
      right: 14px; bottom: 14px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(17,14,20,0.58);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(10px);
      font-size: .82rem;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .3s ease, transform .3s ease;
    }
    .gallery-item:hover::after { opacity: 1; transform: translateY(0); }

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(8,7,10,0.92);
      display: grid;
      place-items: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .28s ease, visibility .28s ease;
      z-index: 1200;
    }
    .lightbox.open { opacity: 1; visibility: visible; }
   .lightbox-inner {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
    .lightbox-image-wrap {
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
  max-height: 85vh;
}
    .lightbox-image-wrap img {
      width: 100%;
      height: auto;
      max-height: 85vh;
      object-fit: contain;
      background: #111;
    }
    .lightbox-control, .lightbox-close {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(17,14,20,0.6);
      color: #fff;
      display: grid; place-items: center;
      cursor: pointer;
      backdrop-filter: blur(12px);
    }
    .lightbox-control.prev { left: -8px; }
    .lightbox-control.next { right: -8px; }
    .lightbox-close {
      top: -12px;
      right: 0;
      transform: none;
      width: 46px;
      height: 46px;
    }
    /* FULL GALLERY END */

    /* TRUST BAR START */
    .trust-grid {
      display: grid;
      gap: 14px;
    }
    .trust-card {
      padding: 22px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      transition: transform .35s ease, border-color .35s ease;
    }
    .trust-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.14); }
    .trust-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 16px;
      color: var(--accent-2);
    }
    /* TRUST BAR END */

    /* CONTACT START */
    .contact-card, .map-card {
      padding: 22px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      height: 100%;
    }
    .contact-list { display: grid; gap: 16px; margin-top: 24px; }
    .contact-item strong {
      display: block;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .76rem;
      color: var(--muted-2);
      margin-bottom: 4px;
    }
    .socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
    .social-link {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      transition: transform .3s ease, background .3s ease;
    }
    .social-link:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); }
    .map-placeholder {
      min-height: 100%;
      border-radius: 22px;
      border: 1px dashed rgba(255,255,255,0.16);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      display: grid;
      place-items: center;
      text-align: center;
      padding: 28px;
    }
    /* CONTACT END */

    /* FAQ START */
    .faq-list { display: grid; gap: 12px; }
    .faq-item {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .faq-question {
      width: 100%;
      padding: 18px 18px;
      background: none;
      border: 0;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      cursor: pointer;
      font-weight: 700;
    }
  
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }
    .faq-answer-inner { padding: 0 18px 18px; }
    .faq-item.open .faq-answer { max-height: 220px; }
   .faq-question .arrow {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 34px;
}

/* strzałka */
.faq-question .arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .3s ease;
}

/* open */
.faq-item.open .faq-question .arrow::before {
  transform: rotate(-135deg);
}
    /* FAQ END */

    /* FOOTER START */
    .site-footer {
      padding: 34px 0 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    }
    .footer-grid {
      display: grid;
      gap: 24px;
    }
    .footer-col h3 {
      font-family: 'Manrope', sans-serif;
      font-size: .82rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted-2);
      margin-bottom: 14px;
    }
    .footer-links { display: grid; gap: 10px; }
    .footer-links a { color: var(--muted); transition: color .25s ease, transform .25s ease; }
    .footer-links a:hover { color: #fff; transform: translateX(4px); }
    .footer-bottom {
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      color: var(--muted-2);
      font-size: .92rem;
    }
    /* FOOTER END */

/* LOGO SIZE CONTROL */
.logo{
height:80px;
width:auto;
display:block;
}

.footer-logo{
height:80px;
width:auto;
display:block;
}

.hero-copy h1{
font-size:clamp(42px,5vw,68px);
line-height:1;
margin-bottom: 20px;

}

.hero-content p{
max-width:520px;
margin:0 auto;
text-align:center;
}


.cta-strip .inner {
  display: flex;
  flex-direction: column;
  align-items: center;       /* poziome centrowanie */
  justify-content: center;   /* pionowe (jeśli ma height) */
  text-align: center;        /* tekst na środku */
  margin-inline: auto;
  max-width: 700px;
}

.cta-strip .btn-row {
  display: flex;
  justify-content: center;   /* buttony na środku */
  gap: 12px;
  flex-wrap: wrap;           /* żeby na mobile się nie rozjechało */
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px; /* opcjonalnie – lepszy balans */
}

.cta-strip h3 {
  max-width: 650px;
  text-wrap: balance;
}

.lightbox-control {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(17,14,20,0.6);
  backdrop-filter: blur(12px);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  top: 50%;
  transform: translateY(-50%);
}

/* STRZAŁKA */
.lightbox-control::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* LEWA */
.lightbox-control.prev::before {
  transform: rotate(-135deg);
}

/* PRAWA */
.lightbox-control.next::before {
  transform: rotate(45deg);
}


.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;   /* poziomo */
  text-align: center;    /* tekst */
}

.trust-card h3 {
  margin: 10px 0 8px;
  min-height: 56px;
  
}
.trust-icon {
  margin-bottom: 12px;
}

.trust-card p {
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 5;

  transition: all .25s ease;
}

/* lewa */
.carousel-btn.prev {
  left: 12px;
}

/* prawa */
.carousel-btn.next {
  right: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 5;
}

/* lewa */
.carousel-btn.prev {
  left: 12px;
}

/* prawa */
.carousel-btn.next {
  right: 12px;
}

/* STRZAŁKI */
.carousel-btn .arrow {
  color: black;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px); /* mikro korekta idealnego środka */
}

/* hover */
.carousel-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255,255,255,0.16);
}

.signature-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* ⬅️ zostaje na dole */
  align-items: center;         /* ⬅️ centruje poziomo */

  text-align: center;

  padding: 24px;
}

.hero-copy p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.3px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);

  max-width: 520px;

  /* subtle luxury fade */
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* =========================
   FLOATING BUTTONS LOGIC
   ========================= */

/* Call button – domyślnie UKRYTY (desktop + tablet) */
.call-button-mobile {
  display: none;
}



/* Call button – widoczny TYLKO na mobile */
@media (max-width: 879px) {
  .call-button-mobile {
    display: block;
  }
}


.whatsapp-button img,
.call-button-mobile img {
  width: 60px;
  height: 60px;
}


    /* RESPONSIVE */
    @media (min-width: 700px) {
      .hero-content { padding: 50px 42px 42px; }
      .service-category-grid,
      .signature-grid,
      .trust-grid,
      .team-grid,
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .preview-grid,
      .gallery-grid { grid-template-columns: repeat(4, 1fr); }
      .gallery-grid.gallery-6 { grid-template-columns: repeat(3, 1fr); }
      .why-grid,
      .story-grid,
      .contact-grid { grid-template-columns: 1fr 1fr; }
      .service-detail { grid-template-columns: 1fr 1fr; gap: 28px; }
      .service-detail.reverse .service-media { order: 1; }
      .service-detail.reverse .service-info { order: 2; }
    }

    @media (min-width: 980px) {
      :root { --header-h: 92px; }
      .section { padding: 66px 0 86px; }
      .desktop-nav { display: block; }
      .menu-trigger { display: none; }
      .mobile-panel, .mobile-overlay { display: none; }
      .service-category-grid { grid-template-columns: repeat(3, 1fr); }
      .preview-grid { grid-template-columns: repeat(4, 1fr); }
      .footer-grid { grid-template-columns: 1.15fr .85fr .9fr .7fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
      .signature-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid.gallery-6 { grid-template-columns: repeat(3, 1fr); }
      .contact-teaser-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr .9fr;
        gap: 18px;
        align-items: end;
      }
    }

    @media (max-width: 979px) {
      .header-book { display: none; }
      .cta-strip { background-attachment: scroll; }
      .lightbox-control.prev { left: 10px; }
      .lightbox-control.next { right: 10px; }
      .lightbox-close { top: 10px; right: 10px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }
  /* Scroll animation for service category images */
.service-categories img{
  opacity:0;
  transform:translateY(40px) scale(0.96);
  transition:all .9s cubic-bezier(.22,1,.36,1);
}

.service-categories img.revealed{
  opacity:1;
  transform:translateY(0) scale(1);
}


@media (min-width: 880px) {

  /* STRZAŁKI */
  .lightbox-control.prev {
    left: -60px; /* wyciąga poza obraz */
  }

  .lightbox-control.next {
    right: -60px;
  }

  /* X CLOSE */
  .lightbox-close {
    top: 10px;
    right: 10px;
  }

}

@media (max-width: 979px) {

  /* kontener jako odniesienie */
  .lightbox-inner {
    position: relative;
  }

  /* STRZAŁKI POD ZDJĘCIEM */
  .lightbox-control {
    top: auto;
    bottom: -60px; /* odsuwa pod zdjęcie */
    transform: none;
  }

  .lightbox-control.prev {
    left: calc(50% - 60px); /* lewa strzałka */
  }

  .lightbox-control.next {
    right: calc(50% - 60px); /* prawa strzałka */
  }

  /* X NAD ZDJĘCIEM */
  .lightbox-close {
    top: -14px;
    right: -14px;
  }

}

@media (max-width: 879px) {
  #why-us .reveal-left {
    text-align: center;
  }

  #why-us .section-kicker {
    margin-inline: auto;
    display: inline-flex;
  }
}

@media (max-width: 879px) {
  .story-grid .glass {
    text-align: center;
  }

  .story-grid .glass h3,
  .story-grid .glass p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 879px) {
  .team-card {
    text-align: center;
  }

  .team-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-badges {
    justify-content: center;
  }

  .team-meta p {
    max-width: 420px;
  }
}


@media (max-width: 879px) {
  .service-detail .section-kicker,
  .service-detail .service-info > h2,
  .service-detail .service-info > .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .service-detail .section-kicker {
    display: inline-flex;
    justify-content: center;
  }
}


@media (max-width: 879px) {
  .service-detail .service-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-detail .section-kicker {
    display: inline-flex;
  }

  .service-detail .service-info > h2,
  .service-detail .service-info > .lead {
    text-align: center;
  }
}


@media (max-width: 879px) {
  .contact-card {
    text-align: center;
  }

  .contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    max-width: 320px;
  }

  .contact-item strong {
    text-align: center;
  }

  .contact-item span,
  .contact-item a {
    display: block;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}

@media (max-width: 879px) {
  .site-footer {
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a {
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .brand {
    justify-content: center;
  }
}

@media (max-width: 879px) {
  .nav-wrap > .btn,
  .nav-wrap .btn.primary {
    display: none !important;
  }
}




/*zawartość hero mobile*/
@media (max-width: 879px) {

  /* 1. GŁÓWNY FIX – HERO */
  .hero {
    min-height: auto;        /* usuwa sztuczne 100vh */
    padding-top: 60px;       /* kontrolujesz start */
    padding-bottom: 40px;    /* kontrolujesz koniec */
  }

  /* 2. SPACING WEWNĄTRZ */
  .hero-content {
    gap: 12px;
  }

  /* 3. TEKST (duży wpływ na wysokość) */
  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
  }

}



@media (max-width: 879px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(36px);
  }
}

@media (max-width: 879px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 879px) {

  .service-detail {
    display: flex;
    flex-direction: column;
  }

  .service-info {
    order: 1;
  }

  .service-media {
    order: 2;
  }

}

.media-frame {
  aspect-ratio: 4 / 5; /* 🔥 robi ładny pion na mobile */
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 879px) {

  .reviews-widget-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
  }

  .reviews-widget-wrap [class^="elfsight-app-"],
  .reviews-widget-wrap [class*=" elfsight-app-"] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

}


