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

  :root {
    --cream: #FAF7F2;
    --cream-mid: #F2EDE4;
    --terra: #C96B3F;
    --terra-light: #E08055;
    --terra-dim: rgba(201,107,63,0.1);
    --brown: #2D1F14;
    --brown-mid: #5C3D26;
    --muted: #8C7160;
    --warm-border: rgba(201,107,63,0.15);
    --sand: #E8DDD2;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--brown); overflow-x: hidden; }

  /* ── TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  body > nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5vw;
    background: rgba(250,247,242,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--warm-border);
  }

  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .nav-logo span { color: var(--terra); }

  .nav-logo img {
    height: 62px;
    width: auto;
    display: block;
    transition: transform 0.25s;
  }
  .nav-logo:hover img { transform: scale(1.03); }

  @media (max-width: 768px) {
    .nav-logo img { height: 48px; }
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--terra); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    background: var(--terra);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.25s;
    letter-spacing: 0.01em;
  }

  .nav-cta:hover {
    background: var(--terra-light);
    box-shadow: 0 4px 16px rgba(201,107,63,0.3);
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 7rem 5vw 3rem 6vw;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  /* ── ANIMOWANA FAKTURA W TLE ── */
  .bg-invoice {
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 280px;
    pointer-events: none;
    z-index: 0;
    transform: rotate(5deg);
    filter: sepia(20%);
  }

  /* Linie faktury — efekt dorysowywania */
  .inv-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 0.6s ease forwards;
  }
  .inv-line:nth-child(1)  { animation-delay: 0.4s; }
  .inv-line:nth-child(2)  { animation-delay: 0.7s; }
  .inv-line:nth-child(3)  { animation-delay: 1.0s; }
  .inv-line:nth-child(4)  { animation-delay: 1.3s; }
  .inv-line:nth-child(5)  { animation-delay: 1.6s; }
  .inv-line:nth-child(6)  { animation-delay: 1.9s; }
  .inv-line:nth-child(7)  { animation-delay: 2.2s; }
  .inv-line:nth-child(8)  { animation-delay: 2.5s; }
  .inv-line:nth-child(9)  { animation-delay: 2.8s; }
  .inv-line:nth-child(10) { animation-delay: 3.1s; }

  .inv-text {
    opacity: 0;
    animation: fadeInText 0.4s ease forwards;
  }
  .inv-text:nth-child(1)  { animation-delay: 0.6s; }
  .inv-text:nth-child(2)  { animation-delay: 0.9s; }
  .inv-text:nth-child(3)  { animation-delay: 1.2s; }
  .inv-text:nth-child(4)  { animation-delay: 1.5s; }
  .inv-text:nth-child(5)  { animation-delay: 1.8s; }
  .inv-text:nth-child(6)  { animation-delay: 2.1s; }
  .inv-text:nth-child(7)  { animation-delay: 2.4s; }
  .inv-text:nth-child(8)  { animation-delay: 2.7s; }
  .inv-text:nth-child(9)  { animation-delay: 3.0s; }
  .inv-text:nth-child(10) { animation-delay: 3.3s; }
  .inv-text:nth-child(11) { animation-delay: 3.6s; }
  .inv-text:nth-child(12) { animation-delay: 3.9s; }

  .stamp-zaplacono {
    position: absolute;
    bottom: 85px;
    right: 75px;
    z-index: 3;
    opacity: 1;
    animation: stampIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 1s both;
    pointer-events: none;
  }

  .inv-body {
    opacity: 0;
    animation: fadeInText 0.5s ease 0.2s forwards;
  }

  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }
  @keyframes fadeInText {
    to { opacity: 1; }
  }
  @keyframes stampIn {
    from { opacity: 0; transform: scale(0.3) rotate(-30deg); }
    to   { opacity: 1; transform: scale(1) rotate(-15deg); }
  }

  .hero-right-col {
    background: var(--cream-mid);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 4vw 5rem 3vw;
    gap: 1.2rem;
    border-left: 1px solid var(--warm-border);
    position: relative;
    overflow: hidden;
  }

  .hero-right-col::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,107,63,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hcard {
    background: white;
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid var(--warm-border);
    box-shadow: 0 2px 12px rgba(45,31,20,0.04);
    transition: transform 0.3s;
  }
  .hcard:hover { transform: translateX(-4px); }

  .hcard-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem;
  }

  .hcard-icon {
    width: 40px; height: 40px;
    background: var(--terra-dim);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }

  .hcard-badge {
    font-size: 0.98rem; font-weight: 700;
    padding: 0.25rem 0.7rem; border-radius: 100px;
    letter-spacing: 0.03em;
  }
  .hcard-badge.ok { background: rgba(60,160,80,0.1); color: #3CA050; }
  .hcard-badge.warm { background: var(--terra-dim); color: var(--terra); }

  .hcard h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem; font-weight: 500;
    color: var(--brown); margin-bottom: 0.3rem;
  }
  .hcard p { font-size: 1.14rem; color: var(--muted); line-height: 1.5; }

  .hcard-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.8rem; }
  .hcard-list li {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 1.14rem; padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--warm-border);
  }
  .hcard-list li:last-child { border-bottom: none; padding-bottom: 0; }
  .hcard-list-name { color: var(--muted); }
  .hcard-list-val { font-weight: 600; color: var(--brown); }

  .hcard-mini-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.8rem; margin-top: 0.8rem;
  }
  .mini-cell {
    background: var(--cream);
    border-radius: 10px;
    padding: 0.9rem;
    text-align: center;
  }
  .mini-cell-num {
    font-family: 'Lora', serif;
    font-size: 1.5rem; font-weight: 500;
    color: var(--terra); line-height: 1;
  }
  .mini-cell-lbl { font-size: 1.02rem; color: var(--muted); margin-top: 0.2rem; }

  /* ── ANIMACJE WEJŚCIA ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Klasy animacji ładowania */
  .anim-eyebrow  { animation: fadeUp   0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
  .anim-h1       { animation: fadeUp   0.7s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
  .anim-sub      { animation: fadeUp   0.7s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
  .anim-btns     { animation: fadeUp   0.6s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
  .anim-team     { animation: fadeIn   0.6s ease 0.7s both; }
  .anim-card-1   { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
  .anim-card-2   { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
  .anim-card-3   { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.6s both; }

  /* Reveal przy scrollu */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--terra-dim);
    border: 1px solid rgba(201,107,63,0.2);
    color: var(--terra);
    font-size: 1.14rem;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 1.6rem;
    letter-spacing: -0.03em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--terra);
  }

  .hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 2.5rem;
    font-weight: 400;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .btn-terra {
    padding: 0.9rem 2.2rem;
    background: var(--terra);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.14rem;
    font-weight: 600;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-terra:hover {
    background: var(--terra-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,107,63,0.3);
  }

  .btn-outline {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--sand);
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.14rem;
    font-weight: 600;
    transition: all 0.25s;
  }

  .btn-outline:hover {
    border-color: var(--terra);
    color: var(--terra);
  }

  .hero-team {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-avatars {
    display: flex;
  }

  .hero-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    overflow: hidden;
    margin-left: -10px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--terra);
  }

  .hero-avatars .hero-avatar:first-child { margin-left: 0; }

  .hero-team-text {
    font-size: 1.06rem;
    color: var(--muted);
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
  }

  .hero-team-text strong { color: var(--brown); }

  /* ── VALUES ── */
  .values {
    padding: 5rem 5vw;
    background: var(--cream-mid);
    border-top: 1px solid var(--warm-border);
    border-bottom: 1px solid var(--warm-border);
    position: relative;
    z-index: 1;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .value-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 14px;
    transition: background 0.25s, transform 0.25s;
    cursor: default;
  }
  .value-item:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45,31,20,0.06);
  }
  .value-item:hover .value-icon { transform: scale(1.15) rotate(-5deg); }

  .value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }

  .value-item h4 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.5rem;
  }

  .value-item p {
    font-size: 1.18rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── SERVICES ── */
  .services {
    padding: 7rem 5vw;
    position: relative;
    z-index: 1;
  }

  .section-eyebrow {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--brown);
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 560px;
    margin-bottom: 3.5rem;
  }

  .section-title em { font-style: italic; color: var(--terra); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid var(--warm-border);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .service-card:hover {
    border-color: rgba(201,107,63,0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45,31,20,0.08);
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--terra-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    transition: background 0.3s;
  }

  .service-card:hover .service-icon-wrap { background: rgba(201,107,63,0.15); }

  .service-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.7rem;
  }

  .service-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
  }

  /* ── ABOUT (jasna paleta) ── */
  .about {
    padding: 7rem 5vw;
    background: var(--cream-mid);
    color: var(--brown);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--warm-border);
    border-bottom: 1px solid var(--warm-border);
  }

  .about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,107,63,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text .section-eyebrow { color: var(--terra); }

  .about-text .section-title { color: var(--brown); max-width: 100%; }

  .about-text p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(45,31,20,0.78);
    margin-bottom: 1.2rem;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .about-feature-check {
    width: 22px;
    height: 22px;
    background: var(--terra);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    flex-shrink: 0;
    margin-top: 1px;
    color: white;
    font-weight: 700;
  }

  .about-feature span {
    font-size: 1rem;
    color: var(--brown);
    line-height: 1.5;
  }
  .about-feature span strong { color: var(--brown); }

  .about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .about-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) sepia(10%);
  }

  .about-img.tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .about-img.tall img { height: 100%; }

  .about-img-stat {
    border-radius: 16px;
    background: var(--terra);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-img-stat .num {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: white;
    line-height: 1;
  }

  .about-img-stat .lbl {
    font-size: 1.14rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.3rem;
  }

  /* ── CLIENTS ── */
  .clients {
    padding: 7rem 5vw;
    position: relative;
    z-index: 1;
  }

  .clients-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  .clients-desc {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .clients-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .client-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--warm-border);
    transition: all 0.3s;
    cursor: default;
  }

  .client-card:hover {
    border-color: rgba(201,107,63,0.3);
    box-shadow: 0 12px 32px rgba(45,31,20,0.08);
    transform: translateY(-4px);
  }

  .client-card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .client-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.7rem;
  }

  .client-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .client-card.wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.2rem;
    align-items: start;
  }

  /* ── W LICZBACH ── */
  .stats-section {
    padding: 7rem 5vw;
    background: var(--cream-mid);
    position: relative;
    z-index: 1;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--warm-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(45,31,20,0.08);
  }

  .stat-number {
    font-family: 'Lora', serif;
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--terra);
    line-height: 1;
    margin-bottom: 0.6rem;
  }

  .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: var(--brown);
    opacity: 0.7;
    line-height: 1.4;
  }

  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  /* ── TESTIMONIALS (zachowane dla JS) ── */
  .testimonials {
    display: none;
  }

  .testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
  }

  .star {
    width: 18px;
    height: 18px;
    background: var(--terra);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  .testimonial p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.14rem;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 1.5rem;
  }

  .testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .person-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terra), var(--terra-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.98rem;
    color: white;
  }

  .person-name {
    font-weight: 600;
    font-size: 1.06rem;
    color: var(--brown);
  }

  .person-role {
    font-size: 0.94rem;
    color: var(--muted);
  }

  /* ── FAQ ── */
  .faq {
    padding: 7rem 5vw;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq .section-title { text-align: center; max-width: 100%; }
  .faq .section-eyebrow { text-align: center; }

  .faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--warm-border);
  }

  .faq-item {
    background: var(--cream);
  }

  .faq-question {
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
  }

  .faq-question h4 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.4;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--terra-dim);
    border: 1px solid rgba(201,107,63,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--terra);
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.25s;
  }

  .faq-item.open .faq-icon {
    background: var(--terra);
    color: white;
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-item.open .faq-answer { max-height: 300px; }

  .faq-answer p {
    padding: 0 1.8rem 1.4rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
  }

  /* ── CONTACT (jasna paleta) ── */
  .contact {
    padding: 8rem 5vw;
    text-align: center;
    background: var(--cream-mid);
    color: var(--brown);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--warm-border);
    border-bottom: 1px solid var(--warm-border);
  }

  .contact::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,107,63,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,107,63,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--brown);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
  }
  .contact h2 em { font-style: italic; color: var(--terra); }

  .contact p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }

  .contact-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
  }

  .contact-card {
    background: white;
    border: 1px solid var(--warm-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 160px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 2px 12px rgba(45,31,20,0.04);
  }

  .contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,107,63,0.35);
    box-shadow: 0 10px 28px rgba(45,31,20,0.08);
  }

  .contact-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

  .contact-card-label {
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.3rem;
    font-weight: 600;
  }

  .contact-card-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brown);
  }

  /* Mapa Google na kontakcie */
  .contact-map {
    margin-top: 3.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--warm-border);
    box-shadow: 0 10px 40px rgba(45,31,20,0.1);
    position: relative;
    z-index: 1;
  }
  .contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
  }

  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.4rem;
    background: white;
    color: var(--terra);
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.14rem;
    font-weight: 700;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
  }

  .btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  footer {
    background: var(--brown);
    color: rgba(250,247,242,0.75);
    position: relative;
    z-index: 1;
  }

  .footer-cta {
    text-align: center;
    padding: 5rem 5vw 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-cta h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--cream);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }

  .footer-cta p {
    max-width: 480px;
    margin: 0 auto 2rem;
    color: rgba(250,247,242,0.7);
    line-height: 1.6;
  }

  .footer-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    border: 1.5px solid rgba(250,247,242,0.3);
    color: var(--cream);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
  }

  .btn-outline-light:hover {
    border-color: var(--cream);
    background: rgba(250,247,242,0.08);
    transform: translateY(-2px);
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    padding: 3.5rem 5vw;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    transition: opacity 0.25s;
  }

  .footer-logo span { color: var(--terra-light); }

  .footer-logo img {
    height: 77px;
    width: auto;
    display: block;
    transition: transform 0.25s;
  }
  .footer-logo:hover img { transform: scale(1.03); }
  .footer-logo:hover { opacity: 0.9; }

  @media (max-width: 768px) {
    .footer-logo img { height: 62px; }
  }

  .footer-col p { font-size: 1.02rem; line-height: 1.6; max-width: 280px; }

  .footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(250,247,242,0.5);
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .footer-col > a, .footer-col > span {
    display: block;
    font-size: 1.02rem;
    color: rgba(250,247,242,0.8);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
  }

  .footer-col > span a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col > span a:hover,
  .footer-col > a:hover { color: var(--terra-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 5vw;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 1.08rem;
    color: rgba(250,247,242,0.45);
  }

  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right-col { display: none; }
    .hero-left-col { padding: 9rem 5vw 5rem; align-items: center; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-team { justify-content: center; }
    .hero-sub { max-width: 100%; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .clients-layout { grid-template-columns: 1fr; }
    .clients-cards { grid-template-columns: 1fr; }
    .client-card.wide { grid-column: auto; display: flex; flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .footer-columns { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  .nav-links a.active { color: var(--terra); }

  /* ── SERVICES INTRO (2-kolumnowy layout: tekst + ToC) ── */
  .services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
  }
  .services-intro__text { display: flex; flex-direction: column; }
  .services-intro__text .section-title { margin-bottom: 1.4rem; }

  @media (max-width: 960px) {
    .services-intro {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  /* ── SERVICES TOC (Spis usług) ── */
  .services-toc {
    background: var(--cream-mid);
    border: 1px solid var(--warm-border);
    border-radius: 22px;
    padding: 1.8rem 2rem;
    margin-bottom: 0;
  }
  .services-toc__title {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brown);
    margin: 0 0 1.15rem 0;
    letter-spacing: -0.01em;
  }
  .services-toc__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
  }
  .services-toc__list li { margin: 0; }
  .services-toc__list a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.25rem;
    background: white;
    color: var(--brown);
    border: 1px solid var(--warm-border);
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .services-toc__list a:hover {
    background: var(--terra-dim);
    border-color: rgba(201,107,63,0.4);
    color: var(--terra);
    transform: translateY(-1px);
  }
  .services-toc__list a.services-toc__highlighted {
    background: var(--terra);
    color: white;
    border-color: var(--terra);
  }
  .services-toc__list a.services-toc__highlighted:hover {
    background: var(--terra-light);
    border-color: var(--terra-light);
    color: white;
  }
  /* Scroll-offset żeby anchor links nie chowały się pod sticky nav */
  .service-card[id], .service[id] { scroll-margin-top: 100px; }

  /* ── SERVICES LIST (rozszerzony format usług) ── */
  .services-list {
    display: flex;
    flex-direction: column;
  }
  .service {
    padding: 3.5rem 0;
    border-top: 1px solid var(--warm-border);
  }
  .service:first-child { border-top: none; padding-top: 1rem; }
  .service__layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .service__meta { position: relative; }
  .service__icon {
    width: 96px;
    height: 96px;
    background: var(--cream-mid);
    border: 1px solid var(--warm-border);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 1.4rem;
  }
  .service__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cream-mid);
    color: var(--brown-mid);
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    border: 1px solid var(--warm-border);
    margin-bottom: 1rem;
  }
  .service__badge--accent {
    background: var(--terra);
    color: white;
    border-color: var(--terra);
  }
  .service__meta h3 {
    font-family: 'Lora', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.2;
    margin: 0 0 0.8rem;
    letter-spacing: -0.015em;
  }
  .service__meta > p {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }
  .service__content > p {
    font-size: 1.12rem;
    color: var(--brown);
    line-height: 1.85;
    margin: 0 0 1.6rem;
  }
  .service__content > p strong { color: var(--terra); font-weight: 700; }
  .service__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .service__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1.08rem;
    color: var(--brown);
    line-height: 1.6;
  }
  .service__list li::before {
    content: '✓';
    color: var(--terra);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.45;
  }

  @media (max-width: 960px) {
    .service__layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .service__icon { width: 72px; height: 72px; font-size: 2.1rem; border-radius: 18px; }
    .service__meta h3 { font-size: 1.4rem; }
    .service { padding: 2.5rem 0; }
  }

  /* ── ANIMACJE DODATKOWE ── */

  /* 1. Subtelny float hero cards w stanie spoczynku */
  @keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  .hcard.anim-card-1 { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both, floatCard 5s ease-in-out 1.2s infinite; }
  .hcard.anim-card-2 { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both, floatCard 5s ease-in-out 1.6s infinite; }
  .hcard.anim-card-3 { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.6s both, floatCard 5s ease-in-out 2.0s infinite; }

  /* 2. Pulsujący zielony dot przy „Na bieżąco" / „Odpiszemy dziś" */
  .hcard-badge.ok::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #3CA050;
    margin-right: 0.45rem;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(60,160,80,0.6);
    animation: pulseDot 2s ease-out infinite;
  }
  @keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(60,160,80,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(60,160,80,0); }
    100% { box-shadow: 0 0 0 0 rgba(60,160,80,0); }
  }

  /* 3. Shimmer / shine na buttonach terra przy hover */
  .btn-terra {
    position: relative;
    overflow: hidden;
  }
  .btn-terra::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(110deg, transparent 0%, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%, transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
  }
  .btn-terra:hover::after { left: 100%; }

  /* 4. Service-icon-wrap obraca się delikatnie przy hover na karcie */
  .service-card:hover .service-icon-wrap {
    transform: rotate(-8deg) scale(1.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .service-icon-wrap {
    transition: transform 0.35s ease, background 0.3s;
  }

  /* 5. Service__icon (w expanded uslugi) — taki sam efekt */
  .service:hover .service__icon {
    transform: rotate(-6deg) scale(1.05);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .service__icon { transition: transform 0.35s ease; }

  /* 6. ToC pill-buttony delikatne dygnięcie przy hover */
  .services-toc__list a:hover {
    animation: tocJiggle 0.4s ease;
  }
  @keyframes tocJiggle {
    0%, 100% { transform: translateY(-1px) rotate(0); }
    40%      { transform: translateY(-2px) rotate(-1.5deg); }
    70%      { transform: translateY(-2px) rotate(1.5deg); }
  }

  /* 7. Respekt dla preferencji systemowych */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ── COOKIE BANNER (RODO) ── */
  .cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    background: white;
    border: 1px solid var(--warm-border);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(45,31,20,0.15);
    padding: 22px 26px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    z-index: 200;
    max-width: 880px;
    margin: 0 auto;
    transform: translateY(140%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .cookie-banner.is-visible { transform: translateY(0); }
  .cookie-banner p {
    font-size: 1rem;
    color: var(--brown);
    margin: 0;
    flex: 1;
    line-height: 1.55;
  }
  .cookie-banner a { color: var(--terra); font-weight: 600; text-decoration: underline; }
  .cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .cookie-banner__btn {
    border: none;
    padding: 11px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Nunito', sans-serif;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .cookie-banner__btn--accept {
    background: var(--terra);
    color: white;
  }
  .cookie-banner__btn--accept:hover {
    background: var(--terra-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,107,63,0.3);
  }

  @media (max-width: 768px) {
    .cookie-banner {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
      padding: 18px;
      bottom: 12px; left: 12px; right: 12px;
    }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { width: 100%; }
  }
