  :root {
    --black:   #111010;
    --charcoal:#1e1c1a;
    --concrete:#2d2926;
    --warm:    #3a3530;
    --brass:   #c9a84c;
    --brass-light: #dfc070;
    --brass-dark:  #a07c30;
    --cream:   #f5f0e8;
    --off-white:#ede8df;
    --muted:   #9a9087;
    --text-body:#c8c0b4;
    --radius:  4px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--text-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom Cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--brass);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--brass);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.6;
  }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 18px; height: 18px; background: var(--brass-light); }
  body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; border-color: var(--brass-light); }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* Delay utilities */
  .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
  .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
  .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

  /* Typography */
  h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--cream); line-height: 1.1; }

  .section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--brass);
    display: inline-block;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  /* Layout */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  section { padding: 7rem 0; position: relative; }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  }
  header.scrolled {
    background: rgba(17, 16, 16, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
  }
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--brass); }

  nav { display: flex; align-items: center; gap: 2.5rem; }
  nav a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--brass);
    transition: width 0.3s;
  }
  nav a:hover { color: var(--cream); }
  nav a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--brass);
    color: var(--black) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.3s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--brass-light) !important; color: var(--black) !important; transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: 0.3s; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
      linear-gradient(160deg, #111010 0%, #1e1c1a 50%, #111010 100%);
  }

  .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
  }

  .hero-left { }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--brass);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeDown 0.8s 0.2s forwards;
  }
  .hero-tag-dot { width: 6px; height: 6px; background: var(--brass); border-radius: 50%; animation: pulse 2s infinite; }

  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  @keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--cream);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }
  .hero-title em {
    font-style: normal;
    color: var(--brass);
    position: relative;
  }
  .hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: var(--brass);
    opacity: 0.3;
  }

  .hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--brass);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover {
    background: var(--brass-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201,168,76,0.25);
  }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-ghost {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--brass); }
  .btn-ghost svg { transition: transform 0.3s; }
  .btn-ghost:hover svg { transform: translateX(4px); }

  .hero-right {
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards;
  }

  .hero-visual {
    position: relative;
    height: 520px;
  }

  .hero-card {
    position: absolute;
    background: var(--concrete);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    overflow: hidden;
  }

  .hero-card-main {
    width: 300px; height: 380px;
    top: 0; right: 40px;
    background: linear-gradient(135deg, #2d2926 0%, #1e1c1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
  }
  .hero-card-main-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, transparent 40%, rgba(17,16,16,0.9) 100%),
      repeating-linear-gradient(
        45deg,
        rgba(201,168,76,0.03) 0px,
        rgba(201,168,76,0.03) 1px,
        transparent 1px,
        transparent 20px
      );
  }
  .hero-card-main::before {
    content: '';
    position: absolute;
    top: 1.5rem; left: 1.5rem; right: 1.5rem;
    height: 55%;
    border-radius: 4px;
    background:
      linear-gradient(160deg, rgba(201,168,76,0.15), rgba(201,168,76,0.03)),
      repeating-linear-gradient(
        -30deg,
        rgba(201,168,76,0.06) 0px,
        rgba(201,168,76,0.06) 1px,
        transparent 1px,
        transparent 12px
      );
    border: 1px solid rgba(201,168,76,0.12);
  }

  .hero-card-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
  }
  .hero-card-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
    position: relative;
    z-index: 1;
  }

  .hero-card-stat {
    width: 160px; height: 130px;
    bottom: 60px; left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background: var(--warm);
    border-color: rgba(201,168,76,0.2);
    gap: 0.25rem;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--brass);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.06em;
  }

  .hero-card-badge {
    width: 180px; height: 80px;
    bottom: 0; right: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.3);
  }
  .badge-icon {
    width: 36px; height: 36px;
    background: var(--brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
  }
  .badge-text { }
  .badge-title { font-size: 0.75rem; font-weight: 600; color: var(--cream); line-height: 1.2; }
  .badge-sub { font-size: 0.65rem; color: var(--muted); }

  /* Floating dots */
  .float-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--brass);
    opacity: 0.4;
    animation: floatY 4s ease-in-out infinite;
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--brass), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.6; height: 48px; }
    50% { opacity: 1; height: 56px; }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--concrete);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 2rem 0;
  }
  .stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
  }
  .stat-item {
    text-align: center;
    padding: 1rem 2rem;
    position: relative;
  }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(201,168,76,0.15);
  }
  .stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--brass);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .stat-item .label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  /* ── O NAS ── */
  #o-nas {
    background: var(--charcoal);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--warm) 0%, var(--concrete) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  .about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        45deg,
        rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px,
        transparent 1px, transparent 30px
      );
  }
  .about-img-frame::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(17,16,16,0.6), transparent);
  }
  .about-accent-frame {
    position: absolute;
    width: 60%;
    aspect-ratio: 4/3;
    background: var(--concrete);
    border: 2px solid var(--brass);
    border-radius: 6px;
    bottom: -2rem;
    right: -2rem;
    overflow: hidden;
  }
  .about-accent-frame-inner {
    width: 100%; height: 100%;
    background:
      linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%),
      repeating-linear-gradient(
        -45deg,
        rgba(201,168,76,0.05) 0px, rgba(201,168,76,0.05) 1px,
        transparent 1px, transparent 20px
      );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    opacity: 0.3;
  }
  .about-years-badge {
    position: absolute;
    top: 2rem; left: -1.5rem;
    background: var(--brass);
    color: var(--black);
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    z-index: 2;
  }
  .about-years-badge .yr-num { font-size: 1.8rem; line-height: 1; }
  .about-years-badge .yr-label { font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

  .about-text { }
  .about-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
  }
  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .feature-check {
    width: 20px; height: 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .feature-check svg { color: var(--brass); }
  .feature-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.4; }

  /* ── USŁUGI ── */
  #uslugi {
    background: var(--black);
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .services-desc {
    max-width: 400px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 8px;
    overflow: hidden;
  }

  .service-card {
    background: var(--charcoal);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }
  .service-card:hover { background: var(--concrete); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    transition: background var(--transition), border-color var(--transition);
    font-size: 1.4rem;
  }
  .service-card:hover .service-icon {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
  }
  .service-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: rgba(201,168,76,0.06);
    font-weight: 900;
    line-height: 1;
    transition: color var(--transition);
  }
  .service-card:hover .service-num { color: rgba(201,168,76,0.12); }

  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 700;
  }
  .service-desc { font-size: 0.87rem; line-height: 1.65; color: var(--muted); }

  /* ── OBSZAR DZIAŁANIA ── */
  #obszar {
    background: var(--charcoal);
    overflow: hidden;
  }
  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
  }
  .area-text { }
  .area-title { margin-bottom: 1rem; }
  .area-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2.5rem;
  }

  .cities-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .city-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.18);
    color: var(--text-body);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 400;
    transition: all 0.3s;
    cursor: default;
  }
  .city-tag:hover {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
    color: var(--cream);
    transform: translateY(-2px);
  }
  .city-tag-dot { width: 5px; height: 5px; background: var(--brass); border-radius: 50%; opacity: 0.7; }

  .area-map-visual {
    position: relative;
    height: 480px;
  }
  .map-placeholder {
    position: absolute;
    inset: 0;
    background: var(--concrete);
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
      repeating-linear-gradient(0deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px),
      repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px);
  }

  /* Simplified SVG map of region */
  .map-svg-wrap { position: relative; z-index: 2; width: 80%; }
  .map-svg-wrap svg { width: 100%; filter: drop-shadow(0 0 20px rgba(201,168,76,0.15)); }

  .map-pin {
    fill: var(--brass);
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.5));
    animation: pinPulse 2.5s ease-in-out infinite;
  }
  @keyframes pinPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; filter: drop-shadow(0 0 10px rgba(201,168,76,0.8)); }
  }

  /* ── DLACZEGO MY ── */
  #dlaczego {
    background: var(--black);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
  }
  .why-card {
    background: var(--charcoal);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: border-color var(--transition), transform var(--transition);
  }
  .why-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
  .why-icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    flex-shrink: 0;
    font-size: 1.5rem;
  }
  .why-content { flex: 1; }
  .why-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.5rem; }
  .why-desc { font-size: 0.88rem; line-height: 1.65; color: var(--muted); }

  /* ── REALIZACJE ── */
  #realizacje {
    background: var(--charcoal);
  }
  .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .gallery-item {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery-item:nth-child(1) { grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
  }
  .gallery-item:hover .gallery-placeholder { transform: scale(1.03); }

  .gallery-item:nth-child(1) .gallery-placeholder { min-height: 460px; }
  .gallery-item:nth-child(4) .gallery-placeholder { min-height: 220px; }

  /* Different textures for each gallery item */
  .gallery-item:nth-child(1) .gallery-placeholder { background: linear-gradient(135deg, #2a2520 0%, #1a1815 100%); }
  .gallery-item:nth-child(2) .gallery-placeholder { background: linear-gradient(135deg, #22201d 0%, #302c27 100%); }
  .gallery-item:nth-child(3) .gallery-placeholder { background: linear-gradient(135deg, #1e1c1a 0%, #282420 100%); }
  .gallery-item:nth-child(4) .gallery-placeholder { background: linear-gradient(135deg, #2d2926 0%, #1e1c1a 100%); }
  .gallery-item:nth-child(5) .gallery-placeholder { background: linear-gradient(135deg, #252220 0%, #1c1a18 100%); }

  .gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
  }
  .gallery-item:nth-child(1) .gallery-placeholder::before {
    background: repeating-linear-gradient(45deg, rgba(201,168,76,0.05) 0px, rgba(201,168,76,0.05) 1px, transparent 1px, transparent 20px);
  }
  .gallery-item:nth-child(2) .gallery-placeholder::before {
    background: repeating-linear-gradient(-30deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 15px);
  }
  .gallery-item:nth-child(3) .gallery-placeholder::before {
    background: repeating-linear-gradient(60deg, rgba(201,168,76,0.06) 0px, rgba(201,168,76,0.06) 1px, transparent 1px, transparent 25px);
  }
  .gallery-item:nth-child(4) .gallery-placeholder::before {
    background: repeating-linear-gradient(0deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 18px);
  }
  .gallery-item:nth-child(5) .gallery-placeholder::before {
    background: repeating-linear-gradient(90deg, rgba(201,168,76,0.05) 0px, rgba(201,168,76,0.05) 1px, transparent 1px, transparent 22px);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,16,16,0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-label {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .gallery-cat {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .gallery-item:hover .gallery-cat { opacity: 1; transform: translateY(0); }
  .gallery-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
    transition-delay: 0.05s;
  }
  .gallery-item:hover .gallery-name { opacity: 1; transform: translateY(0); }

  .gallery-icon-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    color: rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
  }

  /* ── OPINIE ── */
  #opinie {
    background: var(--charcoal);
    overflow: hidden;
  }
  .testimonials-track-wrap {
    margin-top: 3rem;
    position: relative;
  }
  .testimonials-track-wrap::before,
  .testimonials-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .testimonials-track-wrap::before { left: 0; background: linear-gradient(to right, var(--charcoal), transparent); }
  .testimonials-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--charcoal), transparent); }

  .testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.5rem 0 1.5rem;
    cursor: grab;
  }
  .testimonials-slider:active { cursor: grabbing; }
  .testimonials-slider::-webkit-scrollbar { display: none; }

  .testi-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--concrete);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
  }
  .testi-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(201,168,76,0.07);
    line-height: 1;
    pointer-events: none;
  }
  .testi-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }

  .testi-stars { display: flex; gap: 3px; }
  .testi-star { color: var(--brass); font-size: 0.85rem; }

  .testi-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-body);
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 1.25rem;
  }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brass);
    flex-shrink: 0;
  }
  .testi-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
  .testi-city { font-size: 0.75rem; color: var(--muted); }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(201,168,76,0.25);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
  }
  .slider-dot.active { background: var(--brass); width: 20px; border-radius: 3px; }

  /* ── PARTNERZY ── */
  #partnerzy {
    background: var(--black);
    padding: 5rem 0;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.07);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
  }
  .partner-item {
    background: var(--charcoal);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    min-height: 90px;
  }
  .partner-item:hover { background: var(--concrete); }
  .partner-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-align: center;
    transition: color var(--transition);
    line-height: 1.2;
  }
  .partner-item:hover .partner-logo { color: var(--cream); }
  .partner-logo-sub {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 0.2rem;
    opacity: 0.6;
  }

  @media (max-width: 768px) {
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .testi-card { flex: 0 0 85vw; }
  }
  @media (max-width: 480px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── KONTAKT ── */
  #kontakt {
    background: var(--black);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-info { }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .contact-info-item:last-child { border-bottom: none; }
  .contact-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .contact-info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.25rem; }
  .contact-info-value { font-size: 1rem; color: var(--cream); font-weight: 500; }
  .contact-info-value a { color: inherit; text-decoration: none; }
  .contact-info-value a:hover { color: var(--brass); }

  .contact-form {
    background: var(--charcoal);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 10px;
    padding: 2.5rem;
  }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .form-sub { font-size: 0.87rem; color: var(--muted); margin-bottom: 2rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--concrete);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group select option { background: var(--concrete); }

  .form-submit {
    background: var(--brass);
    color: var(--black);
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
  }
  .form-submit:hover {
    background: var(--brass-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201,168,76,0.2);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 3rem 0 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .footer-brand .logo { font-size: 1.4rem; display: inline-block; margin-bottom: 0.75rem; }
  .footer-brand-desc { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }
  .footer-col-title { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brass); margin-bottom: 1rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { font-size: 0.87rem; color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--cream); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: 0.78rem; color: var(--muted); }
  .footer-copy span { color: var(--brass); }

  /* ── MOBILE NAV ── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17,16,16,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--brass); }
  .mobile-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }

  /* ── RESPONSIVENESS ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    .hero-content { grid-template-columns: 1fr; gap: 3rem; padding-top: 8rem; }
    .hero-right { display: none; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }

    .services-grid { grid-template-columns: 1fr; }

    .area-grid { grid-template-columns: 1fr; gap: 3rem; }
    .area-map-visual { height: 300px; }

    .why-grid { grid-template-columns: 1fr; }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }
    .gallery-item:nth-child(1) { grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: auto; }
    .gallery-item:nth-child(1) .gallery-placeholder { min-height: 220px; }

    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { justify-content: center; text-align: center; }

    section { padding: 5rem 0; }
    .services-header { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(4) { grid-column: auto; }
  }
