    /* =====================
       RESET & BASE
    ===================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #E8C547;
      --gold-hover: #D4B132;
      --gold-soft: #fdf6db;
      --black: #1a1a1a;
      --text: #2c2a24;
      --text-mid: #6b6860;
      --text-light: #9e9c94;
      --bg-alt: #f5f5f5;
      --bg-soft: #fafafa;
      --border: #e5e5e5;
      --white: #ffffff;
      --radius: 12px;
      --radius-lg: 20px;
      --container: 1400px;
      --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
      --shadow-md: 0 8px 28px rgba(26,26,26,0.08);
      --shadow-lg: 0 20px 50px rgba(26,26,26,0.12);
    }

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

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black);
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    [data-lucide] {
      display: block;
      flex-shrink: 0;
    }

    /* =====================
       LAYOUT
    ===================== */
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    .section {
      padding: 100px 0;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--text);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      margin-bottom: 22px;
    }
    .section-tag::before,
    .section-tag::after {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--gold);
    }

    .section-header {
      margin-bottom: 56px;
    }

    .section-header h2 {
      font-size: clamp(2.2rem, 3.8vw, 3rem);
      margin-bottom: 14px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 620px;
    }

    .section-header-inline {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }

    /* =====================
       BUTTONS
    ===================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.94rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
      white-space: nowrap;
    }

    .btn:active { transform: scale(0.98); }

    .btn-gold {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
    }
    .btn-gold:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
    }

    .btn-dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }
    .btn-dark:hover {
      background: #000;
    }

    .btn-outline-light {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.5);
    }
    .btn-outline-light:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--black);
      border-color: var(--black);
    }
    .btn-outline-dark:hover {
      background: var(--black);
      color: var(--white);
    }

    .btn-text {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--black);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 4px 0;
      border-bottom: 1.5px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-text:hover {
      border-color: var(--gold);
      color: #8a6d10;
    }

    /* =====================
       NAVBAR
    ===================== */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }

    #navbar.scrolled {
      box-shadow: 0 4px 24px rgba(26,26,26,0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 24px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 44px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.25s;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }

    /* Dropdown */
    .nav-links li.has-dropdown { position: relative; }
    .nav-links .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .nav-links .nav-trigger [data-lucide] {
      width: 14px;
      height: 14px;
      transition: transform 0.25s;
    }
    .nav-links li.has-dropdown:hover .nav-trigger [data-lucide] { transform: rotate(180deg); }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(26,26,26,0.10);
      padding: 10px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 1001;
    }
    .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -16px;
      left: -12px;
      right: -12px;
      height: 18px;
    }
    .nav-links li.has-dropdown:hover .nav-dropdown,
    .nav-links li.has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown li { width: 100%; }
    .nav-dropdown a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 0.92rem;
      color: var(--text);
      font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown a::after { display: none; }
    .nav-dropdown a:hover {
      background: var(--bg-alt);
      color: var(--black);
    }
    .nav-dropdown a .nav-dropdown-icon {
      width: 32px;
      height: 32px;
      background: var(--gold-soft);
      color: var(--gold-hover);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-dropdown a .nav-dropdown-icon [data-lucide] { width: 16px; height: 16px; }
    .nav-dropdown-divider {
      height: 1px;
      background: var(--border);
      margin: 6px 6px;
    }
    .nav-dropdown .nav-dropdown-all a {
      font-weight: 600;
      color: var(--gold-hover);
    }

    .nav-cta {
      flex-shrink: 0;
      padding: 12px 22px;
      font-size: 0.88rem;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--black);
      border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: var(--white);
      padding: 28px 32px 36px;
      z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(26,26,26,0.08);
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      pointer-events: none;
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
    }

    .mobile-menu ul li a {
      display: block;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    /* Mobile submenu */
    .mobile-submenu-toggle {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
    }
    .mobile-submenu-toggle [data-lucide] {
      width: 18px;
      height: 18px;
      transition: transform 0.25s;
    }
    .mobile-submenu-toggle.open [data-lucide] { transform: rotate(180deg); }

    .mobile-submenu {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .mobile-submenu.open { max-height: 500px; }
    .mobile-submenu li a {
      padding: 12px 0 12px 18px !important;
      font-size: 0.94rem !important;
      color: var(--text-mid) !important;
      border-bottom: 1px solid var(--border);
    }
    .mobile-submenu li:last-child a { border-bottom: none; }

    .mobile-menu .btn {
      margin-top: 24px;
      width: 100%;
      justify-content: center;
    }

    /* =====================
       HERO (100vh)
    ===================== */
    #hero {
      height: 100vh;
      min-height: 640px;
      position: relative;
      overflow: hidden;
      background: var(--black);
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(26,26,26,0.86) 0%, rgba(26,26,26,0.82) 50%, rgba(26,26,26,0.92) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .hero-inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-bottom: 0;
    }

    .hero-text {
      max-width: 820px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,197,71,0.15);
      border: 1px solid rgba(232,197,71,0.4);
      color: var(--gold);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 4px;
      width: fit-content;
      margin-bottom: 28px;
      backdrop-filter: blur(8px);
    }

    .hero-inner h1 {
      font-size: clamp(2rem, 4.2vw, 3.6rem);
      color: var(--white);
      line-height: 1.05;
      max-width: 900px;
      margin-bottom: 24px;
      font-weight: 600;
    }

    .hero-inner h1 .accent {
      color: var(--gold);
      font-style: normal;
    }

    .hero-inner .lead {
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      color: rgba(255,255,255,0.85);
      max-width: 620px;
      margin-bottom: 36px;
      font-weight: 300;
      line-height: 1.6;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }


    /* =====================
       SERVICES
    ===================== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 26px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      display: flex;
      flex-direction: column;
      min-height: 320px;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      background: var(--gold-soft);
      color: var(--gold-hover);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }
    .service-icon [data-lucide] { width: 24px; height: 24px; }

    .service-card h3 {
      font-size: 1.32rem;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .service-card p {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 18px;
    }

    .service-card .btn-text {
      font-size: 0.85rem;
    }

    /* =====================
       CTA BANNER
    ===================== */
    .cta-banner {
      background: var(--black);
      border-radius: var(--radius-lg);
      padding: 72px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(232,197,71,0.07), transparent 65%);
      pointer-events: none;
    }

    .cta-banner h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.15;
    }

    .cta-banner p {
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      font-size: 1rem;
    }

    .cta-banner-action {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
      min-width: 260px;
    }

    .cta-phone-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px 32px;
      background: var(--gold);
      color: var(--black);
      border-radius: 6px;
      font-weight: 700;
      font-size: 1.08rem;
      transition: transform 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .cta-phone-pill:hover { transform: translateY(-2px); background: var(--gold-hover); }
    .cta-phone-pill [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       ABOUT (snippet)
    ===================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text h2 {
      font-size: clamp(2rem, 3.4vw, 2.6rem);
      margin-bottom: 20px;
    }

    .about-text p {
      color: var(--text-mid);
      margin-bottom: 16px;
      font-size: 1rem;
      line-height: 1.75;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 28px 0 32px;
    }

    .stat-card {
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 24px;
    }
    .stat-card strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      color: var(--black);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .stat-card span {
      font-size: 0.86rem;
      color: var(--text-mid);
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow-lg);
    }
    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-image::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      background: var(--gold);
      border-radius: 50%;
      z-index: -1;
    }

    /* =====================
       REVIEWS (TrustIndex style)
    ===================== */
    .reviews-ti-section {
      background: var(--bg-alt);
    }

    .reviews-ti-wrap {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    /* Sidebar */
    .reviews-ti-sidebar {
      flex-shrink: 0;
      width: 200px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      border: 1px solid var(--border);
    }

    .reviews-ti-logo {
      width: 160px;
      height: auto;
      margin-bottom: 4px;
    }

    .reviews-ti-biz-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--black);
      line-height: 1.3;
    }

    .reviews-ti-stars {
      display: inline-flex;
      gap: 1px;
      color: var(--gold);
    }
    .reviews-ti-stars [data-lucide] { width: 16px; height: 16px; fill: var(--gold); }

    .reviews-ti-count {
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-top: -4px;
    }

    .reviews-ti-write {
      display: inline-block;
      margin-top: 4px;
      padding: 8px 16px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--black);
      transition: border-color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .reviews-ti-write:hover { border-color: var(--black); background: var(--bg-alt); }

    /* Cards area */
    .reviews-ti-right {
      flex: 1;
      min-width: 0;
      position: relative;
    }

    .reviews-ti-cards {
      display: flex;
      gap: 14px;
      overflow: hidden;
    }

    .review-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px 20px 18px;
      display: flex;
      flex-direction: column;
      min-width: 0;
      flex: 1;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .review-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .review-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #5f6368;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 1.1rem;
      font-family: 'Inter', sans-serif;
      flex-shrink: 0;
      text-transform: uppercase;
    }

    .review-avatar img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .review-meta {
      flex: 1;
      min-width: 0;
    }
    .review-meta strong {
      display: block;
      font-size: 0.9rem;
      color: var(--black);
      font-weight: 600;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .review-meta .when {
      font-size: 0.76rem;
      color: var(--text-mid);
    }
    .review-google-mini { flex-shrink: 0; }
    .review-google-mini svg { width: 20px; height: 20px; }

    .review-stars-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
    }

    .review-stars {
      color: var(--gold);
      display: inline-flex;
      gap: 1px;
    }
    .review-stars [data-lucide] { width: 15px; height: 15px; fill: #FBBC05; color: #FBBC05; }

    .review-verified {
      display: inline-flex;
      align-items: center;
    }
    .review-verified svg { width: 16px; height: 16px; }

    .review-text {
      font-size: 0.88rem;
      color: var(--text);
      line-height: 1.55;
      flex: 1;
    }

    .review-read-more {
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-top: 6px;
      display: inline-block;
    }

    /* Next arrow */
    .reviews-ti-arrow {
      position: absolute;
      right: -18px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: var(--white);
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      color: var(--black);
      transition: box-shadow 0.2s;
    }
    .reviews-ti-arrow:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
    .reviews-ti-arrow [data-lucide] { width: 16px; height: 16px; }

    /* Verified badge */
    .reviews-ti-verified {
      display: flex;
      justify-content: flex-end;
      margin-top: 14px;
    }

    .reviews-ti-verified a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #1a4731;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
    }
    .reviews-ti-verified svg { width: 14px; height: 14px; }

    /* =====================
       BLOG
    ===================== */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .blog-thumb {
      aspect-ratio: 16/9;
      background: var(--bg-alt);
      overflow: hidden;
      position: relative;
    }
    .blog-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .blog-card:hover .blog-thumb img { transform: scale(1.04); }

    .blog-body {
      padding: 22px 22px 26px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 0.78rem;
      color: var(--text-mid);
    }

    .blog-category {
      display: inline-block;
      background: var(--gold-soft);
      color: #8a6d10;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }

    .blog-card h3 {
      font-size: 1.18rem;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-card p {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 16px;
    }

    /* =====================
       FAQ
    ===================== */
    .faq-wrap {
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 12px;
      padding: 0 24px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .faq-item:hover { border-color: var(--gold); }
    .faq-item.open {
      border-color: var(--gold);
      box-shadow: var(--shadow-sm);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 0;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 1.08rem;
      font-weight: 600;
      color: var(--black);
      font-family: 'Inter', sans-serif;
    }

    .faq-q .icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }
    .faq-q .icon [data-lucide] { width: 18px; height: 18px; }

    .faq-item.open .faq-q .icon {
      background: var(--gold);
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--text-mid);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      max-height: 400px;
      padding: 0 0 24px;
    }

    /* =====================
       KONTAKT
    ===================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 48px;
      align-items: stretch;
    }

    .contact-info {
      background: var(--bg-alt);
      border-radius: var(--radius-lg);
      padding: 36px;
    }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .contact-row:last-child { border: none; }

    .contact-row-icon {
      width: 42px;
      height: 42px;
      background: var(--white);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-hover);
      flex-shrink: 0;
    }
    .contact-row-icon [data-lucide] { width: 20px; height: 20px; }

    .contact-row-content .label {
      font-size: 0.74rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 4px;
    }
    .contact-row-content .value {
      font-size: 1rem;
      color: var(--black);
      font-weight: 600;
    }

    .map-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 100%;
      min-height: 340px;
      border: 1px solid var(--border);
    }
    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* =====================
       FOOTER
    ===================== */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .footer-logo {
      height: 50px;
      width: auto;
      margin-bottom: 18px;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      font-size: 0.94rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 360px;
    }

    .footer-col h4 {
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.5);
      flex-wrap: wrap;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: background 0.2s, color 0.2s;
    }
    .footer-social a:hover {
      background: var(--gold);
      color: var(--black);
    }
    .footer-social [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       RESPONSIVE
    ===================== */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
      .reviews-ti-wrap { flex-wrap: wrap; }
      .reviews-ti-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 14px; align-items: center; }
      .cta-banner { gap: 40px; padding: 56px 48px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { gap: 48px; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 820px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
      .section { padding: 70px 0; }
      .container { padding: 0 20px; }
      #hero { padding-top: 80px; }
      #hero { min-height: 600px; }
      .hero-inner { justify-content: flex-end; padding-bottom: 48px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .reviews-ti-cards { flex-direction: column; }
      .reviews-ti-arrow { display: none; }
      .blog-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .about-image { max-width: 480px; margin: 0 auto; }
      .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
      .cta-banner-action { min-width: unset; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .contact-info { padding: 24px; }
      .section-header-inline { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr; }
      .cta-banner { padding: 40px 24px; }
    }
  
    /* MOBILE: full-width buttons */
    @media (max-width: 820px) {
      .btn { width: 100%; justify-content: center; }
    }

/* privacy modal */
  #privacyModal { display:none; }
  #privacyModal.open { display:flex; }

/* ============ USLUGI (scoped .kch-uslugi) ============ */
    /* =====================
       RESET & BASE
    ===================== */
    .kch-uslugi *, .kch-uslugi *::before, .kch-uslugi *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #E8C547;
      --gold-hover: #D4B132;
      --gold-soft: #fdf6db;
      --black: #1a1a1a;
      --text: #2c2a24;
      --text-mid: #6b6860;
      --text-light: #9e9c94;
      --bg-alt: #f5f5f5;
      --bg-soft: #fafafa;
      --border: #e5e5e5;
      --white: #ffffff;
      --radius: 12px;
      --radius-lg: 20px;
      --container: 1400px;
      --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
      --shadow-md: 0 8px 28px rgba(26,26,26,0.08);
      --shadow-lg: 0 20px 50px rgba(26,26,26,0.12);
    }

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

    .kch-uslugi {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .kch-uslugi h1, .kch-uslugi h2, .kch-uslugi h3, .kch-uslugi h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black);
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
    }

    .kch-uslugi a { text-decoration: none; color: inherit; }
    .kch-uslugi img { max-width: 100%; display: block; }
    .kch-uslugi [data-lucide] { display: block; flex-shrink: 0; }

    /* =====================
       LAYOUT
    ===================== */
    .kch-uslugi .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    .kch-uslugi .section { padding: 100px 0; }

    .kch-uslugi .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--text);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      margin-bottom: 22px;
    }
    .kch-uslugi .section-tag::before, .kch-uslugi .section-tag::after {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--gold);
    }

    .kch-uslugi .section-header { margin-bottom: 56px; }
    .kch-uslugi .section-header h2 {
      font-size: clamp(2.2rem, 3.8vw, 3rem);
      margin-bottom: 14px;
    }
    .kch-uslugi .section-header p {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 620px;
    }

    /* =====================
       BUTTONS
    ===================== */
    .kch-uslugi .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.94rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
      white-space: nowrap;
    }
    .kch-uslugi .btn:active { transform: scale(0.98); }
    .kch-uslugi .btn-gold:hover { transform: translateY(-1px); }

    .kch-uslugi .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .kch-uslugi .btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

    .kch-uslugi .btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
    .kch-uslugi .btn-dark:hover { background: #000; }

    .kch-uslugi .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
    .kch-uslugi .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    .kch-uslugi .btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
    .kch-uslugi .btn-outline-dark:hover { background: var(--black); color: var(--white); }

    .kch-uslugi .btn-text {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--black);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 4px 0;
      border-bottom: 1.5px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .kch-uslugi .btn-text:hover { border-color: var(--gold); color: #8a6d10; }

    /* =====================
       NAVBAR
    ===================== */
    .kch-uslugi #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .kch-uslugi #navbar.scrolled { box-shadow: 0 4px 24px rgba(26,26,26,0.06); }

    .kch-uslugi .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 24px;
    }

    .kch-uslugi .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .kch-uslugi .nav-logo img { height: 44px; width: auto; display: block; }

    .kch-uslugi .nav-links { display: flex; gap: 32px; list-style: none; }
    .kch-uslugi .nav-links a {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: color 0.2s;
      position: relative;
    }
    .kch-uslugi .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.25s;
    }
    .kch-uslugi .nav-links a:hover::after, .kch-uslugi .nav-links a.active::after { width: 100%; }

    /* Dropdown */
    .kch-uslugi .nav-links li.has-dropdown { position: relative; }
    .kch-uslugi .nav-links .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .kch-uslugi .nav-links .nav-trigger [data-lucide] {
      width: 14px; height: 14px;
      transition: transform 0.25s;
    }
    .kch-uslugi .nav-links li.has-dropdown:hover .nav-trigger [data-lucide] { transform: rotate(180deg); }

    .kch-uslugi .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(26,26,26,0.10);
      padding: 10px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 1001;
    }
    .kch-uslugi .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -16px; left: -12px; right: -12px;
      height: 18px;
    }
    .kch-uslugi .nav-links li.has-dropdown:hover .nav-dropdown, .kch-uslugi .nav-links li.has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .kch-uslugi .nav-dropdown li { width: 100%; }
    .kch-uslugi .nav-dropdown a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 0.92rem;
      color: var(--text);
      font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .kch-uslugi .nav-dropdown a::after { display: none; }
    .kch-uslugi .nav-dropdown a:hover { background: var(--bg-alt); color: var(--black); }
    .kch-uslugi .nav-dropdown a.active { background: var(--gold-soft); color: #8a6d10; }
    .kch-uslugi .nav-dropdown a .nav-dropdown-icon {
      width: 32px; height: 32px;
      background: var(--gold-soft);
      color: var(--gold-hover);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .kch-uslugi .nav-dropdown a .nav-dropdown-icon [data-lucide] { width: 16px; height: 16px; }
    .kch-uslugi .nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 6px; }
    .kch-uslugi .nav-dropdown .nav-dropdown-all a { font-weight: 600; color: var(--gold-hover); }

    .kch-uslugi .nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 0.88rem; }

    .kch-uslugi .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      z-index: 1100;
    }
    .kch-uslugi .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--black);
      border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .kch-uslugi .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .kch-uslugi .hamburger.open span:nth-child(2) { opacity: 0; }
    .kch-uslugi .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .kch-uslugi .mobile-menu {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: var(--white);
      padding: 28px 32px 36px;
      z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(26,26,26,0.08);
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      pointer-events: none;
    }
    .kch-uslugi .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .kch-uslugi .mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
    .kch-uslugi .mobile-menu ul li a {
      display: block;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .kch-uslugi .mobile-submenu-toggle {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
    }
    .kch-uslugi .mobile-submenu-toggle [data-lucide] {
      width: 18px; height: 18px;
      transition: transform 0.25s;
    }
    .kch-uslugi .mobile-submenu-toggle.open [data-lucide] { transform: rotate(180deg); }

    .kch-uslugi .mobile-submenu {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .kch-uslugi .mobile-submenu.open { max-height: 500px; }
    .kch-uslugi .mobile-submenu li a {
      padding: 12px 0 12px 18px !important;
      font-size: 0.94rem !important;
      color: var(--text-mid) !important;
      border-bottom: 1px solid var(--border);
    }
    .kch-uslugi .mobile-submenu li a.active { color: var(--gold-hover) !important; font-weight: 600; }
    .kch-uslugi .mobile-submenu li:last-child a { border-bottom: none; }

    .kch-uslugi .mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

    /* =====================
       SERVICE HERO
    ===================== */
    .kch-uslugi #service-hero {
      padding: 150px 0 110px;
      background: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }
    .kch-uslugi #service-hero::before {
      content: '';
      position: absolute;
      top: 80px;
      right: -120px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(232,197,71,0.10), transparent 65%);
      pointer-events: none;
    }

    .kch-uslugi .service-hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .kch-uslugi .service-hero-text { position: relative; z-index: 1; }

    .kch-uslugi .service-hero-text .section-tag { margin-bottom: 22px; }

    .kch-uslugi .service-hero-text h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.06;
      margin-bottom: 22px;
      letter-spacing: -0.02em;
    }

    .kch-uslugi .service-hero-text .lead {
      font-size: 1.18rem;
      color: var(--text-mid);
      max-width: 640px;
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .kch-uslugi .service-hero-image-wrap {
      position: relative;
      max-width: 456px;
      justify-self: end;
      width: 100%;
      margin-right: 24px;
      margin-bottom: 24px;
    }
    .kch-uslugi .service-hero-image-wrap::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 24px;
      right: -24px;
      bottom: -24px;
      border: 1.5px solid var(--gold);
      border-radius: 40px 0 40px 0;
      pointer-events: none;
      z-index: 0;
    }
    .kch-uslugi .service-hero-image {
      position: relative;
      z-index: 1;
      border-radius: 40px 0 40px 0;
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow-lg);
      background: var(--bg-alt);
    }
    .kch-uslugi .service-hero-image img {
      width: 100%; height: 100%; object-fit: cover;
    }

    .kch-uslugi .hero-ctas {
      display: flex;
      gap: 14px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    /* =====================
       PROWADZONE SPRAWY
    ===================== */
    .kch-uslugi .cases-section { background: var(--white); }

    .kch-uslugi .cases-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .kch-uslugi .cases-col {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    .kch-uslugi .cases-col:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-md);
    }

    .kch-uslugi .cases-col-head {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 28px;
      padding-bottom: 22px;
      border-bottom: 2px solid var(--gold);
    }

    .kch-uslugi .cases-col-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: var(--gold-soft);
      color: var(--gold-hover);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .kch-uslugi .cases-col-icon [data-lucide] { width: 26px; height: 26px; }

    .kch-uslugi .cases-col h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 2.4vw, 2rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--black);
      margin: 0;
    }

    .kch-uslugi .cases-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .kch-uslugi .cases-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.97rem;
      color: var(--text);
      line-height: 1.5;
    }
    .kch-uslugi .cases-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .kch-uslugi .cases-list li:first-child { padding-top: 0; }

    .kch-uslugi .case-check {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: 1.5px solid var(--gold);
      background: var(--gold-soft);
      color: var(--gold-hover);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .kch-uslugi .case-check [data-lucide] { width: 15px; height: 15px; }

    .kch-uslugi .cases-list li strong {
      font-weight: 600;
      color: var(--black);
    }
    .kch-uslugi .cases-list li .case-sep {
      color: var(--text-mid);
    }
    .kch-uslugi .cases-list li span.case-desc {
      color: var(--text-mid);
      font-size: 0.94rem;
    }

    /* =====================
       PROCES / WSPӣPRACA (dark)
    ===================== */
    .kch-uslugi .process-section {
      background: #111111;
      color: #f5f0e6;
    }
    .kch-uslugi .process-section .section-tag {
      color: #f5f0e6;
      border-color: rgba(255,255,255,0.18);
    }
    .kch-uslugi .process-section .section-header h2 { color: #faf6ec; }
    .kch-uslugi .process-section .section-header p { color: rgba(245,240,230,0.65); }

    .kch-uslugi .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: stretch;
      position: relative;
    }

    .kch-uslugi .process-step {
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 40px 28px 32px;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, background 0.3s, border-color 0.3s;
    }
    .kch-uslugi .process-step:hover {
      transform: translateY(-4px);
      background: #1f1f1f;
      border-color: rgba(232,197,71,0.35);
    }

    .kch-uslugi .process-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.4rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.01em;
      margin-bottom: 22px;
    }

    .kch-uslugi .process-step h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      line-height: 1.3;
      color: #faf6ec;
    }

    .kch-uslugi .process-step p {
      font-size: 0.94rem;
      color: rgba(245,240,230,0.65);
      line-height: 1.65;
    }

    /* =====================
       OPINIE (tematyczne)
    ===================== */
    .kch-uslugi .reviews-section { background: #f0f0f0; }

    .kch-uslugi .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .kch-uslugi .review-card {
      background: var(--white);
      border-radius: 8px;
      padding: 28px 28px 26px;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }

    .kch-uslugi .review-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .kch-uslugi .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: #5f6368;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 1.2rem;
      flex-shrink: 0;
      text-transform: uppercase;
    }

    .kch-uslugi .review-meta { flex: 1; min-width: 0; }
    .kch-uslugi .review-meta strong {
      display: block;
      font-size: 0.95rem;
      color: var(--black);
      font-weight: 600;
      line-height: 1.2;
    }
    .kch-uslugi .review-meta .when { font-size: 0.78rem; color: var(--text-mid); }

    .kch-uslugi .review-google-mini svg { width: 22px; height: 22px; }

    .kch-uslugi .review-stars-row { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
    .kch-uslugi .review-stars { color: var(--gold); display: inline-flex; gap: 1px; }
    .kch-uslugi .review-stars [data-lucide] { width: 16px; height: 16px; fill: #FBBC05; color: #FBBC05; }

    .kch-uslugi .review-text {
      font-size: 0.94rem;
      color: var(--text);
      line-height: 1.6;
      flex: 1;
    }

    .kch-uslugi .review-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--bg-alt);
      color: var(--text);
      border: 1px solid var(--border);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
      margin-bottom: 14px;
      width: fit-content;
    }
    .kch-uslugi .review-tag [data-lucide] { width: 12px; height: 12px; color: var(--gold-hover); }

    /* =====================
       ABOUT SNIPPET
    ===================== */
    .kch-uslugi .about-snippet { background: var(--white); }

    .kch-uslugi .about-snippet-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 56px;
      align-items: center;
    }

    .kch-uslugi .about-snippet-image-wrap {
      position: relative;
      padding: 24px 24px 24px 0;
      max-width: 420px;
    }
    .kch-uslugi .about-snippet-image-wrap::before {
      content: '';
      position: absolute;
      top: 24px; bottom: 24px;
      left: -24px; right: 0;
      border: 1.5px solid var(--gold);
      border-radius: 10px;
      transform: translate(-24px, 24px);
      pointer-events: none;
    }
    .kch-uslugi .about-snippet-image {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow-md);
      background: var(--bg-alt);
    }
    .kch-uslugi .about-snippet-image img { width: 100%; height: 100%; object-fit: cover; }

    .kch-uslugi .about-snippet-text h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.4rem);
      margin-bottom: 18px;
    }

    .kch-uslugi .about-snippet-text p {
      color: var(--text-mid);
      margin-bottom: 14px;
      font-size: 1rem;
      line-height: 1.75;
    }

    .kch-uslugi .about-snippet-text .btn { margin-top: 12px; }

    /* =====================
       FAQ
    ===================== */
    .kch-uslugi .faq-section { background: var(--bg-alt); }
    .kch-uslugi .faq-wrap { max-width: 880px; margin: 0 auto; }
    .kch-uslugi .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 12px;
      padding: 0 24px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .kch-uslugi .faq-item:hover { border-color: var(--gold); }
    .kch-uslugi .faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }

    .kch-uslugi .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 0;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--black);
      font-family: 'Inter', sans-serif;
    }
    .kch-uslugi .faq-q .icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s, border-color 0.3s;
    }
    .kch-uslugi .faq-q .icon [data-lucide] { width: 18px; height: 18px; }
    .kch-uslugi .faq-item.open .faq-q .icon {
      background: var(--gold);
      border-color: var(--gold);
      transform: rotate(45deg);
    }

    .kch-uslugi .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--text-mid);
      font-size: 0.98rem;
      line-height: 1.7;
    }
    .kch-uslugi .faq-item.open .faq-a {
      max-height: 500px;
      padding: 0 0 24px;
    }

    .kch-uslugi .faq-disclaimer {
      max-width: 880px;
      margin: 36px auto 0;
      padding: 18px 22px;
      background: var(--white);
      border-left: 3px solid var(--gold);
      border-radius: 4px;
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--text-mid);
      font-style: italic;
    }

    /* =====================
       KONTAKT (kompaktowy)
    ===================== */
    .kch-uslugi .contact-mini { background: var(--white); }

    .kch-uslugi .contact-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 40px;
    }

    .kch-uslugi .contact-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .kch-uslugi .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }

    .kch-uslugi .contact-card-icon {
      width: 44px;
      height: 44px;
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-hover);
      flex-shrink: 0;
    }
    .kch-uslugi .contact-card-icon [data-lucide] { width: 22px; height: 22px; }

    .kch-uslugi .contact-card .label {
      font-size: 0.74rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-mid);
    }
    .kch-uslugi .contact-card .value {
      font-size: 1.02rem;
      color: var(--black);
      font-weight: 600;
      line-height: 1.4;
      word-break: break-word;
    }

    .kch-uslugi .contact-mini-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      padding: 32px;
      background: var(--bg-alt);
      border: 1px dashed var(--border);
      border-radius: 8px;
    }
    .kch-uslugi .contact-mini-cta p {
      font-size: 1.05rem;
      color: var(--text);
      font-weight: 500;
    }

    /* =====================
       CTA BANNER
    ===================== */
    .kch-uslugi .cta-banner {
      background: var(--black);
      border-radius: 10px;
      padding: 72px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .kch-uslugi .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,197,71,0.07), transparent 65%);
      pointer-events: none;
    }
    .kch-uslugi .cta-banner h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.15;
    }
    .kch-uslugi .cta-banner p {
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      font-size: 1rem;
    }

    .kch-uslugi .cta-banner-action {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
      min-width: 260px;
    }

    .kch-uslugi .cta-phone-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px 32px;
      background: var(--gold);
      color: var(--black);
      border-radius: 6px;
      font-weight: 700;
      font-size: 1.08rem;
      transition: transform 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .kch-uslugi .cta-phone-pill:hover { transform: translateY(-2px); background: var(--gold-hover); }
    .kch-uslugi .cta-phone-pill [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       FOOTER
    ===================== */
    .kch-uslugi footer {
      background: var(--black);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }

    .kch-uslugi .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .kch-uslugi .footer-logo {
      height: 50px;
      width: auto;
      margin-bottom: 18px;
      filter: brightness(0) invert(1);
    }

    .kch-uslugi .footer-brand p {
      font-size: 0.94rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 360px;
    }

    .kch-uslugi .footer-col h4 {
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .kch-uslugi .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .kch-uslugi .footer-col a {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .kch-uslugi .footer-col a:hover { color: var(--gold); }

    .kch-uslugi .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.5);
      flex-wrap: wrap;
    }

    .kch-uslugi .footer-social { display: flex; gap: 10px; }
    .kch-uslugi .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: background 0.2s, color 0.2s;
    }
    .kch-uslugi .footer-social a:hover { background: var(--gold); color: var(--black); }
    .kch-uslugi .footer-social [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       RESPONSIVE
    ===================== */
    @media (max-width: 1100px) {
      .kch-uslugi .service-hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .kch-uslugi .service-hero-image-wrap { max-width: 420px; margin: 0 auto; justify-self: center; }
      .kch-uslugi .service-hero-image { border-radius: 32px 0 32px 0; }
      .kch-uslugi .process-grid { grid-template-columns: repeat(2, 1fr); }
      .kch-uslugi .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .kch-uslugi .about-snippet-grid { grid-template-columns: 1fr; gap: 40px; }
      .kch-uslugi .about-snippet-image-wrap { max-width: 360px; margin: 0 auto; }
      .kch-uslugi .cta-banner { gap: 40px; padding: 56px 48px; }
      .kch-uslugi .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 820px) {
      .kch-uslugi .nav-links, .kch-uslugi .nav-cta { display: none; }
      .kch-uslugi .hamburger { display: flex; }
      .kch-uslugi .mobile-menu { display: block; }
      .kch-uslugi .section { padding: 70px 0; }
      .kch-uslugi .container { padding: 0 20px; }
      .kch-uslugi .cases-wrap { grid-template-columns: 1fr; gap: 20px; }
      .kch-uslugi .cases-col { padding: 32px 24px; }
      .kch-uslugi #service-hero { padding: 120px 0 80px; }
      .kch-uslugi .hero-ctas { flex-direction: column; align-items: stretch; }
      .kch-uslugi .hero-ctas .btn { width: 100%; justify-content: center; }
      .kch-uslugi .reviews-grid { grid-template-columns: 1fr; }
      .kch-uslugi .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
      .kch-uslugi .cta-banner-action { min-width: unset; }
      .kch-uslugi .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    }

    @media (max-width: 480px) {
      .kch-uslugi .process-grid { grid-template-columns: 1fr; }
      .kch-uslugi .contact-cards-grid { grid-template-columns: 1fr; }}

/* ============ O-MNIE (scoped .kch-omnie) ============ */
    /* =====================
       RESET & BASE
    ===================== */
    .kch-omnie *, .kch-omnie *::before, .kch-omnie *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #E8C547;
      --gold-hover: #D4B132;
      --gold-soft: #fdf6db;
      --black: #1a1a1a;
      --text: #2c2a24;
      --text-mid: #6b6860;
      --text-light: #9e9c94;
      --bg-alt: #f5f5f5;
      --bg-soft: #fafafa;
      --border: #e5e5e5;
      --white: #ffffff;
      --radius: 12px;
      --radius-lg: 20px;
      --container: 1400px;
      --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
      --shadow-md: 0 8px 28px rgba(26,26,26,0.08);
      --shadow-lg: 0 20px 50px rgba(26,26,26,0.12);
    }

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

    .kch-omnie {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .kch-omnie h1, .kch-omnie h2, .kch-omnie h3, .kch-omnie h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black);
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
    }

    .kch-omnie a { text-decoration: none; color: inherit; }
    .kch-omnie img { max-width: 100%; display: block; }
    .kch-omnie [data-lucide] { display: block; flex-shrink: 0; }

    /* =====================
       LAYOUT
    ===================== */
    .kch-omnie .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    .kch-omnie .section { padding: 100px 0; }

    .kch-omnie .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--text);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      margin-bottom: 22px;
    }
    .kch-omnie .section-tag::before, .kch-omnie .section-tag::after {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--gold);
    }

    .kch-omnie .section-header { margin-bottom: 56px; }
    .kch-omnie .section-header h2 {
      font-size: clamp(2.2rem, 3.8vw, 3rem);
      margin-bottom: 14px;
    }
    .kch-omnie .section-header p {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 620px;
    }

    /* =====================
       BUTTONS
    ===================== */
    .kch-omnie .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.94rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
      white-space: nowrap;
    }
    .kch-omnie .btn:active { transform: scale(0.98); }
    .kch-omnie .btn-gold:hover { transform: translateY(-1px); }

    .kch-omnie .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .kch-omnie .btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

    .kch-omnie .btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
    .kch-omnie .btn-dark:hover { background: #000; }

    .kch-omnie .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
    .kch-omnie .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    .kch-omnie .btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
    .kch-omnie .btn-outline-dark:hover { background: var(--black); color: var(--white); }

    .kch-omnie .btn-text {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--black);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 4px 0;
      border-bottom: 1.5px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .kch-omnie .btn-text:hover { border-color: var(--gold); color: #8a6d10; }

    /* =====================
       NAVBAR
    ===================== */
    .kch-omnie #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .kch-omnie #navbar.scrolled { box-shadow: 0 4px 24px rgba(26,26,26,0.06); }

    .kch-omnie .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 24px;
    }

    .kch-omnie .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .kch-omnie .nav-logo img { height: 44px; width: auto; display: block; }

    .kch-omnie .nav-links { display: flex; gap: 32px; list-style: none; }
    .kch-omnie .nav-links a {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: color 0.2s;
      position: relative;
    }
    .kch-omnie .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.25s;
    }
    .kch-omnie .nav-links a:hover::after, .kch-omnie .nav-links a.active::after { width: 100%; }

    /* Dropdown */
    .kch-omnie .nav-links li.has-dropdown { position: relative; }
    .kch-omnie .nav-links .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .kch-omnie .nav-links .nav-trigger [data-lucide] {
      width: 14px; height: 14px;
      transition: transform 0.25s;
    }
    .kch-omnie .nav-links li.has-dropdown:hover .nav-trigger [data-lucide] { transform: rotate(180deg); }

    .kch-omnie .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(26,26,26,0.10);
      padding: 10px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 1001;
    }
    .kch-omnie .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -16px; left: -12px; right: -12px;
      height: 18px;
    }
    .kch-omnie .nav-links li.has-dropdown:hover .nav-dropdown, .kch-omnie .nav-links li.has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .kch-omnie .nav-dropdown li { width: 100%; }
    .kch-omnie .nav-dropdown a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 0.92rem;
      color: var(--text);
      font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .kch-omnie .nav-dropdown a::after { display: none; }
    .kch-omnie .nav-dropdown a:hover { background: var(--bg-alt); color: var(--black); }
    .kch-omnie .nav-dropdown a .nav-dropdown-icon {
      width: 32px; height: 32px;
      background: var(--gold-soft);
      color: var(--gold-hover);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .kch-omnie .nav-dropdown a .nav-dropdown-icon [data-lucide] { width: 16px; height: 16px; }
    .kch-omnie .nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 6px; }
    .kch-omnie .nav-dropdown .nav-dropdown-all a { font-weight: 600; color: var(--gold-hover); }

    .kch-omnie .nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 0.88rem; }

    .kch-omnie .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      z-index: 1100;
    }
    .kch-omnie .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--black);
      border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .kch-omnie .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .kch-omnie .hamburger.open span:nth-child(2) { opacity: 0; }
    .kch-omnie .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .kch-omnie .mobile-menu {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: var(--white);
      padding: 28px 32px 36px;
      z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(26,26,26,0.08);
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      pointer-events: none;
    }
    .kch-omnie .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .kch-omnie .mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
    .kch-omnie .mobile-menu ul li a {
      display: block;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .kch-omnie .mobile-submenu-toggle {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
    }
    .kch-omnie .mobile-submenu-toggle [data-lucide] {
      width: 18px; height: 18px;
      transition: transform 0.25s;
    }
    .kch-omnie .mobile-submenu-toggle.open [data-lucide] { transform: rotate(180deg); }

    .kch-omnie .mobile-submenu {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .kch-omnie .mobile-submenu.open { max-height: 500px; }
    .kch-omnie .mobile-submenu li a {
      padding: 12px 0 12px 18px !important;
      font-size: 0.94rem !important;
      color: var(--text-mid) !important;
      border-bottom: 1px solid var(--border);
    }
    .kch-omnie .mobile-submenu li:last-child a { border-bottom: none; }

    .kch-omnie .mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

    /* =====================
       ABOUT HERO
    ===================== */
    .kch-omnie #about-hero {
      padding: 150px 0 110px;
      background: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }
    .kch-omnie #about-hero::before {
      content: '';
      position: absolute;
      top: 80px;
      left: -120px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(232,197,71,0.10), transparent 65%);
      pointer-events: none;
    }

    .kch-omnie .about-hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .kch-omnie .about-hero-text h1 {
      font-size: clamp(2.8rem, 5.4vw, 4.4rem);
      line-height: 1.04;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
    }
    .kch-omnie .about-hero-text .hero-subheadline {
      display: block;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.25rem, 2vw, 1.65rem);
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 32px;
      max-width: 580px;
    }

    .kch-omnie .about-hero-text .lead {
      font-size: 1.18rem;
      color: var(--text-mid);
      max-width: 580px;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .kch-omnie .about-hero-text .lead:last-of-type { margin-bottom: 0; }

    .kch-omnie .about-hero-image-wrap {
      position: relative;
      padding: 0;
      max-width: 500px;
      justify-self: end;
      width: 100%;
    }
    .kch-omnie .about-hero-image {
      position: relative;
      border-radius: 40px 0 40px 0;
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow-lg);
      background: var(--bg-alt);
    }
    .kch-omnie .about-hero-image img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .kch-omnie .about-hero-caption {
      margin-top: 18px;
      padding-left: 4px;
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-style: italic;
      color: var(--text-mid);
      line-height: 1.4;
    }
    .kch-omnie .about-hero-caption strong {
      display: block;
      font-style: normal;
      font-weight: 600;
      color: var(--black);
      font-size: 1.02rem;
      margin-bottom: 2px;
    }

    /* =====================
       BIO
    ===================== */
    .kch-omnie .bio-section { background: var(--white); }

    .kch-omnie .bio-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 130px;
      align-items: start;
    }

    .kch-omnie .bio-image-col {
    }
    .kch-omnie .bio-image-wrap {
      position: relative;
      border-radius: 0 40px 0 40px;
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow-lg);
      background: var(--bg-alt);
    }
    .kch-omnie .bio-image-wrap img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .kch-omnie .bio-image-meta {
      margin-top: 42px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px 18px;
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.5;
    }
    .kch-omnie .bio-image-meta dt {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      color: var(--black);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.74rem;
      padding-top: 2px;
    }
    .kch-omnie .bio-image-meta dd { margin: 0; }
    .kch-omnie .bio-image-meta dd a {
      color: var(--text);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .kch-omnie .bio-image-meta dd a:hover { border-color: var(--gold); color: var(--gold-hover); }

    .kch-omnie .bio-wrap {
    }

    .kch-omnie .bio-wrap .section-tag { margin-bottom: 24px; }

    .kch-omnie .bio-wrap h2 {
      font-size: clamp(2rem, 3.4vw, 2.6rem);
      margin-bottom: 32px;
      line-height: 1.15;
    }

    .kch-omnie .bio-wrap p {
      font-size: 1.06rem;
      color: var(--text);
      margin-bottom: 22px;
      line-height: 1.8;
    }

    .kch-omnie .bio-wrap p:first-of-type::first-letter {
      font-family: 'Playfair Display', serif;
      font-size: 3.6rem;
      font-weight: 600;
      color: var(--gold-hover);
      float: left;
      line-height: 0.9;
      margin: 8px 12px 0 0;
    }

    .kch-omnie .bio-signature {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .kch-omnie .bio-signature-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--black);
      line-height: 1.2;
      font-weight: 600;
    }
    .kch-omnie .bio-signature-text span {
      font-size: 0.9rem;
      color: var(--text-mid);
    }

    /* =====================
       PRAKTYKA (merged stats + values)
    ===================== */
    .kch-omnie .practice-section {
      background: #111111;
      color: #f5f0e6;
    }
    .kch-omnie .practice-section .section-tag {
      color: #f5f0e6;
      border-color: rgba(255,255,255,0.18);
    }
    .kch-omnie .practice-section .section-header h2 { color: #faf6ec; }
    .kch-omnie .practice-section .section-header p { color: rgba(245,240,230,0.65); }

    .kch-omnie .practice-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .kch-omnie .practice-card {
      border-right: 1px solid rgba(255,255,255,0.12);
      padding: 8px 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .kch-omnie .practice-card:last-child { border-right: none; }

    .kch-omnie .practice-card-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }

    .kch-omnie .practice-card strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #faf6ec;
      line-height: 1.15;
      font-weight: 600;
    }
    .kch-omnie .practice-card span {
      font-size: 0.92rem;
      color: rgba(245,240,230,0.7);
      line-height: 1.6;
    }

    /* =====================
       OBSZARY PRAKTYKI
    ===================== */
    .kch-omnie .areas-section { background: var(--bg-alt); }

    .kch-omnie .areas-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .kch-omnie .area-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      min-height: 280px;
    }
    .kch-omnie .area-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }

    .kch-omnie .area-card-icon {
      width: 44px;
      height: 44px;
      background: var(--bg-alt);
      border: 1px solid var(--border);
      color: var(--gold-hover);
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .kch-omnie .area-card-icon [data-lucide] { width: 20px; height: 20px; }

    .kch-omnie .area-card h3 {
      font-size: 1.08rem;
      margin-bottom: 4px;
      line-height: 1.3;
    }
    .kch-omnie .area-card p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.55;
      flex: 1;
      margin: 0;
    }
    .kch-omnie .area-card .btn-text { font-size: 0.84rem; }

    /* =====================
       CTA BANNER
    ===================== */
    .kch-omnie .cta-banner {
      background: var(--black);
      border-radius: 10px;
      padding: 72px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .kch-omnie .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,197,71,0.07), transparent 65%);
      pointer-events: none;
    }
    .kch-omnie .cta-banner h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.15;
    }
    .kch-omnie .cta-banner p {
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      font-size: 1rem;
    }

    .kch-omnie .cta-banner-action {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
      min-width: 260px;
    }

    .kch-omnie .cta-phone-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px 32px;
      background: var(--gold);
      color: var(--black);
      border-radius: 6px;
      font-weight: 700;
      font-size: 1.08rem;
      transition: transform 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .kch-omnie .cta-phone-pill:hover { transform: translateY(-2px); background: var(--gold-hover); }
    .kch-omnie .cta-phone-pill [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       FOOTER
    ===================== */
    .kch-omnie footer {
      background: var(--black);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }

    .kch-omnie .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .kch-omnie .footer-logo {
      height: 50px;
      width: auto;
      margin-bottom: 18px;
      filter: brightness(0) invert(1);
    }

    .kch-omnie .footer-brand p {
      font-size: 0.94rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 360px;
    }

    .kch-omnie .footer-col h4 {
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .kch-omnie .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .kch-omnie .footer-col a {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .kch-omnie .footer-col a:hover { color: var(--gold); }

    .kch-omnie .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.5);
      flex-wrap: wrap;
    }

    .kch-omnie .footer-social { display: flex; gap: 10px; }
    .kch-omnie .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: background 0.2s, color 0.2s;
    }
    .kch-omnie .footer-social a:hover { background: var(--gold); color: var(--black); }
    .kch-omnie .footer-social [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       RESPONSIVE
    ===================== */
    @media (max-width: 1100px) {
      .kch-omnie .about-hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .kch-omnie .about-hero-image-wrap { max-width: 420px; margin: 0 auto; justify-self: center; }
      .kch-omnie .about-hero-image { border-radius: 32px 0 32px 0; }
      .kch-omnie .bio-grid { grid-template-columns: 1fr; gap: 48px; }
      .kch-omnie .bio-image-col { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
      .kch-omnie .bio-image-wrap { border-radius: 0 32px 0 32px; }
      .kch-omnie .bio-wrap { max-width: none; margin: 0 auto; }
      .kch-omnie .practice-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
      .kch-omnie .practice-card { padding: 8px 24px; }
      .kch-omnie .practice-card:nth-child(2) { border-right: none; }
      .kch-omnie .areas-grid { grid-template-columns: repeat(3, 1fr); }
      .kch-omnie .cta-banner { gap: 40px; padding: 56px 48px; }
      .kch-omnie .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 820px) {
      .kch-omnie .nav-links, .kch-omnie .nav-cta { display: none; }
      .kch-omnie .hamburger { display: flex; }
      .kch-omnie .mobile-menu { display: block; }
      .kch-omnie .section { padding: 70px 0; }
      .kch-omnie .container { padding: 0 20px; }
      .kch-omnie #about-hero { padding: 120px 0 80px; }
      .kch-omnie .areas-grid { grid-template-columns: repeat(2, 1fr); }
      .kch-omnie .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
      .kch-omnie .cta-banner-action { min-width: unset; }
      .kch-omnie .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .kch-omnie .bio-wrap p:first-of-type::first-letter {
        font-size: 3rem;
      }
    }

    @media (max-width: 480px) {
      .kch-omnie .practice-grid { grid-template-columns: 1fr; gap: 28px; }
      .kch-omnie .practice-card { border-right: none !important; padding: 0 12px; }
      .kch-omnie .areas-grid { grid-template-columns: 1fr; }
      .kch-omnie .cta-banner { padding: 40px 24px; }
    }
  
    /* MOBILE: full-width buttons */
    @media (max-width: 820px) {
      .kch-omnie .btn { width: 100%; justify-content: center; }
    }


/* ============ KONTAKT (scoped .kch-kontakt) ============ */
    /* =====================
       RESET & BASE
    ===================== */
    .kch-kontakt *, .kch-kontakt *::before, .kch-kontakt *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #E8C547;
      --gold-hover: #D4B132;
      --gold-soft: #fdf6db;
      --black: #1a1a1a;
      --text: #2c2a24;
      --text-mid: #6b6860;
      --text-light: #9e9c94;
      --bg-alt: #f5f5f5;
      --bg-soft: #fafafa;
      --border: #e5e5e5;
      --white: #ffffff;
      --radius: 12px;
      --radius-lg: 20px;
      --container: 1400px;
      --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
      --shadow-md: 0 8px 28px rgba(26,26,26,0.08);
      --shadow-lg: 0 20px 50px rgba(26,26,26,0.12);
    }

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

    .kch-kontakt {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .kch-kontakt h1, .kch-kontakt h2, .kch-kontakt h3, .kch-kontakt h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black);
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
    }

    .kch-kontakt a { text-decoration: none; color: inherit; }
    .kch-kontakt img { max-width: 100%; display: block; }
    .kch-kontakt [data-lucide] { display: block; flex-shrink: 0; }

    /* =====================
       LAYOUT
    ===================== */
    .kch-kontakt .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    .kch-kontakt .section { padding: 100px 0; }

    .kch-kontakt .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--text);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      margin-bottom: 22px;
    }
    .kch-kontakt .section-tag::before, .kch-kontakt .section-tag::after {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--gold);
    }

    .kch-kontakt .section-header { margin-bottom: 56px; }
    .kch-kontakt .section-header h2 {
      font-size: clamp(2.2rem, 3.8vw, 3rem);
      margin-bottom: 14px;
    }
    .kch-kontakt .section-header p {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 620px;
    }

    /* =====================
       BUTTONS
    ===================== */
    .kch-kontakt .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.94rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
      white-space: nowrap;
    }
    .kch-kontakt .btn:active { transform: scale(0.98); }
    .kch-kontakt .btn-gold:hover { transform: translateY(-1px); }

    .kch-kontakt .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .kch-kontakt .btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

    .kch-kontakt .btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
    .kch-kontakt .btn-dark:hover { background: #000; }

    .kch-kontakt .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
    .kch-kontakt .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    .kch-kontakt .btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
    .kch-kontakt .btn-outline-dark:hover { background: var(--black); color: var(--white); }

    /* =====================
       NAVBAR
    ===================== */
    .kch-kontakt #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .kch-kontakt #navbar.scrolled { box-shadow: 0 4px 24px rgba(26,26,26,0.06); }

    .kch-kontakt .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 24px;
    }

    .kch-kontakt .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .kch-kontakt .nav-logo img { height: 44px; width: auto; display: block; }

    .kch-kontakt .nav-links { display: flex; gap: 32px; list-style: none; }
    .kch-kontakt .nav-links a {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: color 0.2s;
      position: relative;
    }
    .kch-kontakt .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.25s;
    }
    .kch-kontakt .nav-links a:hover::after, .kch-kontakt .nav-links a.active::after { width: 100%; }

    .kch-kontakt .nav-links li.has-dropdown { position: relative; }
    .kch-kontakt .nav-links .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .kch-kontakt .nav-links .nav-trigger [data-lucide] {
      width: 14px; height: 14px;
      transition: transform 0.25s;
    }
    .kch-kontakt .nav-links li.has-dropdown:hover .nav-trigger [data-lucide] { transform: rotate(180deg); }

    .kch-kontakt .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(26,26,26,0.10);
      padding: 10px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 1001;
    }
    .kch-kontakt .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -16px; left: -12px; right: -12px;
      height: 18px;
    }
    .kch-kontakt .nav-links li.has-dropdown:hover .nav-dropdown, .kch-kontakt .nav-links li.has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .kch-kontakt .nav-dropdown li { width: 100%; }
    .kch-kontakt .nav-dropdown a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 0.92rem;
      color: var(--text);
      font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .kch-kontakt .nav-dropdown a::after { display: none; }
    .kch-kontakt .nav-dropdown a:hover { background: var(--bg-alt); color: var(--black); }
    .kch-kontakt .nav-dropdown a .nav-dropdown-icon {
      width: 32px; height: 32px;
      background: var(--gold-soft);
      color: var(--gold-hover);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .kch-kontakt .nav-dropdown a .nav-dropdown-icon [data-lucide] { width: 16px; height: 16px; }
    .kch-kontakt .nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 6px; }
    .kch-kontakt .nav-dropdown .nav-dropdown-all a { font-weight: 600; color: var(--gold-hover); }

    .kch-kontakt .nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 0.88rem; }

    .kch-kontakt .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      z-index: 1100;
    }
    .kch-kontakt .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--black);
      border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .kch-kontakt .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .kch-kontakt .hamburger.open span:nth-child(2) { opacity: 0; }
    .kch-kontakt .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .kch-kontakt .mobile-menu {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: var(--white);
      padding: 28px 32px 36px;
      z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(26,26,26,0.08);
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      pointer-events: none;
    }
    .kch-kontakt .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .kch-kontakt .mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
    .kch-kontakt .mobile-menu ul li a {
      display: block;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .kch-kontakt .mobile-submenu-toggle {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
    }
    .kch-kontakt .mobile-submenu-toggle [data-lucide] {
      width: 18px; height: 18px;
      transition: transform 0.25s;
    }
    .kch-kontakt .mobile-submenu-toggle.open [data-lucide] { transform: rotate(180deg); }

    .kch-kontakt .mobile-submenu {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .kch-kontakt .mobile-submenu.open { max-height: 500px; }
    .kch-kontakt .mobile-submenu li a {
      padding: 12px 0 12px 18px !important;
      font-size: 0.94rem !important;
      color: var(--text-mid) !important;
      border-bottom: 1px solid var(--border);
    }
    .kch-kontakt .mobile-submenu li:last-child a { border-bottom: none; }

    .kch-kontakt .mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

    /* =====================
       CONTACT HERO
    ===================== */
    .kch-kontakt #contact-hero {
      padding: 130px 0 52px;
      background: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }
    .kch-kontakt #contact-hero::before {
      content: '';
      position: absolute;
      top: 80px;
      right: -120px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(232,197,71,0.10), transparent 65%);
      pointer-events: none;
    }
    .kch-kontakt .contact-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }
    .kch-kontakt .contact-hero-inner h1 {
      font-size: clamp(2rem, 3.6vw, 2.8rem);
      line-height: 1.1;
      margin-bottom: 0;
      letter-spacing: -0.02em;
    }

    /* =====================
       CONTACT MAIN
    ===================== */
    .kch-kontakt .contact-main { background: var(--white); padding: 80px 0 0; }

    .kch-kontakt .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    /* Lewa kolumna: sidebar pionowy */
    .kch-kontakt .contact-sidebar {
      background: #f4f1ea;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 36px;
      box-shadow: var(--shadow-sm);
      align-self: stretch;
      display: flex;
      flex-direction: column;
    }
    .kch-kontakt .contact-sidebar h2 {
      font-size: clamp(1.6rem, 2.4vw, 1.95rem);
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .kch-kontakt .contact-sidebar .sidebar-intro {
      font-size: 0.95rem;
      color: var(--text-mid);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .kch-kontakt .contact-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .kch-kontakt .contact-list li {
      padding: 22px 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .kch-kontakt .contact-list li:first-child { padding-top: 0; }
    .kch-kontakt .contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .kch-kontakt .contact-list-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-hover);
    }
    .kch-kontakt .contact-list-value {
      font-family: 'Inter', sans-serif;
      font-size: 1.15rem;
      color: var(--black);
      line-height: 1.4;
      font-weight: 500;
      letter-spacing: 0;
    }
    .kch-kontakt .contact-list-value a {
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .kch-kontakt .contact-list-value a:hover { border-color: var(--gold); color: var(--gold-hover); }
    .kch-kontakt .contact-list-note {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.5;
    }

    /* Mapa full-width */
    .kch-kontakt .contact-map-section {
      width: 100%;
      margin-top: 80px;
    }
    .kch-kontakt .contact-map-wrap {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      background: var(--bg-alt);
    }
    .kch-kontakt .contact-map-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* Prawa kolumna: formularz */
    .kch-kontakt .contact-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 44px 40px;
      box-shadow: 0 24px 60px rgba(26,26,26,0.10), 0 4px 14px rgba(26,26,26,0.04);
    }
    .kch-kontakt .contact-form-card h2 {
      font-size: clamp(1.6rem, 2.4vw, 1.95rem);
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .kch-kontakt .contact-form-card .form-intro {
      font-size: 0.95rem;
      color: var(--text-mid);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .kch-kontakt .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .kch-kontakt .form-field { margin-bottom: 16px; }
    .kch-kontakt .form-field label, .kch-kontakt .form-row .form-field label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 8px;
    }
    .kch-kontakt .form-field label .req { color: var(--gold-hover); }

    .kch-kontakt .form-field input, .kch-kontakt .form-field select, .kch-kontakt .form-field textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--bg-soft);
      font-family: 'Inter', sans-serif;
      font-size: 0.96rem;
      color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .kch-kontakt .form-field input:hover, .kch-kontakt .form-field select:hover, .kch-kontakt .form-field textarea:hover { background: var(--white); }
    .kch-kontakt .form-field input:focus, .kch-kontakt .form-field select:focus, .kch-kontakt .form-field textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(232,197,71,0.18);
    }
    .kch-kontakt .form-field textarea {
      min-height: 140px;
      resize: vertical;
      line-height: 1.5;
    }
    .kch-kontakt .form-field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%236b6860' stroke-width='1.6' d='M1 1.5l5 5 5-5'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

    .kch-kontakt .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 22px;
      font-size: 0.84rem;
      color: var(--text-mid);
      line-height: 1.5;
    }
    .kch-kontakt .form-check input[type="checkbox"] {
      margin-top: 3px;
      width: 16px; height: 16px;
      accent-color: var(--gold);
      flex-shrink: 0;
    }
    .kch-kontakt .form-check a { color: var(--text); border-bottom: 1px solid var(--gold); }
    .kch-kontakt .form-check a:hover { color: var(--gold-hover); }

    .kch-kontakt .form-submit {
      width: 100%;
      justify-content: center;
      font-size: 1rem;
      padding: 18px 28px;
      letter-spacing: 0.04em;
      transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
    }
    .kch-kontakt .form-submit:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: translateY(-1px);
    }

    .kch-kontakt .form-meta {
      margin-top: 16px;
      font-size: 0.82rem;
      color: var(--text-mid);
      text-align: center;
      line-height: 1.5;
    }

    /* =====================
       OPENING HOURS / DIVIDER STRIP
    ===================== */
    .kch-kontakt .hours-strip {
      background: #111111;
      color: #f5f0e6;
      padding: 60px 0;
    }
    .kch-kontakt .hours-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 32px;
      align-items: center;
    }
    .kch-kontakt .hours-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      line-height: 1.25;
      color: #faf6ec;
    }
    .kch-kontakt .hours-title em {
      display: block;
      font-style: italic;
      font-weight: 400;
      font-size: 1.1rem;
      color: rgba(245,240,230,0.6);
      margin-top: 6px;
    }
    .kch-kontakt .hours-block {
      border-left: 1px solid rgba(255,255,255,0.12);
      padding-left: 24px;
    }
    .kch-kontakt .hours-block-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .kch-kontakt .hours-block-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: #faf6ec;
      line-height: 1.4;
    }
    .kch-kontakt .hours-block-note {
      font-size: 0.86rem;
      color: rgba(245,240,230,0.55);
      margin-top: 4px;
    }

    /* =====================
       CTA BANNER
    ===================== */
    .kch-kontakt .cta-banner {
      background: var(--black);
      border-radius: 10px;
      padding: 72px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .kch-kontakt .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,197,71,0.07), transparent 65%);
      pointer-events: none;
    }
    .kch-kontakt .cta-banner h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.15;
    }
    .kch-kontakt .cta-banner p {
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      font-size: 1rem;
    }

    .kch-kontakt .cta-banner-action {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
      min-width: 260px;
    }

    .kch-kontakt .cta-phone-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px 32px;
      background: var(--gold);
      color: var(--black);
      border-radius: 6px;
      font-weight: 700;
      font-size: 1.08rem;
      transition: transform 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .kch-kontakt .cta-phone-pill:hover { transform: translateY(-2px); background: var(--gold-hover); }
    .kch-kontakt .cta-phone-pill [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       FOOTER
    ===================== */
    .kch-kontakt footer {
      background: var(--black);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }

    .kch-kontakt .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .kch-kontakt .footer-logo {
      height: 50px;
      width: auto;
      margin-bottom: 18px;
      filter: brightness(0) invert(1);
    }

    .kch-kontakt .footer-brand p {
      font-size: 0.94rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 360px;
    }

    .kch-kontakt .footer-col h4 {
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .kch-kontakt .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .kch-kontakt .footer-col a {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .kch-kontakt .footer-col a:hover { color: var(--gold); }

    .kch-kontakt .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.5);
      flex-wrap: wrap;
    }

    .kch-kontakt .footer-social { display: flex; gap: 10px; }
    .kch-kontakt .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: background 0.2s, color 0.2s;
    }
    .kch-kontakt .footer-social a:hover { background: var(--gold); color: var(--black); }
    .kch-kontakt .footer-social [data-lucide] { width: 18px; height: 18px; }

    /* =====================
       RESPONSIVE
    ===================== */
    @media (max-width: 1100px) {
      .kch-kontakt .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .kch-kontakt .contact-sidebar { align-self: auto; }
      .kch-kontakt .contact-map-section { margin-top: 56px; }
      .kch-kontakt .contact-map-wrap { height: 340px; }
      .kch-kontakt .hours-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .kch-kontakt .hours-title { grid-column: 1 / -1; }
      .kch-kontakt .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 820px) {
      .kch-kontakt .nav-links, .kch-kontakt .nav-cta { display: none; }
      .kch-kontakt .hamburger { display: flex; }
      .kch-kontakt .mobile-menu { display: block; }
      .kch-kontakt .section { padding: 70px 0; }
      .kch-kontakt .container { padding: 0 20px; }
      .kch-kontakt #contact-hero { padding: 120px 0 60px; }
      .kch-kontakt .contact-main { padding: 60px 0 0; }
      .kch-kontakt .contact-form-card { padding: 32px 24px; }
      .kch-kontakt .contact-sidebar { padding: 32px 24px; }
      .kch-kontakt .contact-list-value { font-size: 1.3rem; }
      .kch-kontakt .form-row { grid-template-columns: 1fr; gap: 0; }
      .kch-kontakt .contact-map-wrap { height: 280px; }
      .kch-kontakt .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    }

    @media (max-width: 540px) {
      .kch-kontakt .hours-grid { grid-template-columns: 1fr; }
      .kch-kontakt .hours-block { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; }
      .kch-kontakt .contact-list-value { font-size: 1.2rem; }
    }
  
    /* MOBILE: full-width buttons */
    @media (max-width: 820px) {
      .kch-kontakt .btn { width: 100%; justify-content: center; }
    }


/* ============ BLOG (scoped .kch-blog) ============ */
    .kch-blog *, .kch-blog *::before, .kch-blog *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #E8C547;
      --gold-hover: #D4B132;
      --gold-soft: #fdf6db;
      --black: #1a1a1a;
      --text: #2c2a24;
      --text-mid: #6b6860;
      --text-light: #9e9c94;
      --bg-alt: #f5f5f5;
      --bg-soft: #fafafa;
      --border: #e5e5e5;
      --white: #ffffff;
      --radius: 12px;
      --container: 1400px;
      --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
      --shadow-md: 0 8px 28px rgba(26,26,26,0.08);
      --shadow-lg: 0 20px 50px rgba(26,26,26,0.12);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    .kch-blog {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    .kch-blog h1, .kch-blog h2, .kch-blog h3, .kch-blog h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black);
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
    }
    .kch-blog a { text-decoration: none; color: inherit; }
    .kch-blog img { max-width: 100%; display: block; }
    .kch-blog [data-lucide] { display: block; flex-shrink: 0; }

    .kch-blog .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    .kch-blog .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--text);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      margin-bottom: 22px;
    }
    .kch-blog .section-tag::before, .kch-blog .section-tag::after {
      content: ''; width: 14px; height: 1px; background: var(--gold);
    }

    /* ===================== BUTTONS ===================== */
    .kch-blog .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.94rem;
      font-weight: 700;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
      white-space: nowrap;
    }
    .kch-blog .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .kch-blog .btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); }
    .kch-blog .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
    .kch-blog .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    /* ===================== NAVBAR ===================== */
    .kch-blog #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .kch-blog #navbar.scrolled { box-shadow: 0 4px 24px rgba(26,26,26,0.06); }

    .kch-blog .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 24px;
    }
    .kch-blog .nav-logo img { height: 44px; width: auto; display: block; }
    .kch-blog .nav-links { display: flex; gap: 32px; list-style: none; }
    .kch-blog .nav-links a {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
    }
    .kch-blog .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.25s;
    }
    .kch-blog .nav-links a:hover::after, .kch-blog .nav-links a.active::after { width: 100%; }
    .kch-blog .nav-links li.has-dropdown { position: relative; }
    .kch-blog .nav-links .nav-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
    .kch-blog .nav-links .nav-trigger [data-lucide] { width: 14px; height: 14px; transition: transform 0.25s; }
    .kch-blog .nav-links li.has-dropdown:hover .nav-trigger [data-lucide] { transform: rotate(180deg); }

    .kch-blog .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(26,26,26,0.10);
      padding: 10px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 1001;
    }
    .kch-blog .nav-dropdown::before { content: ''; position: absolute; top: -16px; left: -12px; right: -12px; height: 18px; }
    .kch-blog .nav-links li.has-dropdown:hover .nav-dropdown, .kch-blog .nav-links li.has-dropdown:focus-within .nav-dropdown {
      opacity: 1; visibility: visible; pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .kch-blog .nav-dropdown li { width: 100%; }
    .kch-blog .nav-dropdown a {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px; border-radius: 8px;
      font-size: 0.92rem; color: var(--text); font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .kch-blog .nav-dropdown a::after { display: none; }
    .kch-blog .nav-dropdown a:hover { background: var(--bg-alt); color: var(--black); }
    .kch-blog .nav-dropdown a .nav-dropdown-icon {
      width: 32px; height: 32px;
      background: var(--gold-soft); color: var(--gold-hover);
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .kch-blog .nav-dropdown a .nav-dropdown-icon [data-lucide] { width: 16px; height: 16px; }
    .kch-blog .nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px; }
    .kch-blog .nav-dropdown .nav-dropdown-all a { font-weight: 600; color: var(--gold-hover); }
    .kch-blog .nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 0.88rem; }

    .kch-blog .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 6px; z-index: 1100;
    }
    .kch-blog .hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--black); border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .kch-blog .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .kch-blog .hamburger.open span:nth-child(2) { opacity: 0; }
    .kch-blog .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .kch-blog .mobile-menu {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: var(--white);
      padding: 28px 32px 36px;
      z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(26,26,26,0.08);
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      pointer-events: none;
    }
    .kch-blog .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .kch-blog .mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
    .kch-blog .mobile-menu ul li a {
      display: block; color: var(--text); font-size: 1rem; font-weight: 500;
      padding: 16px 0; border-bottom: 1px solid var(--border);
    }
    .kch-blog .mobile-submenu-toggle {
      width: 100%; background: none; border: none;
      padding: 16px 0; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      cursor: pointer; font-family: 'Inter', sans-serif;
      font-size: 1rem; font-weight: 500; color: var(--text);
    }
    .kch-blog .mobile-submenu-toggle [data-lucide] { width: 18px; height: 18px; transition: transform 0.25s; }
    .kch-blog .mobile-submenu-toggle.open [data-lucide] { transform: rotate(180deg); }
    .kch-blog .mobile-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .kch-blog .mobile-submenu.open { max-height: 500px; }
    .kch-blog .mobile-submenu li a {
      padding: 12px 0 12px 18px !important; font-size: 0.94rem !important;
      color: var(--text-mid) !important; border-bottom: 1px solid var(--border);
    }
    .kch-blog .mobile-submenu li:last-child a { border-bottom: none; }
    .kch-blog .mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

    /* ===================== BLOG HERO ===================== */
    .kch-blog #blog-hero {
      height: 40vh;
      min-height: 280px;
      max-height: 460px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding-bottom: 48px;
      overflow: hidden;
    }
    .kch-blog #blog-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('assets/img/zdjecie-hero-2.jpg') center 35% / cover no-repeat;
      z-index: 0;
    }
    .kch-blog #blog-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.90);
      z-index: 1;
    }
    .kch-blog .blog-hero-inner {
      position: relative;
      z-index: 2;
    }
    .kch-blog .blog-hero-inner .section-tag {
      color: rgba(255,255,255,0.8);
      border-color: rgba(255,255,255,0.25);
    }
    .kch-blog .blog-hero-inner .section-tag::before, .kch-blog .blog-hero-inner .section-tag::after { background: var(--gold); }
    .kch-blog .blog-hero-inner h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      color: var(--white);
      line-height: 1.06;
      letter-spacing: -0.02em;
      margin-bottom: 0;
    }
    .kch-blog .blog-hero-inner h1 em {
      font-style: normal;
      font-weight: 600;
    }

    /* ===================== BLOG MAIN ===================== */
    .kch-blog .blog-main {
      background: var(--white);
      padding: 72px 0 100px;
    }
    .kch-blog .blog-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 96px;
      align-items: start;
    }

    /* --- Sidebar filtr�w --- */
    .kch-blog .blog-sidebar { position: sticky; top: 108px; }
    .kch-blog .blog-sidebar-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 24px;
      line-height: 1.3;
    }
    .kch-blog .blog-sidebar-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 24px;
    }
    .kch-blog .blog-filter-list {
      list-style: none;
      display: flex;
      flex-direction: column;
    }
    .kch-blog .blog-filter-list li {
      border-bottom: 1px solid var(--border);
    }
    .kch-blog .blog-filter-list li:first-child { border-top: 1px solid var(--border); }
    .kch-blog .blog-filter-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: none;
      border: none;
      padding: 14px 0;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 0.96rem;
      color: var(--text);
      transition: color 0.2s;
      text-align: left;
    }
    .kch-blog .blog-filter-btn:hover { color: var(--black); }
    .kch-blog .blog-filter-btn.active { color: var(--black); font-weight: 600; }
    .kch-blog .blog-filter-btn.active .filter-count {
      background: var(--gold);
      color: var(--black);
    }
    .kch-blog .filter-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 26px;
      height: 26px;
      padding: 0 7px;
      border-radius: 13px;
      background: var(--bg-alt);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-mid);
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .kch-blog .blog-filter-select { display: none; }

    /* --- Siatka wpis�w --- */
    .kch-blog .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .kch-blog .post-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 16px rgba(26,26,26,0.06);
      transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
    }
    .kch-blog .post-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(26,26,26,0.13);
      border-color: transparent;
    }
    .kch-blog .post-card-img {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--bg-alt);
    }
    .kch-blog .post-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .kch-blog .post-card:hover .post-card-img img { transform: scale(1.04); }
    .kch-blog .post-card-body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 12px;
    }
    .kch-blog .post-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .kch-blog .post-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      background: var(--bg-alt);
      color: var(--text-mid);
      border: 1px solid var(--border);
    }
    .kch-blog .post-card h3 {
      font-size: 1.12rem;
      line-height: 1.35;
      color: var(--black);
      margin-top: 2px;
    }
    .kch-blog .post-card-excerpt {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.65;
      flex: 1;
    }
    .kch-blog .post-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      gap: 8px;
    }
    .kch-blog .post-date {
      font-size: 0.82rem;
      color: var(--text-light);
    }
    .kch-blog .post-read-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--black);
      padding: 6px 0;
      border-bottom: 1.5px solid transparent;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .kch-blog .post-read-btn [data-lucide] { width: 14px; height: 14px; }
    .kch-blog .post-read-btn:hover { border-color: var(--gold); color: var(--gold-hover); }

    /* hidden class dla filtrowania */
    .kch-blog .post-card[hidden] { display: none; }

    /* ===================== CTA BANNER ===================== */
    .kch-blog .cta-section { background: var(--bg-alt); padding: 80px 0; }
    .kch-blog .cta-banner {
      background: var(--black);
      border-radius: 10px;
      padding: 72px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .kch-blog .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,197,71,0.07), transparent 65%);
      pointer-events: none;
    }
    .kch-blog .cta-banner h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.15;
    }
    .kch-blog .cta-banner p { color: rgba(255,255,255,0.6); max-width: 540px; font-size: 1rem; }
    .kch-blog .cta-banner-action {
      display: flex; flex-direction: column; gap: 12px;
      align-items: stretch; min-width: 260px;
    }
    .kch-blog .cta-phone-pill {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 12px; padding: 20px 32px;
      background: var(--gold); color: var(--black);
      border-radius: 6px; font-weight: 700; font-size: 1.08rem;
      transition: transform 0.2s, background 0.2s; white-space: nowrap;
    }
    .kch-blog .cta-phone-pill:hover { transform: translateY(-2px); background: var(--gold-hover); }
    .kch-blog .cta-phone-pill [data-lucide] { width: 18px; height: 18px; }

    /* ===================== FOOTER ===================== */
    .kch-blog footer {
      background: var(--black);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }
    .kch-blog .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .kch-blog .footer-logo { height: 50px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
    .kch-blog .footer-brand p { font-size: 0.94rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 360px; }
    .kch-blog .footer-col h4 {
      color: var(--white); font-family: 'Inter', sans-serif;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
    }
    .kch-blog .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .kch-blog .footer-col a { color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: color 0.2s; }
    .kch-blog .footer-col a:hover { color: var(--gold); }
    .kch-blog .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; font-size: 0.84rem; color: rgba(255,255,255,0.5); flex-wrap: wrap;
    }
    .kch-blog .footer-social { display: flex; gap: 10px; }
    .kch-blog .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s;
    }
    .kch-blog .footer-social a:hover { background: var(--gold); color: var(--black); }
    .kch-blog .footer-social [data-lucide] { width: 18px; height: 18px; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1100px) {
      .kch-blog .blog-layout { grid-template-columns: 220px 1fr; gap: 44px; }
      .kch-blog .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
      .kch-blog .cta-banner { gap: 40px; padding: 56px 48px; }
      .kch-blog .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 820px) {
      .kch-blog .nav-links, .kch-blog .nav-cta { display: none; }
      .kch-blog .hamburger { display: flex; }
      .kch-blog .mobile-menu { display: block; }
      .kch-blog .container { padding: 0 20px; }
      .kch-blog #blog-hero { min-height: 320px; padding-bottom: 40px; }
      .kch-blog .blog-hero-inner h1 { font-size: 2.6rem; }
      .kch-blog .blog-main { padding: 52px 0 80px; }
      .kch-blog .blog-layout { grid-template-columns: 1fr; gap: 32px; }
      .kch-blog .blog-sidebar { position: static; }
      .kch-blog .blog-sidebar-title { font-size: 1.4rem; margin-bottom: 16px; }
      .kch-blog .blog-filter-list { display: none; }
      .kch-blog .blog-filter-select {
        display: block;
        width: 100%;
        padding: 15px 16px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        color: var(--black);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
      }
      .kch-blog .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
      .kch-blog .cta-banner-action { min-width: unset; }
      .kch-blog .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    }
    @media (max-width: 560px) {
      .kch-blog .posts-grid { grid-template-columns: 1fr; }
    }
  
    /* MOBILE: full-width buttons */
    @media (max-width: 820px) {
      .kch-blog .btn { width: 100%; justify-content: center; }
    }

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

    :root {
      --gold: #E8C547;
      --gold-hover: #D4B132;
      --gold-soft: #fdf6db;
      --black: #1a1a1a;
      --text: #2c2a24;
      --text-mid: #6b6860;
      --text-light: #9e9c94;
      --bg-alt: #f5f5f5;
      --bg-soft: #fafafa;
      --border: #e5e5e5;
      --white: #ffffff;
      --radius: 12px;
      --container: 1400px;
      --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
      --shadow-md: 0 8px 28px rgba(26,26,26,0.08);
      --shadow-lg: 0 20px 50px rgba(26,26,26,0.12);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    .kch-blog {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    .kch-blog h1, .kch-blog h2, .kch-blog h3, .kch-blog h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black);
      line-height: 1.25;
      letter-spacing: -0.01em;
      font-weight: 600;
    }
    .kch-blog a { text-decoration: none; color: inherit; }
    .kch-blog img { max-width: 100%; display: block; }
    .kch-blog [data-lucide] { display: block; flex-shrink: 0; }

    .kch-blog .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ===================== BUTTONS ===================== */
    .kch-blog .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 28px; border-radius: 6px;
      font-family: 'Inter', sans-serif; font-size: 0.94rem; font-weight: 700;
      cursor: pointer; border: 1.5px solid transparent;
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
      white-space: nowrap;
    }
    .kch-blog .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .kch-blog .btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); }
    .kch-blog .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
    .kch-blog .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    /* ===================== NAVBAR ===================== */
    .kch-blog #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .kch-blog #navbar.scrolled { box-shadow: 0 4px 24px rgba(26,26,26,0.06); }
    .kch-blog .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 80px; gap: 24px;
    }
    .kch-blog .nav-logo img { height: 44px; width: auto; display: block; }
    .kch-blog .nav-links { display: flex; gap: 32px; list-style: none; }
    .kch-blog .nav-links a {
      color: var(--text); font-size: 0.92rem; font-weight: 500;
      transition: color 0.2s; position: relative;
    }
    .kch-blog .nav-links a::after {
      content: ''; position: absolute; bottom: -6px; left: 0;
      width: 0; height: 2px; background: var(--gold); transition: width 0.25s;
    }
    .kch-blog .nav-links a:hover::after, .kch-blog .nav-links a.active::after { width: 100%; }
    .kch-blog .nav-links li.has-dropdown { position: relative; }
    .kch-blog .nav-links .nav-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
    .kch-blog .nav-links .nav-trigger [data-lucide] { width: 14px; height: 14px; transition: transform 0.25s; }
    .kch-blog .nav-links li.has-dropdown:hover .nav-trigger [data-lucide] { transform: rotate(180deg); }
    .kch-blog .nav-dropdown {
      position: absolute; top: calc(100% + 10px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px; background: var(--white);
      border: 1px solid var(--border); border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(26,26,26,0.10);
      padding: 10px; list-style: none;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 1001;
    }
    .kch-blog .nav-dropdown::before { content: ''; position: absolute; top: -16px; left: -12px; right: -12px; height: 18px; }
    .kch-blog .nav-links li.has-dropdown:hover .nav-dropdown, .kch-blog .nav-links li.has-dropdown:focus-within .nav-dropdown {
      opacity: 1; visibility: visible; pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .kch-blog .nav-dropdown li { width: 100%; }
    .kch-blog .nav-dropdown a {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px; border-radius: 8px;
      font-size: 0.92rem; color: var(--text); font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .kch-blog .nav-dropdown a::after { display: none; }
    .kch-blog .nav-dropdown a:hover { background: var(--bg-alt); color: var(--black); }
    .kch-blog .nav-dropdown a .nav-dropdown-icon {
      width: 32px; height: 32px;
      background: var(--gold-soft); color: var(--gold-hover);
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .kch-blog .nav-dropdown a .nav-dropdown-icon [data-lucide] { width: 16px; height: 16px; }
    .kch-blog .nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px; }
    .kch-blog .nav-dropdown .nav-dropdown-all a { font-weight: 600; color: var(--gold-hover); }
    .kch-blog .nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 0.88rem; }

    .kch-blog .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 6px; z-index: 1100;
    }
    .kch-blog .hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--black); border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .kch-blog .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .kch-blog .hamburger.open span:nth-child(2) { opacity: 0; }
    .kch-blog .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .kch-blog .mobile-menu {
      display: none; position: fixed;
      top: 80px; left: 0; right: 0;
      background: var(--white);
      padding: 28px 32px 36px; z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(26,26,26,0.08);
      transform: translateY(-10px); opacity: 0;
      transition: transform 0.3s, opacity 0.3s; pointer-events: none;
    }
    .kch-blog .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .kch-blog .mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
    .kch-blog .mobile-menu ul li a {
      display: block; color: var(--text); font-size: 1rem; font-weight: 500;
      padding: 16px 0; border-bottom: 1px solid var(--border);
    }
    .kch-blog .mobile-submenu-toggle {
      width: 100%; background: none; border: none;
      padding: 16px 0; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      cursor: pointer; font-family: 'Inter', sans-serif;
      font-size: 1rem; font-weight: 500; color: var(--text);
    }
    .kch-blog .mobile-submenu-toggle [data-lucide] { width: 18px; height: 18px; transition: transform 0.25s; }
    .kch-blog .mobile-submenu-toggle.open [data-lucide] { transform: rotate(180deg); }
    .kch-blog .mobile-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .kch-blog .mobile-submenu.open { max-height: 500px; }
    .kch-blog .mobile-submenu li a {
      padding: 12px 0 12px 18px !important; font-size: 0.94rem !important;
      color: var(--text-mid) !important; border-bottom: 1px solid var(--border);
    }
    .kch-blog .mobile-submenu li:last-child a { border-bottom: none; }
    .kch-blog .mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

    /* ===================== POST HERO ===================== */
    .kch-blog #post-hero {
      height: 50vh;
      min-height: 340px;
      max-height: 560px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .kch-blog #post-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url('../assets/img/zdjecie-hero-2.jpg') center 35% / cover no-repeat;
      z-index: 0;
    }
    .kch-blog #post-hero::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.70);
      z-index: 1;
    }
    .kch-blog .post-hero-inner {
      position: relative; z-index: 2;
      text-align: center;
      max-width: 860px;
      padding: 0 32px;
    }
    .kch-blog .post-hero-tags {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 18px;
    }
    .kch-blog .post-hero-tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
    }
    .kch-blog .post-hero-inner h1 {
      font-size: clamp(1.6rem, 3.2vw, 2.6rem);
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .kch-blog .post-hero-meta {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: 16px;
      font-size: 0.86rem;
      color: rgba(255,255,255,0.6);
    }
    .kch-blog .post-hero-meta span { display: flex; align-items: center; gap: 6px; }
    .kch-blog .post-hero-meta [data-lucide] { width: 14px; height: 14px; }

    /* ===================== POST BODY ===================== */
    .kch-blog .post-main {
      background: var(--white);
      padding: 72px 0 100px;
    }
    .kch-blog .post-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 56px;
      align-items: start;
    }

    /* Lewa: tre�� */
    .kch-blog .post-content {}

    .kch-blog .post-featured-img {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 16/9;
      margin-bottom: 40px;
      box-shadow: var(--shadow-md);
    }
    .kch-blog .post-featured-img img {
      width: 100%; height: 100%; object-fit: cover;
    }

    .kch-blog .post-content-title {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 28px;
      line-height: 1.2;
    }

    .kch-blog .post-body { font-size: 1.06rem; color: var(--text); line-height: 1.85; }
    .kch-blog .post-body p { margin-bottom: 22px; }
    .kch-blog .post-body h2 {
      font-size: 1.5rem;
      margin-top: 40px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .kch-blog .post-body h3 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 12px; }
    .kch-blog .post-body ul, .kch-blog .post-body ol {
      margin: 0 0 22px 24px;
    }
    .kch-blog .post-body li { margin-bottom: 8px; }
    .kch-blog .post-body blockquote {
      border-left: 3px solid var(--gold);
      padding: 16px 24px;
      margin: 28px 0;
      background: var(--bg-soft);
      border-radius: 0 8px 8px 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.12rem;
      color: var(--black);
      line-height: 1.6;
    }
    .kch-blog .post-body .callout {
      background: var(--gold-soft);
      border: 1px solid rgba(232,197,71,0.4);
      border-radius: 10px;
      padding: 20px 24px;
      margin: 28px 0;
      font-size: 0.97rem;
      line-height: 1.65;
    }
    .kch-blog .post-body .callout strong { color: var(--black); }

    .kch-blog .post-author {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .kch-blog .post-author-img {
      width: 72px; height: 72px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-alt);
    }
    .kch-blog .post-author-img img { width: 100%; height: 100%; object-fit: cover; }
    .kch-blog .post-author-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 4px;
    }
    .kch-blog .post-author-role {
      font-size: 0.86rem;
      color: var(--text-mid);
      margin-bottom: 10px;
    }
    .kch-blog .post-author-bio { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }

    /* Prawa: sidebar */
    .kch-blog .post-sidebar { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 36px; }

    .kch-blog .sidebar-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 6px;
    }
    .kch-blog .sidebar-divider { width: 36px; height: 2px; background: var(--gold); margin-bottom: 20px; }

    /* Kategorie w sidebarze */
    .kch-blog .sidebar-categories { list-style: none; }
    .kch-blog .sidebar-categories li {
      border-bottom: 1px solid var(--border);
    }
    .kch-blog .sidebar-categories li:first-child { border-top: 1px solid var(--border); }
    .kch-blog .sidebar-cat-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 0;
      font-size: 0.92rem;
      color: var(--text);
      transition: color 0.2s;
    }
    .kch-blog .sidebar-cat-link:hover { color: var(--gold-hover); }
    .kch-blog .sidebar-cat-count {
      min-width: 24px; height: 24px; padding: 0 7px;
      border-radius: 12px; background: var(--bg-alt);
      font-size: 0.76rem; font-weight: 600; color: var(--text-mid);
      display: inline-flex; align-items: center; justify-content: center;
    }

    /* Karty powi�zanych wpis�w */
    .kch-blog .sidebar-posts { display: flex; flex-direction: column; gap: 22px; }
    .kch-blog .sidebar-post-card {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 4px 16px rgba(26,26,26,0.06);
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .kch-blog .sidebar-post-card:hover {
      border-color: transparent;
      box-shadow: 0 12px 32px rgba(26,26,26,0.12);
      transform: translateY(-3px);
    }
    .kch-blog .sidebar-post-img {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--bg-alt);
    }
    .kch-blog .sidebar-post-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s;
    }
    .kch-blog .sidebar-post-card:hover .sidebar-post-img img { transform: scale(1.04); }
    .kch-blog .sidebar-post-body {
      display: flex; flex-direction: column; gap: 8px;
      padding: 16px 18px 18px;
    }
    .kch-blog .sidebar-post-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      background: var(--bg-alt);
      color: var(--text-mid);
      border: 1px solid var(--border);
      align-self: flex-start;
    }
    .kch-blog .sidebar-post-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--black);
      line-height: 1.35;
      font-weight: 600;
    }
    .kch-blog .sidebar-post-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 10px;
      border-top: 1px solid var(--border);
      margin-top: 4px;
    }
    .kch-blog .sidebar-post-date { font-size: 0.8rem; color: var(--text-light); }
    .kch-blog .sidebar-post-read {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.8rem; font-weight: 600; color: var(--black);
      border-bottom: 1.5px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .kch-blog .sidebar-post-read [data-lucide] { width: 13px; height: 13px; }
    .kch-blog .sidebar-post-card:hover .sidebar-post-read { border-color: var(--gold); color: var(--gold-hover); }

    /* ===================== CTA BANNER ===================== */
    .kch-blog .cta-section { background: var(--bg-alt); padding: 80px 0; }
    .kch-blog .cta-banner {
      background: var(--black); border-radius: 10px;
      padding: 72px; display: grid;
      grid-template-columns: 1fr auto; gap: 64px; align-items: center;
      position: relative; overflow: hidden;
    }
    .kch-blog .cta-banner::before {
      content: ''; position: absolute; top: -60%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,197,71,0.07), transparent 65%);
      pointer-events: none;
    }
    .kch-blog .cta-banner h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--white); margin-bottom: 14px; line-height: 1.15; }
    .kch-blog .cta-banner p { color: rgba(255,255,255,0.6); max-width: 540px; font-size: 1rem; }
    .kch-blog .cta-banner-action { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 260px; }
    .kch-blog .cta-phone-pill {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 12px; padding: 20px 32px;
      background: var(--gold); color: var(--black);
      border-radius: 6px; font-weight: 700; font-size: 1.08rem;
      transition: transform 0.2s, background 0.2s; white-space: nowrap;
    }
    .kch-blog .cta-phone-pill:hover { transform: translateY(-2px); background: var(--gold-hover); }
    .kch-blog .cta-phone-pill [data-lucide] { width: 18px; height: 18px; }

    /* ===================== FOOTER ===================== */
    .kch-blog footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
    .kch-blog .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
    .kch-blog .footer-logo { height: 50px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
    .kch-blog .footer-brand p { font-size: 0.94rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 360px; }
    .kch-blog .footer-col h4 {
      color: var(--white); font-family: 'Inter', sans-serif;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; margin-bottom: 18px;
    }
    .kch-blog .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .kch-blog .footer-col a { color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: color 0.2s; }
    .kch-blog .footer-col a:hover { color: var(--gold); }
    .kch-blog .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; font-size: 0.84rem; color: rgba(255,255,255,0.5); flex-wrap: wrap;
    }
    .kch-blog .footer-social { display: flex; gap: 10px; }
    .kch-blog .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s;
    }
    .kch-blog .footer-social a:hover { background: var(--gold); color: var(--black); }
    .kch-blog .footer-social [data-lucide] { width: 18px; height: 18px; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1100px) {
      .kch-blog .post-layout { grid-template-columns: 1fr 280px; gap: 40px; }
      .kch-blog .cta-banner { gap: 40px; padding: 56px 48px; }
      .kch-blog .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .kch-blog .post-layout { grid-template-columns: 1fr; }
      .kch-blog .post-sidebar { position: static; }
      .kch-blog .sidebar-posts { flex-direction: row; flex-wrap: wrap; gap: 18px; }
      .kch-blog .sidebar-post-card { flex: 1; min-width: 260px; }
    }
    @media (max-width: 820px) {
      .kch-blog .nav-links, .kch-blog .nav-cta { display: none; }
      .kch-blog .hamburger { display: flex; }
      .kch-blog .mobile-menu { display: block; }
      .kch-blog .container { padding: 0 20px; }
      .kch-blog .post-main { padding: 52px 0 80px; }
      .kch-blog .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
      .kch-blog .cta-banner-action { min-width: unset; }
      .kch-blog .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    }
    @media (max-width: 540px) {
      .kch-blog .sidebar-posts { flex-direction: column; }
      .kch-blog .sidebar-post-card { min-width: unset; }
    }
  
    /* MOBILE: full-width buttons */
    @media (max-width: 820px) {
      .kch-blog .btn { width: 100%; justify-content: center; }
    }


/* ============ PRAWO RODZINNE (home) ============ */
.family-section { background: var(--bg-alt); }
.family-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: stretch; }
.family-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 100%; box-shadow: var(--shadow-lg); }
.family-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.family-photo::after { content: ''; position: absolute; bottom: -28px; left: -28px; width: 110px; height: 110px; background: var(--gold); border-radius: 50%; z-index: -1; }
.family-main { display: flex; flex-direction: column; }
.family-main h2 { font-size: clamp(2.2rem, 3.8vw, 3rem); margin-bottom: 14px; }
.family-lead { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 26px; max-width: 560px; }
.family-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.family-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.family-item:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.family-item .family-icon { width: 46px; height: 46px; background: var(--gold-soft); color: var(--gold-hover); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.family-item .family-icon [data-lucide] { width: 22px; height: 22px; }
.family-item h3 { font-size: 1.08rem; margin-bottom: 8px; line-height: 1.3; }
.family-item p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.6; }
.family-main .btn { align-self: flex-start; }
@media (max-width: 820px) {
  .family-grid { grid-template-columns: 1fr; gap: 40px; }
  .family-photo { aspect-ratio: 4/5; min-height: unset; width: 100%; max-width: 100%; }
  .family-grid { justify-items: stretch; }
  .family-grid > * { min-width: 0; }
  .family-main .btn { white-space: normal; text-align: center; }
}
@media (max-width: 480px) { .family-cards { grid-template-columns: 1fr; } }

/* ============ DOŚWIADCZENIE / przesuwane panele (rodzinne) ============ */
.exp-section { background: var(--bg-alt); }
.exp-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1160px; margin: 0 auto 28px; }
.exp-tab { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; cursor: pointer; text-align: left; font-family: 'Playfair Display', serif; font-size: 0.98rem; line-height: 1.25; color: var(--text); transition: background 0.25s, color 0.25s, border-color 0.25s; }
.exp-tab .exp-tab-num { font-size: 0.82rem; color: var(--gold-hover); letter-spacing: 0.08em; font-weight: 600; }
.exp-tab.active { background: var(--black); color: #fff; border-color: var(--black); }
.exp-tab.active .exp-tab-num { color: var(--gold); }
.exp-panels { display: flex; gap: 12px; height: 560px; max-width: 1160px; margin: 0 auto; }
.exp-panel { position: relative; flex: 1; min-width: 0; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-md); transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.exp-panel.active { flex: 4.6; }
.exp-panel img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.exp-panel::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(20,20,22,0.25) 0%, rgba(20,20,22,0.55) 55%, rgba(20,20,22,0.9) 100%); transition: background 0.4s; }
.exp-panel.active::after { background: linear-gradient(105deg, rgba(20,20,22,0.92) 0%, rgba(20,20,22,0.78) 45%, rgba(20,20,22,0.35) 100%); }
.exp-panel-label { position: absolute; z-index: 3; bottom: 28px; left: 50%; transform: translateX(-50%) rotate(180deg); writing-mode: vertical-rl; color: #fff; font-family: 'Playfair Display', serif; font-size: 1.15rem; letter-spacing: 0.02em; white-space: nowrap; transition: opacity 0.3s; }
.exp-panel.active .exp-panel-label { opacity: 0; pointer-events: none; }
.exp-panel-num { position: absolute; z-index: 3; top: 22px; right: 24px; font-family: 'Playfair Display', serif; color: rgba(255,255,255,0.85); font-size: 0.95rem; letter-spacing: 0.1em; }
.exp-content { position: absolute; z-index: 3; left: 0; bottom: 0; padding: 38px 42px; max-width: 600px; color: #fff; opacity: 0; transform: translateY(12px); transition: opacity 0.35s 0.12s, transform 0.35s 0.12s; pointer-events: none; }
.exp-panel.active .exp-content { opacity: 1; transform: none; pointer-events: auto; }
.exp-content h3 { color: #fff; font-size: 1.42rem; margin-bottom: 20px; line-height: 1.25; }
.exp-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.exp-points li { display: flex; align-items: flex-start; }
.exp-points .exp-txt { font-size: 0.92rem; line-height: 1.5; color: rgba(255,255,255,0.9); }
.exp-points .exp-txt strong { display: block; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px; color: var(--gold); }
.exp-note { max-width: 1160px; margin: 26px auto 0; text-align: center; font-size: 0.82rem; line-height: 1.6; color: var(--text-light); }
.family-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.family-cta .btn { flex-shrink: 0; }
.family-cta-note { flex: 1 1 180px; font-size: 0.84rem; line-height: 1.5; color: var(--text-mid); margin: 0; }
@media (max-width: 1080px) {
  .exp-tabs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .family-cta { gap: 14px; }
  .family-cta-note { flex-basis: 100%; text-align: center; }
  .exp-tabs { display: none; }
  .exp-panels { flex-direction: column; height: auto; gap: 16px; }
  .exp-panel, .exp-panel.active { flex: none; height: auto; min-height: 420px; }
  .exp-panel::after, .exp-panel.active::after { background: linear-gradient(180deg, rgba(20,20,22,0.35) 0%, rgba(20,20,22,0.75) 55%, rgba(20,20,22,0.95) 100%); }
  .exp-panel-label { display: none; }
  .exp-content { position: relative; opacity: 1; transform: none; pointer-events: auto; max-width: 100%; padding: 32px 26px; }
}

/* Trustindex widget: przytnij slider, nie wystawaj na mobile */
.reviews-trustindex { max-width: 100%; overflow: hidden; }
.reviews-trustindex .ti-widget { max-width: 100%; }

/* =========================================================
 *  Podstrony informacyjne (polityka prywatności) + 404
 * ========================================================= */

.legal-hero {
  background: var(--black);
  padding: 160px 0 64px;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  margin: 16px 0 0;
}

.legal-main {
  padding: 72px 0 96px;
  background: var(--white);
}
.legal-content {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.legal-content p { margin: 0 0 18px; }
.legal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--black);
  margin: 40px 0 12px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content a { color: var(--text); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-hover); }

/* Modal polityki w stopce — te same style treści, jedno źródło HTML. */
#privacyModal .privacy-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}
#privacyModal .privacy-body p { margin: 0 0 16px; }
#privacyModal .privacy-body p:last-child { margin-bottom: 0; }
#privacyModal .privacy-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 24px 0 10px;
}
#privacyModal .privacy-more {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
#privacyModal .privacy-more a { color: var(--text-mid); text-decoration: underline; }
#privacyModal .privacy-more a:hover { color: var(--gold-hover); }

/* 404 — hero na pełny ekran, treść wyśrodkowana. */
.kch-404-hero .hero-inner {
  align-items: center;
  text-align: center;
}
.kch-404-hero .hero-text {
  max-width: 720px;
}
.kch-404-hero .hero-badge { margin-left: auto; margin-right: auto; }
.kch-404-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 20px;
}
.kch-404-hero .lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 560px;
}
.kch-404-hero .hero-ctas { justify-content: center; }

@media (max-width: 768px) {
  .legal-hero { padding: 128px 0 48px; }
  .legal-main { padding: 48px 0 72px; }
}

.legal-hero .section-tag {
  color: var(--gold);
  background: rgba(232,197,71,0.12);
  border-color: rgba(232,197,71,0.35);
}

/* =========================================================
 *  Banner zgody na cookies
 * ========================================================= */

.kch-cookies {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.kch-cookies.open { opacity: 1; transform: none; }
.kch-cookies[hidden] { display: none; }

.kch-cookies-inner {
  max-width: 780px;
  margin: 0 auto;
  background: var(--black);
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(26,26,26,0.28);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.kch-cookies-txt {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}
.kch-cookies-txt a {
  color: var(--gold);
  text-decoration: underline;
}
.kch-cookies-txt a:hover { color: var(--gold-hover); }

.kch-cookies-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.kch-cookies-btns .btn {
  padding: 12px 22px;
  font-size: 0.86rem;
}
.kch-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.28);
}
.kch-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}

@media (max-width: 720px) {
  .kch-cookies { left: 12px; right: 12px; bottom: 12px; }
  .kch-cookies-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }
  .kch-cookies-btns .btn { flex: 1; justify-content: center; }
}
