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

  :root {
    --sage:       #7A9E7E;
    --sage-light: #B8D4BA;
    --sage-pale:  #EEF4EE;
    --clay:       #C47A52;
    --clay-light: #F0C9B0;
    --clay-pale:  #FBF2EC;
    --warm-white: #FAFAF7;
    --off-white:  #F3F0EB;
    --ink:        #1E1E1B;
    --ink-mid:    #3D3D38;
    --ink-soft:   #6B6B64;
    --ink-muted:  #9B9B92;
    --border:     rgba(30,30,27,0.12);
    --border-soft:rgba(30,30,27,0.07);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--warm-white);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,250,247,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    padding: 0 5vw;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--sage); }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
    font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
  }
  .nav-links a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    background: var(--sage);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #6a8e6e; transform: translateY(-1px); }
  .nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s; }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 64px 5vw 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vw 4vw 5vw 0;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--sage);
  }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--sage);
  }
  .hero-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
  }
  .btn-primary {
    background: var(--sage);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #6a8e6e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,158,126,0.35); }
  .btn-secondary {
    border: 1.5px solid var(--border);
    color: var(--ink);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: var(--sage); background: var(--sage-pale); }
  .hero-trust {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem;
    color: var(--ink-soft);
  }
  .trust-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
  }
  /* HERO RIGHT — zdjęcie budynku */
  .hero-right {
    position: relative;
    background: var(--off-white);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-right--photo {
    background: var(--ink);
  }
  .hero-building-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease 0.4s;
  }
  .hero-building-img.loaded,
  .hero-building-img[src] {
    opacity: 1;
  }
  .hero-building-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(18,18,16,0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Karta adresowa */
  .hero-card {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(250,250,247,0.96);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.75rem;
    width: min(340px, 88%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
  }
  .hero-card--address {}

  .hero-card-addr-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: .9rem;
  }
  .hero-card-addr-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .hero-card-addr-icon svg {
    width: 14px; height: 14px;
    stroke: var(--sage);
  }
  .hero-card-addr-label {
    font-size: .68rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
    margin-bottom: 3px;
  }
  .hero-card-addr-value {
    font-size: .85rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.5;
  }
  .hero-card-addr-divider {
    height: 1px;
    background: var(--border-soft);
    margin: 0 0 .9rem 44px;
  }
  .hero-card-cta {
    display: block;
    text-align: center;
    background: var(--ink);
    color: #fff;
    padding: 12px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s;
    margin-top: 1rem;
  }
  .hero-card-cta:hover { background: var(--sage); }

  /* SECTION COMMON */
  section { padding: 6rem 5vw; }
  .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--sage);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .section-title em { font-style: italic; color: var(--sage); }

  /* PROBLEMS */
  .problems { background: var(--off-white); }
  .problems-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .problems-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    align-items: end;
  }
  .problems-desc {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.75;
    padding-top: 1rem;
  }
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .problem-card {
    background: var(--warm-white);
    padding: 2rem 1.75rem;
    transition: background 0.2s;
    cursor: default;
  }
  .problem-card:hover { background: var(--sage-pale); }
  .problem-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--sage-light);
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .problem-title {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
  }
  .problem-desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; }

  /* SERVICES */
  .services-inner { max-width: 1100px; margin: 0 auto; }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
    background: var(--warm-white);
  }
  .service-card:hover { border-color: var(--sage); transform: translateY(-3px); }
  .service-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--sage-pale);
    border-color: var(--sage-light);
  }
  .service-accent {
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at top right, rgba(122,158,126,0.12) 0%, transparent 70%);
  }
  .service-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--sage-pale);
    color: var(--sage);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .service-card.featured .service-tag { background: rgba(122,158,126,0.2); }
  .service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .service-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.25rem; }
  .service-price {
    font-size: 0.8rem;
    color: var(--ink-soft);
  }
  .service-price strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage);
    margin-top: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .service-link svg { width: 14px; height: 14px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
  .service-card:hover .service-link svg { transform: translateX(3px); }
  .service-featured-right {
    display: flex; flex-direction: column; gap: 0.75rem;
  }
  .service-detail {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.85rem;
    color: var(--ink-mid);
    line-height: 1.5;
  }
  .service-detail-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(122,158,126,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .service-detail-icon svg { width: 12px; height: 12px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; }

  /* TEAM */
  .team { background: var(--off-white); }
  .team-inner { max-width: 1100px; margin: 0 auto; }
  .team-header { margin-bottom: 3rem; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .team-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,30,27,0.08); }
  .team-avatar {
    width: 100%;
    aspect-ratio: 3/3.5;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
  }
  .team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute; inset: 0;
  }
  .team-info { padding: 1.25rem 1.5rem 1.5rem; }
  .team-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.25rem;
  }
  .team-spec {
    font-size: 0.78rem;
    color: var(--sage);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .team-for {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.6;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-soft);
  }

  /* PROCESS */
  .process-inner { max-width: 1000px; margin: 0 auto; }
  .process-header { margin-bottom: 3.5rem; text-align: center; }
  .process-header .section-eyebrow { justify-content: center; }
  .process-header .section-eyebrow::before { display: none; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: var(--sage-light);
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 2px solid var(--sage-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sage);
  }
  .process-step.active .step-num {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
  }
  .step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .step-desc { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.6; }

  /* TESTIMONIALS */
  .testimonials { background: var(--ink); color: #fff; }
  .testimonials-inner { max-width: 1100px; margin: 0 auto; }
  .testimonials-header { margin-bottom: 3rem; }
  .testimonials-header .section-eyebrow { color: var(--sage-light); }
  .testimonials-header .section-eyebrow::before { background: var(--sage-light); }
  .testimonials-header .section-title { color: #fff; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }
  .testimonial-stars {
    display: flex; gap: 3px; margin-bottom: 1rem;
  }
  .star { width: 14px; height: 14px; fill: var(--clay); }
  .testimonial-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .testimonial-author {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* FAQ */
  .faq { background: var(--off-white); }
  .faq-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-header { margin-bottom: 3rem; text-align: center; }
  .faq-header .section-eyebrow { justify-content: center; }
  .faq-header .section-eyebrow::before { display: none; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--border); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; gap: 1rem;
  }
  .faq-q-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
  }
  .faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
    background: var(--warm-white);
  }
  .faq-toggle svg { width: 14px; height: 14px; stroke: var(--ink-soft); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.3s; }
  .faq-item.open .faq-toggle { background: var(--sage); border-color: var(--sage); }
  .faq-item.open .faq-toggle svg { stroke: #fff; transform: rotate(45deg); }
  .faq-a {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding-top: 0;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-top: 1rem; }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--clay-pale) 100%);
    text-align: center;
    padding: 7rem 5vw;
  }
  .cta-inner { max-width: 600px; margin: 0 auto; }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .cta-title em { font-style: italic; color: var(--sage); }
  .cta-sub { font-size: 1rem; color: var(--ink-soft); margin-bottom: 2.5rem; line-height: 1.7; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-tel {
    display: flex; align-items: center; gap: 8px;
    font-size: 1rem;
    color: var(--ink-soft);
    margin-top: 1.5rem;
    justify-content: center;
  }
  .cta-tel a { color: var(--ink); font-weight: 500; text-decoration: none; }
  .cta-tel a:hover { color: var(--sage); }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    padding: 4rem 5vw 3rem;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }
  .footer-brand-desc { font-size: 0.82rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .social-btn:hover { border-color: var(--sage-light); background: rgba(122,158,126,0.15); }
  .social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.55); }
  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.25rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }
  .footer-contact-item { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.75rem; }
  .footer-contact-item strong { color: rgba(255,255,255,0.8); display: block; margin-bottom: 2px; }
  .footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .footer-contact-item a:hover { color: #fff; }
  .footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(122,158,126,0.15);
    border: 1px solid rgba(122,158,126,0.3);
    color: var(--sage-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .fade-up.d1 { animation-delay: 0.1s; }
  .fade-up.d2 { animation-delay: 0.25s; }
  .fade-up.d3 { animation-delay: 0.4s; }
  .fade-up.d4 { animation-delay: 0.55s; }
  .fade-up.d5 { animation-delay: 0.7s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
    .hero-right { min-height: 360px; border-radius: var(--radius-lg); margin: 0 5vw 3rem; }
    .hero-left { padding: 3rem 0 2rem; }
    .problems-header { grid-template-columns: 1fr; gap: 1rem; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .problems-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { text-align: center; justify-content: center; }
  }
  /* ─── TEAM CARD — CLICKABLE (podstrona terapeuty) ─────────────────────── */
  .team-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  .team-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30,30,27,0.12);
  }
  .team-card--link:hover .team-avatar img {
    transform: scale(1.04);
  }
  .team-avatar img {
    transition: transform 0.35s ease;
  }
  .team-profile-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: 0.03em;
  }
  .team-card--link:hover .team-profile-link {
    text-decoration: underline;
  }

  /* ─── BLOG PAGE ────────────────────────────────────────────────────────── */
  .blog-hero {
    padding: 10rem 5vw 5rem;
    background: var(--off-white);
    text-align: center;
  }
  .blog-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5vw;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 4rem 0 6rem;
  }
  .blog-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30,30,27,0.1);
  }
  .blog-card-img {
    aspect-ratio: 16/9;
    background: var(--sage-pale);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-card-img-placeholder {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--sage);
    opacity: 0.45;
  }
  .blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .blog-card-cat {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 0.6rem;
  }
  .blog-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.65;
    flex: 1;
  }
  .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.78rem;
    color: var(--ink-muted);
  }
  .blog-card-arrow {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--sage);
  }
  .blog-coming-soon {
    text-align: center;
    padding: 5rem 0 7rem;
  }
  .blog-coming-icon {
    width: 80px;
    height: 80px;
    background: var(--sage-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--sage);
  }
  .blog-coming-icon svg {
    width: 36px;
    height: 36px;
  }
  @media (max-width: 860px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ── PROBLEM CARD — klikalny link do podstrony oferty ─────────────────── */
  .problem-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }
  .problem-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30,30,27,0.10);
    border-color: var(--sage-light);
  }
  .problem-more {
    display: inline-block;
    margin-top: .75rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: .03em;
  }

  /* ─── NASZ GABINET — używa klas .tl-card / .tl-photo z sekcji Zespołu ── */
  .gabinet-section { padding: 6rem 0; background: var(--off-white); }

