/* ═══════════════════════════════════════════════
   CoachingAgency — Design System & Styles
   Coach: Julia Chilmon
   Palette: Black, White, Beige, Warm Brown
   ═══════════════════════════════════════════════ */

/* ──────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
   ────────────────────────────────────────────── */
:root {
    /* ── Kolory główne ── */
    --c-black:        #1a1a1a;
    --c-black-deep:   #0d0d0d;
    --c-white:        #ffffff;
    --c-off-white:    #faf9f7;
    --c-cream:        #f5f0eb;
    --c-beige:        #e8ddd3;
    --c-beige-dark:   #d4c5b5;
    --c-brown:        #a68b6b;
    --c-brown-dark:   #8b7355;
    --c-brown-deep:   #6b5740;
    --c-warm-gray:    #9a9590;
    --c-text:         #2c2c2c;
    --c-text-light:   #6b6560;
    --c-text-muted:   #9a9590;
    --c-border:       #e8e2dc;
    --c-border-light: #f0ebe6;

    /* ── Overlay ── */
    --overlay-dark:   rgba(13, 13, 13, 0.6);
    --overlay-light:  rgba(26, 26, 26, 0.03);

    /* ── Typografia ── */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;

    /* ── Rozmiary tekstu (fluid) ── */
    --text-xs:    clamp(0.75rem, 0.7rem + 0.2vw, 0.813rem);    /* ~12-13px */
    --text-sm:    clamp(0.813rem, 0.77rem + 0.2vw, 0.875rem);   /* ~13-14px */
    --text-base:  clamp(0.938rem, 0.9rem + 0.2vw, 1rem);        /* ~15-16px */
    --text-md:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem);      /* ~16-18px */
    --text-lg:    clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);    /* ~18-20px */
    --text-xl:    clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);       /* ~20-24px */
    --text-2xl:   clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);       /* ~24-36px */
    --text-3xl:   clamp(2rem, 1.5rem + 2.5vw, 3rem);            /* ~32-48px */
    --text-4xl:   clamp(2.5rem, 1.8rem + 3.5vw, 4rem);          /* ~40-64px */
    --text-hero:  clamp(2.75rem, 2rem + 4vw, 5rem);             /* ~44-80px */

    /* ── Spacing ── */
    --space-xs:   0.5rem;     /* 8px */
    --space-sm:   0.75rem;    /* 12px */
    --space-md:   1rem;       /* 16px */
    --space-lg:   1.5rem;     /* 24px */
    --space-xl:   2rem;       /* 32px */
    --space-2xl:  3rem;       /* 48px */
    --space-3xl:  4rem;       /* 64px */
    --space-4xl:  6rem;       /* 96px */
    --space-5xl:  8rem;       /* 128px */

    --section-py: clamp(5rem, 4rem + 5vw, 9rem);

    /* ── Layout ── */
    --container-width: 1200px;
    --container-narrow: 800px;
    --container-padding: clamp(1.25rem, 1rem + 2vw, 3rem);

    /* ── Borders ── */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-full: 9999px;

    /* ── Shadows ── */
    --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md:  0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg:  0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl:  0 20px 60px rgba(0, 0, 0, 0.1);

    /* ── Transitions ── */
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration:    0.3s;
    --duration-lg: 0.6s;

    /* ── Z-index ── */
    --z-behind:  -1;
    --z-base:    1;
    --z-dropdown: 100;
    --z-sticky:  200;
    --z-overlay: 300;
    --z-modal:   400;
    --z-toast:   500;
}

/* ──────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 100%; /* 16px base */
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-white);
    overflow-x: hidden;
}

/* Blokuj scroll gdy mobile menu otwarte */
body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease-smooth);
}

ul, ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font: inherit;
}

::selection {
    background-color: var(--c-brown);
    color: var(--c-white);
}

/* ──────────────────────────────────────────────
   TYPOGRAPHY
   ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--c-black);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-md); }

p {
    margin-bottom: var(--space-md);
    color: var(--c-text-light);
}

p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────────
   LAYOUT: CONTAINER
   ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: 1400px;
}

/* ──────────────────────────────────────────────
   SECTION BASE
   ────────────────────────────────────────────── */
.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    position: relative;
}

.section--cream {
    background-color: var(--c-cream);
}

.section--beige {
    background-color: var(--c-beige);
}

.section--dark {
    background-color: var(--c-black);
    color: var(--c-off-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--c-white);
}

.section--dark p {
    color: var(--c-beige-dark);
}

/* ── Section Header (nagłówek sekcji) ── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-brown);
    margin-bottom: var(--space-md);
}

.section-header__title {
    margin-bottom: var(--space-lg);
}

.section-header__line {
    width: 60px;
    height: 1px;
    background-color: var(--c-brown);
    margin: 0 auto var(--space-lg);
}

.section-header__description {
    font-size: var(--text-md);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAVIGATION — PRO, FLUID, RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Layout tokens (fallback jeśli nie masz) */
:root{
  --header-max: 1280px;
  --header-pad-x: clamp(16px, 3vw, 28px);
  --header-h: 74px;
  --header-h-scrolled: 62px;
}

/* Header base */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: transparent;
  transition:
    background-color .35s var(--ease-smooth),
    backdrop-filter .35s var(--ease-smooth),
    box-shadow .35s var(--ease-smooth),
    transform .25s var(--ease-smooth);
}

/* pełna szerokość + kontrola max-width niezależnie od .container */
.site-header__wrap{
  width: 100%;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
}

.site-header__inner{
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | nav | hamburger */
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
}

/* Scrolled state */
.site-header.is-scrolled{
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.site-header.is-scrolled .site-header__inner{
  min-height: var(--header-h-scrolled);
}

/* Logo */
.site-logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: calc(var(--z-overlay) + 1);
  text-decoration: none;
}

.site-logo__text{
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color .25s var(--ease-smooth);
}

.site-logo__dot{ color: var(--c-brown); }

.site-logo__image{
  height: 44px;
  width: auto;
  display: block;
  transition: filter .25s var(--ease-smooth);
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end; /* menu + cta do prawej */
  gap: clamp(14px, 2vw, 22px);
}

.nav__main{ display: flex; align-items: center; }

.nav__list{
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  transition: color .25s var(--ease-smooth), opacity .25s var(--ease-smooth);
  opacity: .92;
  white-space: nowrap;
}

.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom: 6px;
  width:0;
  height:1px;
  background: currentColor;
  transition: width .25s var(--ease-out);
  opacity: .85;
}

.nav__link:hover{ opacity: 1; }
.nav__link:hover::after,
.nav__item--active .nav__link::after{ width: 100%; }

.nav__cta{
  display: inline-flex;
  align-items: center;
  margin-left: clamp(6px, 1vw, 10px);
}

/* ══════════════════════════════════════════════
   PAGE HERO — KOMPLETNA WERSJA
   ══════════════════════════════════════════════ */
.page-hero {
    position: relative;
    overflow: hidden;
}

/* Standard: ciemny gradient (podstrony bez zdjęcia) */
.page-hero--standard {
    padding-top: calc(80px + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    background-color: var(--c-black);
    background-image: linear-gradient(
        135deg,
        var(--c-black-deep) 0%,
        #2c2420 40%,
        #3d2e22 70%,
        var(--c-black) 100%
    );
}

/* Tall: z obrazkiem w tle (O mnie) */
.page-hero--tall {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding-top: calc(80px + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background-color: var(--c-black);
}

/* Article: ciemne tło, wycentrowane (blog single) */
.page-hero--article {
    padding-top: calc(80px + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    text-align: center;
    background-color: var(--c-black);
    background-image: linear-gradient(
        135deg,
        var(--c-black-deep) 0%,
        #2c2420 50%,
        var(--c-black) 100%
    );
}

/* ── Hero background (obrazek) ── */
.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* ── Hero treść ── */
.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero__content--center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-beige);
    margin-bottom: var(--space-md);
}

.page-hero__title {
    font-size: var(--text-3xl);
    color: var(--c-white);
    line-height: 1.2;
    margin: 0;
}

.page-hero--tall .page-hero__title {
    font-size: var(--text-4xl);
}

.page-hero__description {
    font-size: var(--text-md);
    color: var(--c-beige-dark);
    margin-top: var(--space-lg);
    line-height: 1.7;
}

/* ── Article hero specifics ── */
.page-hero--article .blog-card__meta {
    color: var(--c-beige-dark);
}

.page-hero--article .blog-card__meta a {
    color: var(--c-beige);
}

.page-hero--article .blog-card__category {
    color: var(--c-beige) !important;
}

/* ══════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    flex-wrap: wrap;
}

/* Inside hero (ciemne tło) */
.breadcrumbs--hero {
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.breadcrumbs--hero a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease-smooth);
}

.breadcrumbs--hero a:hover {
    color: var(--c-white);
}

.breadcrumbs--hero .breadcrumbs__sep {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs--hero .breadcrumbs__current {
    color: var(--c-beige);
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   MOBILE NAVIGATION
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: 0;
        background-color: rgba(10, 10, 10, 0.98); /* Ciemniejsze dla lepszego kontrastu */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Zmienione z center - więcej miejsca */
        padding-top: calc(70px + 3rem); /* Więcej paddingu na górze */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out);
        z-index: 9998; /* Pod hamburgerem */
        overflow-y: auto; /* DODANE - przewijanie! */
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 0.5rem; /* Mniejszy gap dla więcej przestrzeni */
        width: 100%;
        max-width: 500px;
        padding: 0 2rem;
    }

    /* W mobile menu — BARDZO WYRAŹNE BIAŁE LINKI */
    .nav.is-open .nav__link {
        display: block;
        width: 100%;
        font-size: 1.25rem; /* Większe */
        font-weight: 600; /* Grubsze */
        color: #ffffff !important;
        letter-spacing: 0.03em;
        padding: 1rem 1.5rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Cień dla kontrastu */
    }

    .nav.is-open .nav__link:hover,
    .nav.is-open .nav__item--active .nav__link {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    }

    .nav__cta {
        margin-left: 0;
        margin-top: 2rem;
        margin-bottom: 2rem; /* Dodane - więcej miejsca na dole */
        width: 100%;
        max-width: 400px;
        padding: 0 2rem;
    }

    .nav.is-open .nav__cta .btn {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 700;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.15) !important;
        padding: 1.25rem 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .nav.is-open .nav__cta .btn:hover {
        background: #ffffff !important;
        color: #111 !important;
        border-color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    /* Hamburger w mobile menu — zawsze biały (bo overlay czarny) */
    .hamburger.is-active .hamburger__line {
        background-color: var(--c-white) !important;
    }
    
    /* Zablokuj scroll gdy menu otwarte */
    body:has(.nav.is-open) {
        overflow: hidden;
    }

    /* Page hero responsive */
    .page-hero--standard {
        padding-top: calc(70px + var(--space-3xl));
        padding-bottom: var(--space-2xl);
    }

    .page-hero--tall {
        min-height: 40vh;
        padding-top: calc(70px + var(--space-2xl));
    }

    .page-hero--article {
        padding-top: calc(70px + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }

    .page-hero__title {
        font-size: var(--text-2xl);
    }

    .page-hero--tall .page-hero__title {
        font-size: var(--text-3xl);
    }
}

/* ──────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

/* Primary: czarny z beżowym hover */
.btn--primary {
    background-color: var(--c-black);
    color: var(--c-white);
    border: 1px solid var(--c-black);
}

.btn--primary:hover {
    background-color: var(--c-brown-deep);
    border-color: var(--c-brown-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Secondary: przezroczysty z obramowaniem */
.btn--secondary {
    background-color: transparent;
    color: var(--c-black);
    border: 1px solid var(--c-black);
}

.btn--secondary:hover {
    background-color: var(--c-black);
    color: var(--c-white);
    transform: translateY(-2px);
}

/* Ghost: na ciemnym tle */
.btn--ghost {
    background-color: transparent;
    color: var(--c-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background-color: var(--c-white);
    color: var(--c-black);
    border-color: var(--c-white);
}

/* Accent: brązowy */
.btn--accent {
    background-color: var(--c-brown);
    color: var(--c-white);
    border: 1px solid var(--c-brown);
}

.btn--accent:hover {
    background-color: var(--c-brown-deep);
    border-color: var(--c-brown-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Rozmiary */
.btn--sm {
    padding: 0.7rem 1.5rem;
    font-size: var(--text-xs);
}

.btn--lg {
    padding: 1.2rem 3rem;
    font-size: var(--text-sm);
}

/* ──────────────────────────────────────────────
   TEXT LINK (delikatny CTA)
   ────────────────────────────────────────────── */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-brown-dark);
    border-bottom: 1px solid var(--c-brown);
    padding-bottom: 2px;
    transition: all var(--duration) var(--ease-smooth);
}

.text-link:hover {
    color: var(--c-black);
    border-color: var(--c-black);
    gap: var(--space-sm);
}

.text-link__arrow {
    transition: transform var(--duration) var(--ease-out);
    font-size: 1.1em;
}

.text-link:hover .text-link__arrow {
    transform: translateX(4px);
}

/* ──────────────────────────────────────────────
   HEADER / NAVIGATION
   ────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    padding: var(--space-lg) 0;
    transition: all var(--duration-lg) var(--ease-smooth);
}

/* Po scrollu */
.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: 0 1px 0 var(--c-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Logo ── */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: var(--z-overlay);
}

.site-logo__text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--c-black);
    letter-spacing: -0.02em;
}

.site-logo__dot {
    color: var(--c-brown);
}

/* Header na hero (białe logo) */
.site-header:not(.is-scrolled) .site-logo__text {
    color: var(--c-black);
}

/* ── Nav ── */
.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--duration) var(--ease-smooth);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-brown);
    transition: width var(--duration) var(--ease-out);
}

.nav__link:hover,
.nav__item--active .nav__link {
    color: var(--c-black);
}

.nav__link:hover::after,
.nav__item--active .nav__link::after {
    width: 100%;
}


/* ── Hamburger (mobile) - POPRAWIONY ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    width: 36px; /* Zwiększone z 28px */
    height: 36px;
    padding: 8px 4px; /* Więcej paddingu */
    z-index: 9999; /* Bardzo wysoki z-index */
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05); /* Subtelne tło dla kontrastu */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.hamburger__line {
    width: 100%;
    height: 3px; /* Zwiększone z 1.5px - LEPIEJ WIDOCZNE */
    border-radius: 3px;
    background-color: var(--c-black);
    transition: all var(--duration) var(--ease-out);
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Cień dla lepszej widoczności */
}

.site-header:not(.is-scrolled) .hamburger {
    background: rgba(255, 255, 255, 0.1);
}

.site-header:not(.is-scrolled) .hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header:not(.is-scrolled) .hamburger__line {
    background-color: var(--c-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Ciemniejszy cień na jasnym tle */
}

/* Hamburger aktywny (X) - POPRAWIONY */
.hamburger.is-active {
    background: rgba(255, 255, 255, 0.15) !important;
}

.hamburger.is-active .hamburger__line {
    background-color: #ffffff !important; /* Zawsze białe X */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(10px) rotate(45deg); /* Dostosowane do gap 7px */
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg); /* Dostosowane do gap 7px */
}

/* ──────────────────────────────────────────────
   HERO (SPLIT PRO) — LIGHT VERSION
   ────────────────────────────────────────────── */
.hero.hero--split{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;

  /* jasne premium tło */
  background: #f6f3ef;
  padding-top: clamp(72px, 9vh, 120px);
}

/* Background */
.hero__background{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
}

/* Blur tła: jasne, delikatne */
.hero__bg--blur{
  position:absolute;
  inset:-14%;
  width:128%;
  height:128%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.06);

  filter: blur(44px) saturate(1.08) brightness(1.12);
  opacity:.55;
}

/* Main image w tle: praktycznie wyłączone */
.hero__bg--main{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 30%;
  opacity:.05;
}

/* miękki gradient pod czytelność (bez czerni) */
.hero__background--blur::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(70% 70% at 25% 42%,
      rgba(255,255,255,.75) 0%,
      rgba(246,243,239,.78) 55%,
      rgba(246,243,239,.95) 100%),
    linear-gradient(to right,
      rgba(246,243,239,.96) 0%,
      rgba(246,243,239,.82) 45%,
      rgba(246,243,239,.70) 70%,
      rgba(246,243,239,.86) 100%);
}

/* Overlay (Twoje inline) – w wersji jasnej wygaszamy */
.hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:.12; /* było pod dark – tu musi być minimalne */
}

/* Layout */
.hero__inner{
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 40px) var(--container-padding);

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}

/* Content (left) — ciemna typografia */
.hero__content{
  text-align: left;
  max-width: 640px;
}

/* label */
.hero__label{
  display:inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(20,20,20,.55);
  margin-bottom: 14px;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp .8s var(--ease-out) .18s forwards;
}

/* title */
.hero__title{
  font-size: var(--text-hero);
  color: #111;
  line-height: 1.03;
  margin-bottom: 16px;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0,0,0,.08);

  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp .8s var(--ease-out) .32s forwards;
}

.hero__title em{
  font-style: italic;
  color: #8a6a43; /* beż/brąz premium */
}

/* description */
.hero__description{
  font-size: var(--text-lg);
  color: rgba(17,17,17,.70);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 26px;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp .8s var(--ease-out) .48s forwards;
}

/* CTA */
.hero__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp .8s var(--ease-out) .64s forwards;
}

/* primary */
.hero__actions .btn--accent{
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
}

/* secondary ghost — jasne */
.hero__actions .btn--ghost{
  background: rgba(255,255,255,.60);
  border-color: rgba(0,0,0,.12);
  color: #111;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Visual */
.hero__visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  min-height: 620px;
}

/* wspólne */
.hero__decor{
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* duży organiczny shape za zdjęciem */
.hero__decor--blob{
  width: clamp(260px, 32vw, 380px);
  height: clamp(320px, 38vw, 460px);
  top: 24px;
  right: -24px;
  border-radius: 42% 58% 46% 54% / 52% 38% 62% 48%;
  background: linear-gradient(145deg, rgba(209, 193, 171, .68), rgba(190, 168, 140, .34));
  box-shadow:
    0 30px 80px rgba(120, 96, 72, .14);
  transform: rotate(-12deg);
  opacity: 1;
}

/* cienka ramka wychodząca zza zdjęcia */
.hero__decor--frame{
  border-color: rgba(176, 152, 124, .52);
  width: clamp(240px, 30vw, 340px);
  height: clamp(320px, 38vw, 430px);
  left: -26px;
  bottom: 34px;
  border: 1.5px solid rgba(176, 152, 124, .38);
  border-radius: 34px;
  transform: rotate(8deg);
}

/* drugi akcent dla warstwowości */
.hero__decor--accent{
  width: 140px;
  height: 140px;
  right: 18px;
  bottom: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(221, 206, 186, .9), rgba(221, 206, 186, .32) 58%, rgba(221, 206, 186, 0) 72%);
  filter: blur(2px);
  opacity: 1;
}

/* zdjęcie */
.hero__portrait{
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
  aspect-ratio: 4 / 5;
  overflow: hidden;

  background-image: var(--hero-img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 80%;
  background-color: rgba(255,255,255,.55);

  box-shadow:
    0 26px 70px rgba(0,0,0,.14),
    inset 0 0 0 1px rgba(0,0,0,.08);
}

/* subtelna aura */
.hero__portrait::before{
  content:"";
  position:absolute;
  inset:-12%;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.08) brightness(1.05);
  opacity: .16;
  transform: scale(1.06);
  z-index:-1;
}

/* highlight */
.hero__portrait::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(80% 60% at 24% 18%, rgba(255,255,255,.24), rgba(255,255,255,0) 56%);
  pointer-events:none;
}

.hero__portrait{
  transition: transform var(--duration-lg) var(--ease-out);
  will-change: transform;
}

.hero:hover .hero__portrait{
  transform: translateY(-4px) scale(1.01);
}

.hero__scroll{
  display: none;
}

@media (max-width: 991px){
  .hero__visual{
    min-height: 520px;
  }

  .hero__decor--blob{
    width: 280px;
    height: 340px;
    right: -12px;
    top: 12px;
  }

  .hero__decor--frame{
    width: 220px;
    height: 300px;
    left: -14px;
    bottom: 22px;
  }

  .hero__decor--accent{
    width: 110px;
    height: 110px;
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 640px){
  .hero__portrait{
    width: min(360px, 100%);
    border-radius: 24px;
  }

  .hero__decor--blob{
    width: 220px;
    height: 280px;
    right: -8px;
    top: 10px;
  }

  .hero__decor--frame{
    width: 180px;
    height: 240px;
    left: -10px;
    bottom: 18px;
    border-radius: 24px;
  }

  .hero__decor--accent{
    width: 84px;
    height: 84px;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero__portrait{
    transition: none;
  }

  .hero:hover .hero__portrait{
    transform: none;
  }
}

/* ──────────────────────────────────────────────
   ABOUT SECTION
   ────────────────────────────────────────────── */
.about {
    background:
        radial-gradient(circle at top left, rgba(232, 221, 211, 0.28) 0%, rgba(232, 221, 211, 0) 35%),
        linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
    overflow: clip;
}

.about__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
}

.about__visual {
    position: relative;
}

.about__visual-inner {
    position: relative;
    max-width: 560px;
    padding: 1.5rem 0 3rem 1.5rem;
}

.about__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 38%;
    border-top: 1px solid rgba(176, 149, 118, 0.55);
    border-left: 1px solid rgba(176, 149, 118, 0.55);
    pointer-events: none;
}

.about__shape {
    position: absolute;
    right: -2rem;
    top: 3rem;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 201, 184, 0.35) 0%, rgba(218, 201, 184, 0) 72%);
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
}

.about__media {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #efe7de;
    box-shadow: 0 24px 60px rgba(31, 24, 18, 0.10);
}

.about__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 18%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(26,26,26,0.05) 100%);
    pointer-events: none;
}

.about__img,
.about__placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.about__img {
    object-fit: cover;
    transition: transform var(--duration-lg) var(--ease-out);
}

.about__media:hover .about__img {
    transform: scale(1.02);
}

.about__placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--c-beige) 0%, var(--c-cream) 100%);
    color: var(--c-brown-deep);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.04em;
}

.about__badge {
    position: absolute;
    left: 2.25rem;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 240px;
    max-width: calc(100% - 4rem);
    padding: 1rem 1.125rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 201, 191, 0.9);
    box-shadow: 0 14px 34px rgba(30, 24, 20, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about__badge-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.about__badge-title {
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--c-black);
    font-weight: 600;
}

.about__quote-card,
.about__quote-mark {
    display: none !important;
}

.about__quote-card p {
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: var(--text-sm);
    line-height: 1.8;
}

.about__content {
    max-width: 680px;
    padding-top: 2.5rem;
}

.about__eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.about__eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--c-brown-dark);
}

.about__eyebrow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--c-border) 0%, transparent 100%);
}

.about__header {
    margin-bottom: var(--space-xl);
}

.about__welcome {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 1.3rem + 1vw, 2.8rem);
    line-height: 1;
    color: var(--c-brown-dark);
}

.about__title {
    margin: 0;
    font-size: clamp(3rem, 4.2vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    max-width: 9ch;
}

.about__story {
    position: relative;
    display: grid;
    gap: var(--space-md);
    max-width: 60ch;
    margin-bottom: var(--space-2xl);
    padding-left: 1.25rem;
}

.about__story::before {
    content: '';
    position: absolute;
    top: 0.45rem;
    left: 0;
    width: 2px;
    height: calc(100% - 0.9rem);
    background: linear-gradient(180deg, var(--c-brown) 0%, rgba(166,139,107,0.14) 100%);
}

.about__story p:first-child {
    font-size: clamp(1.14rem, 1rem + 0.35vw, 1.5rem);
    line-height: 1.85;
    color: var(--c-black);
}

.about__story p:not(:first-child) {
    color: var(--c-text-light);
    font-size: var(--text-md);
    line-height: 1.95;
}

.about__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-2xl);
    align-items: start;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--c-border);
}

.about__credentials-wrap {
    min-width: 0;
}

.about__microtitle {
    margin: 0 0 var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.about__credentials {
    display: grid;
    gap: 0.95rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about__credential {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    color: var(--c-text);
    font-size: var(--text-sm);
    line-height: 1.75;
}

.about__credential-dot {
    width: 0.625rem;
    height: 0.625rem;
    flex: 0 0 0.625rem;
    margin-top: 0.5rem;
    border-radius: 50%;
    background: var(--c-brown);
}

.about__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    min-width: 220px;
}

.about__cta {
    font-weight: 600;
}

.about__video-trigger {
    margin-top: 0;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(3rem, 5vw, 4.5rem);
    background: var(--c-border);
    border: 1px solid var(--c-border);
}

.about__stat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    padding: clamp(1.4rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.92);
}

.about__stat-value {
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2vw + 1rem, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--c-black);
}

.about__stat-label {
    margin: 0;
    font-size: var(--text-xs);
    line-height: 1.7;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

@media (max-width: 1199px) {
    .about__layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about__visual-inner {
        max-width: 640px;
    }

    .about__content {
        max-width: 100%;
    }

    .about__title {
        max-width: none;
    }

    .about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .about__visual-inner {
        padding: 1rem 0 1.25rem 1rem;
    }

    .about__frame {
        width: 38%;
        height: 16%;
    }

    .about__shape {
        right: -1rem;
        top: 2rem;
        width: 120px;
        height: 120px;
    }

    .about__badge {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }

    .about__content {
        padding-top: 0;
    }

    .about__title {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
    }

    .about__story {
        padding-left: 1rem;
    }

    .about__quote-card {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .about__eyebrow-line {
        display: none;
    }

    .about__story::before {
        left: -0.85rem;
    }

    .about__meta {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__actions {
        min-width: 0;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .about__stat-card {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about__img {
        transition: none;
    }

    .about__media:hover .about__img {
        transform: none;
    }
}

/* ──────────────────────────────────────────────
   SERVICE DETAIL PAGES — POLISHED PREMIUM
   ────────────────────────────────────────────── */

.service-detail {
    --service-bg: #faf7f3;
    --service-bg-soft: #f6f2ed;
    --service-card-bg: rgba(255, 255, 255, 0.88);
    --service-border: rgba(205, 193, 180, 0.68);
    --service-border-strong: rgba(170, 146, 118, 0.46);
    --service-shadow: 0 28px 74px rgba(31, 24, 18, 0.09);
    --service-soft-shadow: 0 18px 42px rgba(31, 24, 18, 0.055);
    --service-line: rgba(205, 193, 180, 0.7);

    position: relative;
    background: var(--service-bg);
    color: var(--c-text);
}

.service-detail * {
    box-sizing: border-box;
}

.service-detail a {
    text-underline-offset: 0.22em;
}

/* Global section rhythm inside service template */

.service-detail .section {
    padding-block: clamp(5rem, 7vw, 7.5rem);
}

.service-detail__quick-nav {
    position: sticky;
    top: var(--header-height, 72px);
    z-index: 40;
    background: rgba(250, 247, 243, 0.88);
    border-block: 1px solid rgba(205, 193, 180, 0.54);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.service-detail__quick-nav-inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    overflow-x: auto;
    scrollbar-width: none;
}

.service-detail__quick-nav-inner::-webkit-scrollbar {
    display: none;
}

.service-detail__quick-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 3.4rem;
    color: rgba(26, 26, 26, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.service-detail__quick-nav a:hover,
.service-detail__quick-nav a:focus-visible {
    color: var(--c-black);
}

.service-detail__faq {
    background: #fff;
}

.service-detail__faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.service-faq {
    border-top: 1px solid rgba(205, 193, 180, 0.72);
}

.service-faq__item {
    border-bottom: 1px solid rgba(205, 193, 180, 0.72);
}

.service-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 1vw + 1rem, 2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    cursor: pointer;
}

.service-faq__item summary::-webkit-details-marker {
    display: none;
}

.service-faq__item summary::after {
    content: "+";
    color: var(--c-brown);
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.service-faq__item[open] summary::after {
    transform: rotate(45deg);
}

.service-faq__answer {
    padding: 0 0 1.35rem;
}

.service-faq__answer p {
    max-width: 62ch;
    margin: 0;
    color: var(--c-text-light);
    font-size: 1rem;
    line-height: 1.75;
}

.service-mobile-cta {
    display: none;
}

@media (max-width: 767px) {
    .service-mobile-cta {
        position: fixed;
        inset: auto 0 0;
        z-index: 80;
        display: block;
        padding: 0.75rem;
        background: rgba(250, 247, 243, 0.88);
        border-top: 1px solid rgba(205, 193, 180, 0.62);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .service-mobile-cta .btn {
        width: 100%;
        justify-content: center;
    }

    body.is-service-page {
        padding-bottom: 4.25rem;
    }
}

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */

.service-detail__hero {
    position: relative;
    min-height: min(860px, 100svh);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-block: clamp(6rem, 8vw, 8.5rem) clamp(4.25rem, 6vw, 6.5rem);
    background:
        radial-gradient(circle at 76% 10%, rgba(170, 146, 118, 0.16) 0%, rgba(170, 146, 118, 0) 33%),
        radial-gradient(circle at 10% 22%, rgba(228, 216, 203, 0.42) 0%, rgba(228, 216, 203, 0) 36%),
        linear-gradient(180deg, #faf7f3 0%, #f6f2ed 100%);
}

.service-detail__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(170, 146, 118, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 146, 118, 0.065) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
    pointer-events: none;
}

.service-detail__hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    block-size: 1px;
    background: linear-gradient(90deg, transparent, rgba(170, 146, 118, 0.38), transparent);
    pointer-events: none;
}

.service-detail__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.68fr);
    align-items: center;
    gap: clamp(2.5rem, 5.5vw, 6.25rem);
    width: 100%;
}

.service-detail__content {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.service-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 2vw, 2.15rem);
    color: var(--c-text-light);
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.service-detail__back:hover {
    color: var(--c-black);
    transform: translateX(-4px);
}

.service-detail__back:focus-visible,
.service-detail__anchor:focus-visible,
.service-related-card:focus-visible,
.service-detail .btn:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 4px;
}

.service-detail__eyebrow-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.service-detail__eyebrow-row .section-header__label {
    color: var(--c-brown);
}

.service-detail__badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.8rem;
    border: 1px solid rgba(170, 146, 118, 0.34);
    background: rgba(255, 255, 255, 0.58);
    color: var(--c-text-light);
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-detail__number {
    margin: clamp(1.1rem, 2vw, 1.45rem) 0 0.45rem;
    color: rgba(170, 146, 118, 0.5);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: 0.82;
    letter-spacing: -0.08em;
}

.service-detail__title {
    margin: 0;
    max-width: 9.2ch;
    color: var(--c-black);
    font-size: clamp(3.8rem, 7.8vw, 7.65rem);
    line-height: 0.84;
    letter-spacing: -0.075em;
    text-wrap: balance;
}

.service-detail__subtitle {
    max-width: 42rem;
    margin: clamp(1.2rem, 2vw, 1.65rem) 0 1.25rem;
    color: var(--c-text);
    font-size: clamp(1.08rem, 0.75vw + 0.95rem, 1.38rem);
    line-height: 1.62;
}

.service-detail__chips {
    margin-top: 1.15rem;
}

.service-detail__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-top: clamp(1.65rem, 3vw, 2.2rem);
}

.service-detail__primary,
.service-cta__button {
    white-space: nowrap;
}

.service-detail__anchor {
    font-weight: 600;
}

/* Hero visual */

.service-detail__visual {
    position: relative;
    align-self: center;
}

.service-detail__visual::before {
    content: "";
    position: absolute;
    inset: 6% -8% auto auto;
    inline-size: 72%;
    block-size: 72%;
    background: radial-gradient(circle, rgba(170, 146, 118, 0.16), transparent 68%);
    filter: blur(12px);
    pointer-events: none;
}

.service-detail__media {
    position: relative;
    margin: 0;
    min-height: clamp(430px, 54vw, 585px);
    aspect-ratio: 4 / 5.05;
    background: #e9e1d9;
    border: 1px solid var(--service-border);
    box-shadow: var(--service-shadow);
    overflow: hidden;
    isolation: isolate;
}

.service-detail__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0) 40%, rgba(17, 17, 17, 0.58) 100%),
        linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0));
    pointer-events: none;
}

.service-detail__media::after {
    content: "";
    position: absolute;
    inset: 1rem;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.26);
    pointer-events: none;
}

.service-detail__image {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.service-detail__media-caption {
    position: absolute;
    inset: auto 1.25rem 1.25rem;
    z-index: 4;
    display: grid;
    gap: 0.35rem;
    color: #fff;
}

.service-detail__media-caption span {
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.82;
}

.service-detail__media-caption strong {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.05rem);
    line-height: 0.92;
    letter-spacing: -0.052em;
}

.service-detail__summary-card {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -2.25rem 1.25rem 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(205, 193, 180, 0.74);
    box-shadow: 0 18px 44px rgba(31, 24, 18, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.service-detail__summary-item {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    min-width: 0;
}

.service-detail__summary-item + .service-detail__summary-item {
    border-left: 1px solid rgba(205, 193, 180, 0.58);
}

.service-detail__summary-item span {
    color: var(--c-text-light);
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-detail__summary-item strong {
    color: var(--c-black);
    font-size: clamp(0.86rem, 0.55vw + 0.74rem, 1rem);
    line-height: 1.25;
}

/* ──────────────────────────────────────────────
   INTRO
   ────────────────────────────────────────────── */

.service-detail__intro {
    background: #fff;
    scroll-margin-top: 110px;
}

.service-detail__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5.2vw, 5.5rem);
    align-items: start;
}

.service-detail__intro-heading {
    position: sticky;
    top: 110px;
}

.service-detail__section-title {
    margin: 0.75rem 0 0;
    max-width: 12ch;
    color: var(--c-black);
    font-size: clamp(2.6rem, 4.6vw, 5.05rem);
    line-height: 0.92;
    letter-spacing: -0.066em;
    text-wrap: balance;
}

.service-detail__intro-content {
    display: grid;
    gap: 1.55rem;
    padding-top: 0.25rem;
}

.service-detail__text {
    margin: 0;
    max-width: 58ch;
    color: var(--c-text);
    font-size: clamp(1.04rem, 0.7vw + 0.92rem, 1.22rem);
    line-height: 1.78;
}

.service-detail__lead-list {
    display: grid;
    gap: 0.78rem;
}

.service-detail__lead-list p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    margin: 0;
    padding: 0.95rem 1.05rem;
    background: #faf7f3;
    border: 1px solid rgba(205, 193, 180, 0.58);
    color: var(--c-text-light);
    font-size: 0.98rem;
    line-height: 1.62;
}

.service-detail__lead-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 1.45rem;
    block-size: 1.45rem;
    border-radius: 999px;
    background: rgba(170, 146, 118, 0.16);
    color: var(--c-brown);
    font-size: 0.82rem;
    line-height: 1;
}

/* ──────────────────────────────────────────────
   SCOPE CARDS
   ────────────────────────────────────────────── */

.service-detail__blocks {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(170, 146, 118, 0.1), transparent 28%),
        linear-gradient(180deg, #faf7f3 0%, #f6f2ed 100%);
}

.service-detail__section-head {
    max-width: 760px;
    margin-bottom: clamp(2rem, 4vw, 3.1rem);
}

.service-detail__section-head--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    max-width: none;
}

.service-detail__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(1rem, 1.5vw, 1.45rem);
}

.service-info-card {
    position: relative;
    min-height: 100%;
    padding: clamp(1.35rem, 2vw, 2rem);
    background: var(--service-card-bg);
    border: 1px solid var(--service-border);
    box-shadow: var(--service-soft-shadow);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.service-info-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    block-size: 3px;
    background: linear-gradient(90deg, rgba(170, 146, 118, 0), rgba(170, 146, 118, 0.85), rgba(170, 146, 118, 0));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.service-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(170, 146, 118, 0.72);
    box-shadow: 0 24px 56px rgba(31, 24, 18, 0.09);
}

.service-info-card:hover::before {
    opacity: 1;
}

.service-info-card__number {
    position: absolute;
    inset: 1.1rem 1.15rem auto auto;
    color: rgba(170, 146, 118, 0.16);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4.5vw, 4.7rem);
    line-height: 0.8;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.service-info-card__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: var(--c-brown);
    font-size: 0.76rem;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.service-info-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 1rem;
    max-width: 14ch;
    color: var(--c-black);
    font-size: clamp(1.55rem, 0.95vw + 1.1rem, 2.05rem);
    line-height: 1.02;
    letter-spacing: -0.046em;
    text-wrap: balance;
}

.service-info-card__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.86rem;
    margin: 0;
    padding-left: 1.12rem;
    color: var(--c-text-light);
    font-size: 0.98rem;
    line-height: 1.66;
}

.service-info-card__list li::marker {
    color: var(--c-brown);
}

.service-info-card__list--ordered li {
    padding-left: 0.15rem;
}

.service-info-card__list--ordered strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--c-black);
    font-size: 1rem;
}

.service-info-card__list--ordered span {
    display: block;
}

/* ──────────────────────────────────────────────
   PROCESS TIMELINE
   ────────────────────────────────────────────── */

.service-detail__timeline {
    background: #fff;
}

.service-detail__timeline-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.service-process {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--service-line);
}

.service-process__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2vw, 1.55rem);
    padding: clamp(1.25rem, 2.25vw, 1.85rem) 0;
    border-bottom: 1px solid var(--service-line);
}

.service-process__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 3rem;
    block-size: 3rem;
    border: 1px solid rgba(170, 146, 118, 0.4);
    background: #faf7f3;
    color: var(--c-brown);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    line-height: 1;
}

.service-process__item h3 {
    margin: 0 0 0.38rem;
    color: var(--c-black);
    font-size: clamp(1.4rem, 0.9vw + 1rem, 1.95rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.service-process__item p {
    max-width: 58ch;
    margin: 0;
    color: var(--c-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ──────────────────────────────────────────────
   RELATED SERVICES
   ────────────────────────────────────────────── */

.service-detail__related {
    background:
        radial-gradient(circle at 86% 0%, rgba(170, 146, 118, 0.12), transparent 32%),
        linear-gradient(180deg, #faf7f3 0%, #f6f2ed 100%);
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.45rem);
}

.service-related-card {
    position: relative;
    display: grid;
    align-content: end;
    gap: 0.55rem;
    min-height: 178px;
    padding: clamp(1.25rem, 2vw, 1.85rem);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(205, 193, 180, 0.68);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--service-soft-shadow);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-related-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(170, 146, 118, 0.1), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-related-card::after {
    content: "→";
    position: absolute;
    inset: auto 1.25rem 1.25rem auto;
    color: var(--c-brown);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.service-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(170, 146, 118, 0.72);
    box-shadow: 0 24px 54px rgba(31, 24, 18, 0.09);
}

.service-related-card:hover::before {
    opacity: 1;
}

.service-related-card:hover::after {
    transform: translateX(4px);
}

.service-related-card span,
.service-related-card strong,
.service-related-card em {
    position: relative;
    z-index: 1;
}

.service-related-card span {
    color: rgba(170, 146, 118, 0.58);
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.service-related-card strong {
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 2.7vw, 2.75rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.service-related-card em {
    color: var(--c-text-light);
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: normal;
}

/* ──────────────────────────────────────────────
   CTA
   ────────────────────────────────────────────── */

.service-detail__cta {
    background: #fff;
    padding-block: clamp(5rem, 7vw, 7.5rem) clamp(5.5rem, 8vw, 8.5rem);
}

.service-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(1.6rem, 4vw, 3.4rem);
    background:
        radial-gradient(circle at top right, rgba(170, 146, 118, 0.18), transparent 34%),
        linear-gradient(135deg, #f6f2ed 0%, #faf7f3 100%);
    border: 1px solid rgba(205, 193, 180, 0.72);
    box-shadow: 0 22px 58px rgba(31, 24, 18, 0.07);
    overflow: hidden;
}

.service-cta::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(170, 146, 118, 0.15);
    pointer-events: none;
}

.service-cta > * {
    position: relative;
    z-index: 1;
}

.service-cta__title {
    max-width: 13.5ch;
    margin: 0.75rem 0 1rem;
    color: var(--c-black);
    font-size: clamp(2.55rem, 4.7vw, 4.95rem);
    line-height: 0.92;
    letter-spacing: -0.066em;
    text-wrap: balance;
}

.service-cta__text {
    max-width: 58ch;
    margin: 0;
    color: var(--c-text-light);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */

@media (max-width: 1199px) {
    .service-detail__hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
        gap: 3rem;
    }

    .service-detail__summary-card {
        grid-template-columns: 1fr;
    }

    .service-detail__summary-item + .service-detail__summary-item {
        border-left: 0;
        border-top: 1px solid rgba(205, 193, 180, 0.58);
    }

    .service-detail__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .service-detail__hero {
        min-height: auto;
    }

    .service-detail__hero-grid,
    .service-detail__intro-grid,
    .service-detail__timeline-grid,
    .service-cta {
        grid-template-columns: 1fr;
    }

    .service-detail__intro-heading {
        position: static;
    }

    .service-detail__cards {
        grid-template-columns: 1fr;
    }

    .service-detail__visual {
        max-width: 560px;
    }

    .service-detail__media {
        min-height: auto;
    }

    .service-detail__summary-card {
        max-width: 560px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-detail__summary-item + .service-detail__summary-item {
        border-top: 0;
        border-left: 1px solid rgba(205, 193, 180, 0.58);
    }

    .service-cta {
        align-items: start;
    }
}

@media (max-width: 767px) {
    .service-detail .section {
        padding-block: 4rem;
    }

    .service-detail__hero {
        padding-block: 4.5rem 3.75rem;
    }

    .service-detail__back {
        margin-bottom: 1.4rem;
    }

    .service-detail__eyebrow-row {
        gap: 0.65rem;
    }

    .service-detail__title {
        font-size: clamp(3.15rem, 16.5vw, 5.2rem);
        line-height: 0.86;
    }

    .service-detail__number {
        font-size: clamp(2.85rem, 14vw, 4.6rem);
    }

    .service-detail__subtitle {
        font-size: 1.04rem;
        line-height: 1.66;
    }

    .service-detail__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-detail__actions .btn,
    .service-cta .btn {
        inline-size: 100%;
        justify-content: center;
    }

    .service-detail__visual {
        max-width: none;
    }

    .service-detail__media {
        aspect-ratio: 4 / 4.7;
    }

    .service-detail__media::after {
        inset: 0.75rem;
    }

    .service-detail__summary-card {
        grid-template-columns: 1fr;
        margin: -1.45rem 0.85rem 0;
    }

    .service-detail__summary-item + .service-detail__summary-item {
        border-left: 0;
        border-top: 1px solid rgba(205, 193, 180, 0.58);
    }

    .service-detail__section-title {
        font-size: clamp(2.35rem, 11vw, 3.75rem);
        line-height: 0.94;
    }

    .service-detail__intro-content {
        gap: 1.2rem;
    }

    .service-detail__lead-list p {
        padding: 0.9rem;
    }

    .service-info-card {
        padding: 1.3rem;
    }

    .service-process__item {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .service-related-grid {
        grid-template-columns: 1fr;
    }

    .service-detail__section-head--row {
        display: grid;
        align-items: start;
    }

    .service-cta {
        padding: 1.35rem;
    }

    .service-cta::before {
        inset: 0.75rem;
    }
}

@media (max-width: 420px) {
    .service-detail__title {
        font-size: clamp(2.85rem, 17vw, 4.4rem);
    }

    .service-detail__summary-item {
        padding: 0.9rem;
    }

    .service-related-card {
        min-height: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-detail *,
    .service-detail *::before,
    .service-detail *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .service-info-card:hover,
    .service-related-card:hover,
    .service-detail__back:hover {
        transform: none;
    }
}



/* ──────────────────────────────────────────────
   SERVICES SECTION — COVERFLOW / MOBILE TINDER
   ────────────────────────────────────────────── */

.services {
    background:
        radial-gradient(circle at top center, rgba(228, 216, 203, 0.18) 0%, rgba(228, 216, 203, 0) 38%),
        linear-gradient(180deg, #faf7f3 0%, #f6f2ed 100%);
    overflow: visible;
}


.section-header--services {
    max-width: 780px;
    margin-inline: auto;
}

.services__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.5rem;
    margin: clamp(1.75rem, 2.4vw, 2.35rem) 0 1.35rem;
}

.services__lead {
    max-width: 48ch;
    margin: 0;
    color: var(--c-text-light);
    font-size: clamp(1rem, 0.95rem + 0.18vw, 1.08rem);
    line-height: 1.78;
}

.services__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.services__controls[hidden] {
    display: none !important;
}

.services__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 3.25rem;
    block-size: 3.25rem;
    border: 1px solid rgba(170, 146, 118, 0.28);
    background: rgba(255, 255, 255, 0.82);
    color: var(--c-black);
    border-radius: 999px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services__nav:hover {
    transform: translateY(-1px);
    border-color: var(--c-brown);
    background: #fff;
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
}

.services__nav:focus-visible,
.services__dot:focus-visible,
.service-card__link:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 3px;
}

.services__slider {
    position: relative;
    isolation: isolate;
    min-height: 620px;
}


.services__viewport {
    position: relative;
    overflow: visible;
    padding-block: 3rem 3.5rem;
    perspective: 1400px;
    touch-action: pan-y;
    cursor: grab;
}

.services__viewport.is-dragging {
    cursor: grabbing;
}
.services__track {
    position: relative;
    display: grid;
    min-height: 560px;
    transform-style: preserve-3d;
    overflow: visible;
}

.service-card--visual {
    position: relative;
    grid-area: 1 / 1;
    width: min(34vw, 410px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(205, 193, 180, 0.62);
    box-shadow: 0 16px 36px rgba(31, 24, 18, 0.05);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    filter: saturate(0.9);
    transform:
        translateX(0)
        translateZ(-260px)
        scale(0.7)
        rotateY(0deg);
    transition:
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.52s ease,
        filter 0.52s ease,
        box-shadow 0.52s ease,
        border-color 0.52s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    will-change: transform, opacity;
}

.service-card--visual.is-cover-active {
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    filter: none;
    border-color: rgba(170, 146, 118, 0.72);
    box-shadow: 0 28px 60px rgba(31, 24, 18, 0.14);
    transform:
        translateX(0)
        translateZ(90px)
        scale(1)
        rotateY(0deg);
}

.service-card--visual.is-cover-prev {
    z-index: 8;
    opacity: 0.88;
    pointer-events: auto;
    transform:
        translateX(-62%)
        translateZ(-50px)
        scale(0.86)
        rotateY(18deg);
}

.service-card--visual.is-cover-next {
    z-index: 8;
    opacity: 0.88;
    pointer-events: auto;
    transform:
        translateX(62%)
        translateZ(-50px)
        scale(0.86)
        rotateY(-18deg);
}

.service-card--visual.is-cover-prev-2 {
    z-index: 6;
    opacity: 0.48;
    transform:
        translateX(-108%)
        translateZ(-170px)
        scale(0.72)
        rotateY(24deg);
}

.service-card--visual.is-cover-next-2 {
    z-index: 6;
    opacity: 0.48;
    transform:
        translateX(108%)
        translateZ(-170px)
        scale(0.72)
        rotateY(-24deg);
}

.service-card--visual:hover {
    border-color: rgba(170, 146, 118, 0.72);
    box-shadow: 0 30px 64px rgba(31, 24, 18, 0.16);
}

.service-card__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 2.82;
    overflow: hidden;
    background: #e9e1d9;
}

.service-card__image {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card--visual:hover .service-card__image {
    transform: scale(1.05);
}

.service-card__image--placeholder {
    background:
        linear-gradient(135deg, rgba(228, 216, 203, 0.9) 0%, rgba(245, 240, 234, 0.9) 100%);
}

.service-card__media-overlay {
    position: absolute;
    inset: auto 0 0 0;
    block-size: 42%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(17,17,17,0.18) 100%);
    pointer-events: none;
}

.service-card__media-meta {
    position: absolute;
    inset: 1rem 1rem auto 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-card__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.32rem 0.8rem;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--c-black);
    font-size: 0.76rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.1rem 1.15rem 1.15rem;
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin: 0 0 0.8rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.22rem 0.58rem;
    border: 1px solid rgba(198, 184, 170, 0.74);
    background: rgba(255,255,255,0.76);
    color: var(--c-text);
    font-size: 0.71rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.service-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.7rem, 1.15rem + 0.8vw, 2.25rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 10ch;
    text-wrap: balance;
}

.service-card__description {
    margin: 0;
    color: var(--c-text-light);
    font-size: 0.965rem;
    line-height: 1.72;
    max-width: 31ch;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card__bottom {
    margin-top: 1rem;
    padding-top: 0;
}

.service-card__link {
    font-weight: 600;
    font-size: 0.98rem;
}

.services__pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.services__dot {
    inline-size: 0.7rem;
    block-size: 0.7rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(170, 146, 118, 0.24);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        inline-size 0.25s ease;
}

.services__dot.is-active {
    inline-size: 1.8rem;
    background: var(--c-brown);
}

.services__slider,
.services__viewport,
.services__track {
    overflow: visible !important;
}

.service-card--visual.is-cover-active,
.service-card--visual.is-cover-prev,
.service-card--visual.is-cover-next,
.service-card--visual.is-cover-prev-2,
.service-card--visual.is-cover-next-2 {
    visibility: visible;
}

/* Tablet */
@media (max-width: 1199px) {
    .services__track {
        min-height: 520px;
    }

    .service-card--visual {
        width: min(44vw, 390px);
    }

    .service-card--visual.is-cover-prev {
        transform:
            translateX(-48%)
            translateZ(-50px)
            scale(0.86)
            rotateY(16deg);
    }

    .service-card--visual.is-cover-next {
        transform:
            translateX(48%)
            translateZ(-50px)
            scale(0.86)
            rotateY(-16deg);
    }

    .service-card--visual.is-cover-prev-2,
    .service-card--visual.is-cover-next-2 {
        opacity: 0;
        pointer-events: none;
    }
}

/* Mobile — Tinder stack */
@media (max-width: 767px) {
    .services__toolbar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .services .container {
        overflow: hidden;
    }

    .services__controls {
        justify-content: flex-start;
    }

    .services__nav {
        inline-size: 2.9rem;
        block-size: 2.9rem;
    }

    .services__viewport {
        overflow: visible;
        padding: 1.5rem 0.5rem 1rem;
        perspective: none;
        cursor: grab;
        touch-action: pan-y;
    }

    .services__track {
        display: grid;
        gap: 0;
        min-height: 610px;
        transform: none !important;
        transition: none;
    }

    .service-card--visual {
        grid-area: 1 / 1;
        width: min(100%, 420px);
        margin-inline: auto;
        flex: none;
        opacity: 0;
        pointer-events: none;
        filter: saturate(0.92);
        transform: translateY(28px) scale(0.92) rotate(0deg);
        transition:
            transform 0.36s ease,
            opacity 0.36s ease,
            filter 0.36s ease,
            box-shadow 0.36s ease,
            border-color 0.36s ease;
    }

    .service-card--visual.is-tinder-active {
        z-index: 5;
        opacity: 1;
        pointer-events: auto;
        filter: none;
        transform: translateY(0) scale(1) rotate(0deg);
        box-shadow: 0 26px 54px rgba(31, 24, 18, 0.14);
        border-color: rgba(170, 146, 118, 0.72);
    }

    .service-card--visual.is-tinder-next {
        z-index: 4;
        opacity: 0.72;
        transform: translateY(18px) scale(0.96) rotate(-2deg);
    }

    .service-card--visual.is-tinder-third {
        z-index: 3;
        opacity: 0.38;
        transform: translateY(36px) scale(0.92) rotate(2deg);
    }

    .service-card--visual.is-swiping {
        transition: none;
    }

    .service-card--visual.is-tinder-out-left {
        opacity: 0;
        transform: translateX(-120%) rotate(-14deg) scale(0.96);
    }

    .service-card--visual.is-tinder-out-right {
        opacity: 0;
        transform: translateX(120%) rotate(14deg) scale(0.96);
    }

    .service-card__media {
        aspect-ratio: 4 / 3;
    }

    .service-card__body {
        padding: 1rem 1rem 1.1rem;
    }

    .service-card__title {
        font-size: clamp(1.85rem, 6vw, 2.2rem);
        max-width: 10ch;
    }

    .service-card__description {
        -webkit-line-clamp: 4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services__track,
    .service-card--visual,
    .service-card__image,
    .services__nav,
    .services__dot {
        transition: none !important;
    }

    .service-card--visual:hover .service-card__image {
        transform: none;
    }
}

/* ──────────────────────────────────────────────
   SERVICES — clickable cards fix
   ────────────────────────────────────────────── */

.service-card--visual.is-active,
.service-card--visual.is-cover-active,
.service-card--visual.is-cover-prev,
.service-card--visual.is-cover-next,
.service-card--visual.is-tinder-active {
    pointer-events: auto;
}

.service-card__body,
.service-card__bottom,
.service-card__link {
    position: relative;
    z-index: 30;
}

.service-card__media,
.service-card__media-overlay,
.service-card__media-meta {
    pointer-events: none;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    pointer-events: auto;
}

/* ──────────────────────────────────────────────
   SERVICE PAGE — HEADER VISIBILITY FIX
   ────────────────────────────────────────────── */

body.is-service-page .site-header,
body.is-service-page .header,
body.is-service-page .main-header {
    background: rgba(250, 247, 243, 0.88) !important;
    color: var(--c-black) !important;
    border-bottom: 1px solid rgba(205, 193, 180, 0.44) !important;
    box-shadow: 0 10px 34px rgba(31, 24, 18, 0.045) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Jeżeli header ma wariant transparentny z homepage */
body.is-service-page .site-header.is-transparent,
body.is-service-page .site-header.header--transparent,
body.is-service-page .site-header.header--light,
body.is-service-page .header.is-transparent,
body.is-service-page .header.header--transparent,
body.is-service-page .header.header--light,
body.is-service-page .main-header.is-transparent,
body.is-service-page .main-header.header--transparent,
body.is-service-page .main-header.header--light {
    background: rgba(250, 247, 243, 0.88) !important;
    color: var(--c-black) !important;
    border-bottom: 1px solid rgba(205, 193, 180, 0.44) !important;
    box-shadow: 0 10px 34px rgba(31, 24, 18, 0.045) !important;
}

/* Logo / branding */
body.is-service-page .site-header .site-branding,
body.is-service-page .site-header .site-branding a,
body.is-service-page .site-header .custom-logo-link,
body.is-service-page .site-header .logo,
body.is-service-page .site-header .logo a,
body.is-service-page .site-header .site-title,
body.is-service-page .site-header .site-title a,
body.is-service-page .header .site-branding,
body.is-service-page .header .site-branding a,
body.is-service-page .header .logo,
body.is-service-page .header .logo a,
body.is-service-page .main-header .site-branding,
body.is-service-page .main-header .site-branding a,
body.is-service-page .main-header .logo,
body.is-service-page .main-header .logo a {
    color: var(--c-black) !important;
    text-shadow: none !important;
}

/* Linki menu */
body.is-service-page .site-header a,
body.is-service-page .header a,
body.is-service-page .main-header a {
    color: var(--c-black) !important;
    text-shadow: none !important;
}

body.is-service-page .main-navigation a,
body.is-service-page .site-navigation a,
body.is-service-page .primary-navigation a,
body.is-service-page .site-nav a,
body.is-service-page .nav-menu a,
body.is-service-page .menu a,
body.is-service-page .header__nav a,
body.is-service-page .site-header__nav a {
    color: rgba(26, 26, 26, 0.78) !important;
    text-shadow: none !important;
}

body.is-service-page .main-navigation a:hover,
body.is-service-page .site-navigation a:hover,
body.is-service-page .primary-navigation a:hover,
body.is-service-page .site-nav a:hover,
body.is-service-page .nav-menu a:hover,
body.is-service-page .menu a:hover,
body.is-service-page .header__nav a:hover,
body.is-service-page .site-header__nav a:hover {
    color: var(--c-black) !important;
}

/* Aktualny element menu */
body.is-service-page .main-navigation .current-menu-item > a,
body.is-service-page .site-navigation .current-menu-item > a,
body.is-service-page .primary-navigation .current-menu-item > a,
body.is-service-page .site-nav .current-menu-item > a,
body.is-service-page .nav-menu .current-menu-item > a,
body.is-service-page .menu .current-menu-item > a {
    color: var(--c-black) !important;
}

/* CTA w headerze */
body.is-service-page .site-header .btn,
body.is-service-page .site-header .button,
body.is-service-page .site-header .header__cta,
body.is-service-page .site-header .site-header__cta,
body.is-service-page .header .btn,
body.is-service-page .header .button,
body.is-service-page .header .header__cta,
body.is-service-page .main-header .btn,
body.is-service-page .main-header .button,
body.is-service-page .main-header .header__cta {
    color: var(--c-black) !important;
    background: rgba(255, 255, 255, 0.36) !important;
    border-color: rgba(26, 26, 26, 0.22) !important;
    text-shadow: none !important;
}

body.is-service-page .site-header .btn:hover,
body.is-service-page .site-header .button:hover,
body.is-service-page .site-header .header__cta:hover,
body.is-service-page .site-header .site-header__cta:hover,
body.is-service-page .header .btn:hover,
body.is-service-page .header .button:hover,
body.is-service-page .header .header__cta:hover,
body.is-service-page .main-header .btn:hover,
body.is-service-page .main-header .button:hover,
body.is-service-page .main-header .header__cta:hover {
    color: #fff !important;
    background: var(--c-black) !important;
    border-color: var(--c-black) !important;
}

/* Linie / dekoracje w menu */
body.is-service-page .main-navigation a::before,
body.is-service-page .main-navigation a::after,
body.is-service-page .site-navigation a::before,
body.is-service-page .site-navigation a::after,
body.is-service-page .primary-navigation a::before,
body.is-service-page .primary-navigation a::after,
body.is-service-page .site-nav a::before,
body.is-service-page .site-nav a::after,
body.is-service-page .nav-menu a::before,
body.is-service-page .nav-menu a::after,
body.is-service-page .menu a::before,
body.is-service-page .menu a::after {
    background-color: var(--c-black) !important;
}

/* Hamburger */
body.is-service-page .burger,
body.is-service-page .hamburger,
body.is-service-page .menu-toggle,
body.is-service-page .nav-toggle {
    color: var(--c-black) !important;
    border-color: rgba(26, 26, 26, 0.18) !important;
}

body.is-service-page .burger span,
body.is-service-page .hamburger span,
body.is-service-page .menu-toggle span,
body.is-service-page .nav-toggle span,
body.is-service-page .burger::before,
body.is-service-page .burger::after,
body.is-service-page .hamburger::before,
body.is-service-page .hamburger::after,
body.is-service-page .menu-toggle::before,
body.is-service-page .menu-toggle::after {
    background: var(--c-black) !important;
}

/* Mobile menu panel */
body.is-service-page .mobile-menu,
body.is-service-page .site-mobile-menu,
body.is-service-page .header__mobile,
body.is-service-page .offcanvas-menu {
    background: rgba(250, 247, 243, 0.98) !important;
    color: var(--c-black) !important;
}

body.is-service-page .mobile-menu a,
body.is-service-page .site-mobile-menu a,
body.is-service-page .header__mobile a,
body.is-service-page .offcanvas-menu a {
    color: var(--c-black) !important;
}

/* Dodatkowe zabezpieczenie, jeśli header ma position absolute */
body.is-service-page .site-header,
body.is-service-page .header,
body.is-service-page .main-header {
    z-index: 1000 !important;
}

/* ──────────────────────────────────────────────
   CUSTOM TEMPLATES — HEADER VISIBILITY FIX
   service pages + legal pages
   ────────────────────────────────────────────── */

body.is-service-page .site-header,
body.is-legal-page .site-header,
body.is-service-page .header,
body.is-legal-page .header,
body.is-service-page .main-header,
body.is-legal-page .main-header {
    background: rgba(250, 247, 243, 0.9) !important;
    color: var(--c-black) !important;
    border-bottom: 1px solid rgba(205, 193, 180, 0.44) !important;
    box-shadow: 0 10px 34px rgba(31, 24, 18, 0.045) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000 !important;
}

/* Jeżeli header ma klasę transparentną z homepage */
body.is-service-page .site-header.is-transparent,
body.is-legal-page .site-header.is-transparent,
body.is-service-page .site-header.header--transparent,
body.is-legal-page .site-header.header--transparent,
body.is-service-page .site-header.header--light,
body.is-legal-page .site-header.header--light,
body.is-service-page .header.is-transparent,
body.is-legal-page .header.is-transparent,
body.is-service-page .header.header--transparent,
body.is-legal-page .header.header--transparent,
body.is-service-page .header.header--light,
body.is-legal-page .header.header--light,
body.is-service-page .main-header.is-transparent,
body.is-legal-page .main-header.is-transparent,
body.is-service-page .main-header.header--transparent,
body.is-legal-page .main-header.header--transparent,
body.is-service-page .main-header.header--light,
body.is-legal-page .main-header.header--light {
    background: rgba(250, 247, 243, 0.9) !important;
    color: var(--c-black) !important;
    border-bottom: 1px solid rgba(205, 193, 180, 0.44) !important;
    box-shadow: 0 10px 34px rgba(31, 24, 18, 0.045) !important;
}

/* Logo / branding */
body.is-service-page .site-header .site-branding,
body.is-legal-page .site-header .site-branding,
body.is-service-page .site-header .site-branding a,
body.is-legal-page .site-header .site-branding a,
body.is-service-page .site-header .custom-logo-link,
body.is-legal-page .site-header .custom-logo-link,
body.is-service-page .site-header .logo,
body.is-legal-page .site-header .logo,
body.is-service-page .site-header .logo a,
body.is-legal-page .site-header .logo a,
body.is-service-page .site-header .site-title,
body.is-legal-page .site-header .site-title,
body.is-service-page .site-header .site-title a,
body.is-legal-page .site-header .site-title a,
body.is-service-page .header .site-branding,
body.is-legal-page .header .site-branding,
body.is-service-page .header .site-branding a,
body.is-legal-page .header .site-branding a,
body.is-service-page .header .logo,
body.is-legal-page .header .logo,
body.is-service-page .header .logo a,
body.is-legal-page .header .logo a,
body.is-service-page .main-header .site-branding,
body.is-legal-page .main-header .site-branding,
body.is-service-page .main-header .site-branding a,
body.is-legal-page .main-header .site-branding a,
body.is-service-page .main-header .logo,
body.is-legal-page .main-header .logo,
body.is-service-page .main-header .logo a,
body.is-legal-page .main-header .logo a {
    color: var(--c-black) !important;
    text-shadow: none !important;
}

/* Wszystkie linki w headerze */
body.is-service-page .site-header a,
body.is-legal-page .site-header a,
body.is-service-page .header a,
body.is-legal-page .header a,
body.is-service-page .main-header a,
body.is-legal-page .main-header a {
    color: var(--c-black) !important;
    text-shadow: none !important;
}

/* Linki menu */
body.is-service-page .main-navigation a,
body.is-legal-page .main-navigation a,
body.is-service-page .site-navigation a,
body.is-legal-page .site-navigation a,
body.is-service-page .primary-navigation a,
body.is-legal-page .primary-navigation a,
body.is-service-page .site-nav a,
body.is-legal-page .site-nav a,
body.is-service-page .nav-menu a,
body.is-legal-page .nav-menu a,
body.is-service-page .menu a,
body.is-legal-page .menu a,
body.is-service-page .header__nav a,
body.is-legal-page .header__nav a,
body.is-service-page .site-header__nav a,
body.is-legal-page .site-header__nav a {
    color: rgba(26, 26, 26, 0.78) !important;
    text-shadow: none !important;
}

body.is-service-page .main-navigation a:hover,
body.is-legal-page .main-navigation a:hover,
body.is-service-page .site-navigation a:hover,
body.is-legal-page .site-navigation a:hover,
body.is-service-page .primary-navigation a:hover,
body.is-legal-page .primary-navigation a:hover,
body.is-service-page .site-nav a:hover,
body.is-legal-page .site-nav a:hover,
body.is-service-page .nav-menu a:hover,
body.is-legal-page .nav-menu a:hover,
body.is-service-page .menu a:hover,
body.is-legal-page .menu a:hover,
body.is-service-page .header__nav a:hover,
body.is-legal-page .header__nav a:hover,
body.is-service-page .site-header__nav a:hover,
body.is-legal-page .site-header__nav a:hover {
    color: var(--c-black) !important;
}

/* Aktualny element menu */
body.is-service-page .main-navigation .current-menu-item > a,
body.is-legal-page .main-navigation .current-menu-item > a,
body.is-service-page .site-navigation .current-menu-item > a,
body.is-legal-page .site-navigation .current-menu-item > a,
body.is-service-page .primary-navigation .current-menu-item > a,
body.is-legal-page .primary-navigation .current-menu-item > a,
body.is-service-page .site-nav .current-menu-item > a,
body.is-legal-page .site-nav .current-menu-item > a,
body.is-service-page .nav-menu .current-menu-item > a,
body.is-legal-page .nav-menu .current-menu-item > a,
body.is-service-page .menu .current-menu-item > a,
body.is-legal-page .menu .current-menu-item > a {
    color: var(--c-black) !important;
}

/* CTA / przycisk w headerze */
body.is-service-page .site-header .btn,
body.is-legal-page .site-header .btn,
body.is-service-page .site-header .button,
body.is-legal-page .site-header .button,
body.is-service-page .site-header .header__cta,
body.is-legal-page .site-header .header__cta,
body.is-service-page .site-header .site-header__cta,
body.is-legal-page .site-header .site-header__cta,
body.is-service-page .header .btn,
body.is-legal-page .header .btn,
body.is-service-page .header .button,
body.is-legal-page .header .button,
body.is-service-page .header .header__cta,
body.is-legal-page .header .header__cta,
body.is-service-page .main-header .btn,
body.is-legal-page .main-header .btn,
body.is-service-page .main-header .button,
body.is-legal-page .main-header .button,
body.is-service-page .main-header .header__cta,
body.is-legal-page .main-header .header__cta {
    color: var(--c-black) !important;
    background: rgba(255, 255, 255, 0.42) !important;
    border-color: rgba(26, 26, 26, 0.22) !important;
    text-shadow: none !important;
}

body.is-service-page .site-header .btn:hover,
body.is-legal-page .site-header .btn:hover,
body.is-service-page .site-header .button:hover,
body.is-legal-page .site-header .button:hover,
body.is-service-page .site-header .header__cta:hover,
body.is-legal-page .site-header .header__cta:hover,
body.is-service-page .site-header .site-header__cta:hover,
body.is-legal-page .site-header .site-header__cta:hover,
body.is-service-page .header .btn:hover,
body.is-legal-page .header .btn:hover,
body.is-service-page .header .button:hover,
body.is-legal-page .header .button:hover,
body.is-service-page .header .header__cta:hover,
body.is-legal-page .header .header__cta:hover,
body.is-service-page .main-header .btn:hover,
body.is-legal-page .main-header .btn:hover,
body.is-service-page .main-header .button:hover,
body.is-legal-page .main-header .button:hover,
body.is-service-page .main-header .header__cta:hover,
body.is-legal-page .main-header .header__cta:hover {
    color: #fff !important;
    background: var(--c-black) !important;
    border-color: var(--c-black) !important;
}

/* Podkreślenia / dekoracje menu */
body.is-service-page .main-navigation a::before,
body.is-legal-page .main-navigation a::before,
body.is-service-page .main-navigation a::after,
body.is-legal-page .main-navigation a::after,
body.is-service-page .site-navigation a::before,
body.is-legal-page .site-navigation a::before,
body.is-service-page .site-navigation a::after,
body.is-legal-page .site-navigation a::after,
body.is-service-page .primary-navigation a::before,
body.is-legal-page .primary-navigation a::before,
body.is-service-page .primary-navigation a::after,
body.is-legal-page .primary-navigation a::after,
body.is-service-page .site-nav a::before,
body.is-legal-page .site-nav a::before,
body.is-service-page .site-nav a::after,
body.is-legal-page .site-nav a::after,
body.is-service-page .nav-menu a::before,
body.is-legal-page .nav-menu a::before,
body.is-service-page .nav-menu a::after,
body.is-legal-page .nav-menu a::after,
body.is-service-page .menu a::before,
body.is-legal-page .menu a::before,
body.is-service-page .menu a::after,
body.is-legal-page .menu a::after {
    background-color: var(--c-black) !important;
}

/* Hamburger */
body.is-service-page .burger,
body.is-legal-page .burger,
body.is-service-page .hamburger,
body.is-legal-page .hamburger,
body.is-service-page .menu-toggle,
body.is-legal-page .menu-toggle,
body.is-service-page .nav-toggle,
body.is-legal-page .nav-toggle {
    color: var(--c-black) !important;
    border-color: rgba(26, 26, 26, 0.18) !important;
}

body.is-service-page .burger span,
body.is-legal-page .burger span,
body.is-service-page .hamburger span,
body.is-legal-page .hamburger span,
body.is-service-page .menu-toggle span,
body.is-legal-page .menu-toggle span,
body.is-service-page .nav-toggle span,
body.is-legal-page .nav-toggle span,
body.is-service-page .burger::before,
body.is-legal-page .burger::before,
body.is-service-page .burger::after,
body.is-legal-page .burger::after,
body.is-service-page .hamburger::before,
body.is-legal-page .hamburger::before,
body.is-service-page .hamburger::after,
body.is-legal-page .hamburger::after,
body.is-service-page .menu-toggle::before,
body.is-legal-page .menu-toggle::before,
body.is-service-page .menu-toggle::after,
body.is-legal-page .menu-toggle::after {
    background: var(--c-black) !important;
}

/* Mobile menu panel */
body.is-service-page .mobile-menu,
body.is-legal-page .mobile-menu,
body.is-service-page .site-mobile-menu,
body.is-legal-page .site-mobile-menu,
body.is-service-page .header__mobile,
body.is-legal-page .header__mobile,
body.is-service-page .offcanvas-menu,
body.is-legal-page .offcanvas-menu {
    background: rgba(250, 247, 243, 0.98) !important;
    color: var(--c-black) !important;
}

body.is-service-page .mobile-menu a,
body.is-legal-page .mobile-menu a,
body.is-service-page .site-mobile-menu a,
body.is-legal-page .site-mobile-menu a,
body.is-service-page .header__mobile a,
body.is-legal-page .header__mobile a,
body.is-service-page .offcanvas-menu a,
body.is-legal-page .offcanvas-menu a {
    color: var(--c-black) !important;
}

/* ──────────────────────────────────────────────
   PROCESS SECTION
   ────────────────────────────────────────────── */
.process {
    background-color: var(--c-white);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

/* Linia łącząca kroki */
.process__steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background-color: var(--c-beige);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__number {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    border: 1px solid var(--c-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--c-brown);
    background-color: var(--c-white);
    position: relative;
    z-index: var(--z-base);
    transition: all var(--duration) var(--ease-out);
}

.process-step:hover .process-step__number {
    background-color: var(--c-brown);
    color: var(--c-white);
    border-color: var(--c-brown);
}

.process-step__title {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
}

.process-step__text {
    font-size: var(--text-sm);
    color: var(--c-text-muted);
}

/* ──────────────────────────────────────────────
   TESTIMONIALS SECTION
   ────────────────────────────────────────────── */
.testimonials {
    background-color: var(--c-black);
    color: var(--c-off-white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: all var(--duration) var(--ease-out);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card__quote {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--c-beige);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: var(--text-4xl);
    color: var(--c-brown);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--c-white);
}

.testimonial-card__role {
    font-size: var(--text-xs);
    color: var(--c-text-muted);
}

/* ──────────────────────────────────────────────
   FAQ SECTION
   ────────────────────────────────────────────── */
.faq {
    background-color: var(--c-cream);
}

.faq__list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--c-beige);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--c-black);
    cursor: pointer;
    transition: color var(--duration) var(--ease-smooth);
    background: none;
    border: none;
}

.faq-item__question:hover {
    color: var(--c-brown);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: var(--space-lg);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--c-brown);
    transition: transform var(--duration) var(--ease-out);
}

.faq-item__icon::before {
    width: 14px;
    height: 1px;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 1px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease-smooth),
                padding var(--duration) var(--ease-smooth);
}

.faq-item.is-open .faq-item__answer {
    max-height: 400px;
    padding-bottom: var(--space-xl);
}

.faq-item__answer-inner {
    font-size: var(--text-sm);
    line-height: 1.9;
    color: var(--c-text-light);
    padding-right: 60px;
}

/* ──────────────────────────────────────────────
   CONTACT / CTA SECTION
   ────────────────────────────────────────────── */
.contact {
    background-color: var(--c-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__info {
    padding-top: var(--space-lg);
}

.contact__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-brown);
    margin-bottom: var(--space-lg);
}

.contact__title {
    margin-bottom: var(--space-xl);
}

.contact__text {
    margin-bottom: var(--space-2xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: var(--c-text-light);
}

.contact__detail-icon {
    width: 40px;
    height: 40px;
    background-color: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--text-md);
}

/* ── Formularz kontaktowy ── */
.contact-form {
    background-color: var(--c-cream);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text);
    margin-bottom: var(--space-xs);
}

.form-group__input,
.form-group__textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background-color: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
    color: var(--c-text);
    transition: border-color var(--duration) var(--ease-smooth),
                box-shadow var(--duration) var(--ease-smooth);
    outline: none;
}

.form-group__input:focus,
.form-group__textarea:focus {
    border-color: var(--c-brown);
    box-shadow: 0 0 0 3px rgba(166, 139, 107, 0.1);
}

.form-group__textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
    color: var(--c-text-muted);
}

.contact-form-tabs {
    display: grid;
    gap: var(--space-xl);
}

.contact-form-tabs__switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
}

.contact-form-tabs__tab {
    appearance: none;
    border: 1px solid #d9c8b6;
    background: #fffdf9;
    color: #3a3128;
    padding: 0.875rem 1.25rem;
    font: inherit;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-form-tabs__tab:hover {
    transform: translateY(-1px);
    border-color: #c8ac8d;
    background: #fffaf5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-tabs__tab:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 3px;
}

.contact-form-tabs__tab.is-active {
    background: #b88b5a;
    border-color: #b88b5a;
    color: #fff;
    box-shadow: 0 12px 28px rgba(184, 139, 90, 0.22);
}

.contact-form-tabs__divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.75rem;
    background: #f3ede6;
    color: #9b7b5b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-tabs__panel[hidden] {
    display: none !important;
}

@media (max-width: 640px) {
    .contact-form-tabs__switch {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-tabs__tab,
    .contact-form-tabs__divider {
        width: 100%;
    }

    .contact-form-tabs__divider {
        height: auto;
        min-width: 0;
        padding: 0.5rem 1rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BANNER - Gradient brązowy zamiast czarnego
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-cta {
  background: linear-gradient(135deg, #8b7355 0%, #a68b6b 100%) !important;
  padding: 5rem 0 !important;
  position: relative;
}

/* Subtelny separator między CTA a główną stopką */
.footer-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* ── CTA Content ── */

.footer-cta__label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-cta__title {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5vw + 1.2rem, 2.75rem) !important;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.footer-cta__text {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem !important;
  line-height: 1.7;
  margin: 0;
  max-width: 42ch;
}

/* ── CTA Buttons - Biały primary, outline secondary ── */

.footer-cta__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.footer-cta .btn--primary {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: 2px solid #ffffff !important;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.footer-cta .btn--primary:hover {
  background: #f5f0eb !important;
  color: #1a1a1a !important;
  border-color: #f5f0eb !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-cta .btn--secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.footer-cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN FOOTER - Brązowe tło, lepszy spacing
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-main {
  background: #6b5740 !important;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem !important;
  padding: 5rem 0 4rem !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRAND COLUMN - Większa hierarchia wizualna
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-col--brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.75rem !important;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.25rem !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-logo:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  max-width: 22rem !important;
  margin: 0 0 2rem !important;
}

/* ── Social Media Icons ── */

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social__link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-3px);
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER COLUMNS - Hierarchia i kontrast
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col__title {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.5rem !important;
}

/* ── Menu Links ── */

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem !important;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #ffffff !important;
}

/* ── Contact Links z ikonkami ── */

.footer-menu--contact {
  gap: 1rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-link:hover {
  color: #ffffff !important;
}

.footer-contact-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem !important;
  line-height: 1.6;
}

.footer-location svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOTTOM BAR - Lepszy kontrast
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-bottom {
  background: rgba(0, 0, 0, 0.2) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0 !important;
  margin-top: 0 !important;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copyright,
.footer-made {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem !important;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE - Tablet & Mobile
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem !important;
    padding: 4rem 0 3rem !important;
  }
  
  /* Legal column przechodzi do drugiego rzędu */
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* ── CTA Stack ── */
  .footer-cta {
    padding: 3.5rem 0 !important;
  }
  
  .footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .footer-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  
  .footer-cta .btn--primary,
  .footer-cta .btn--secondary {
    width: 100%;
    justify-content: center;
  }
  
  /* ── Main Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem !important;
    padding: 3rem 0 2.5rem !important;
  }
  
  .footer-col--brand {
    grid-column: 1 / -1;
  }
  
  .footer-logo {
    font-size: 1.5rem !important;
  }
  
  .footer-desc {
    max-width: 100% !important;
  }
  
  /* ── Bottom Bar ── */
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 2.5rem 0 !important;
  }
  
  .footer-cta__inner {
    text-align: center; /* Wyśrodkowane */
  }
  
  .footer-cta__title {
    font-size: 1.75rem !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem !important;
    text-align: center; /* Wyśrodkowane kolumny */
  }
  
  .footer-col:last-child {
    grid-column: 1;
  }
  
  /* Wyśrodkowane social media */
  .footer-social {
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  /* Wyśrodkowane menu */
  .footer-menu {
    align-items: center;
  }
  
  .footer-menu--contact {
    align-items: center;
  }
  
  .footer-contact-link {
    justify-content: center;
  }
  
  .footer-location {
    justify-content: center;
    text-align: center;
  }
  
  .footer-col--brand {
    text-align: center;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRINT - Ukryj stopkę przy drukowaniu
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media print {
  .footer-cta,
  .footer-social,
  .footer-bottom {
    display: none;
  }
  
  .footer-main {
    background: transparent !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
  
  .footer-menu a,
  .footer-contact-link {
    color: #000 !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCESSIBILITY - Focus states
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-logo:focus-visible,
.footer-menu a:focus-visible,
.footer-contact-link:focus-visible,
.footer-social__link:focus-visible,
.footer-cta .btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DARK MODE - Jeśli kiedyś będziesz chciał dodać
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-color-scheme: dark) {
  /* Stopka już jest ciemna, więc nie wymaga zmian */
  /* Ale można tu dodać adjustmenty jeśli będzie potrzeba */
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER - DOSZLIFOWANIA (opcjonalne)
   ══════════════════════════════════════════════════════════════════ */

/* ── CTA Label bardziej widoczny ── */
.footer-cta__label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.8rem !important;
  background: rgba(0, 0, 0, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  display: inline-flex;
}

/* ── Separator bardziej widoczny ── */
.footer-cta::after {
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15) 50%,
    transparent
  ) !important;
}

.footer-main {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Social Media większe ── */
.footer-social__link {
  width: 2.75rem !important;
  height: 2.75rem !important;
}

.footer-social__link svg {
  width: 20px !important;
  height: 20px !important;
}

/* ── Bottom Bar więcej kontrastu ── */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25) !important;
}

.footer-copyright,
.footer-made {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 500;
}

/* ── Lepsze hover effects ── */
.footer-cta .btn--primary:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-3px) !important;
}

.footer-cta .btn--secondary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.footer-social__link:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ── Smooth transitions ── */
.footer-cta .btn,
.footer-social__link,
.footer-menu a,
.footer-contact-link {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ──────────────────────────────────────────────
   ANIMATIONS
   ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out),
                transform 0.8s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────────────
   RESPONSIVE: TABLET
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {

    .about__grid {
        gap: var(--space-2xl);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .process__steps::before {
        display: none;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ──────────────────────────────────────────────
   RESPONSIVE: MOBILE
   ────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* UWAGA: Hamburger i mobile menu są zdefiniowane wyżej w pliku (linia ~576) */
    /* Tutaj tylko sekcje responsive */

    /* ── Sekcje ── */
    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about__image-wrapper::before {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .process__steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ──────────────────────────────────────────────
   UTILITY CLASSES
   ────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ──────────────────────────────────────────────
   FORM STATES (walidacja, loading, sukces)
   ────────────────────────────────────────────── */

/* Wymagane pole */
.form-group__required {
    color: var(--c-brown);
    margin-left: 2px;
}

/* Błąd pola */
.form-group--error .form-group__input,
.form-group--error .form-group__textarea {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-group__error {
    display: block;
    font-size: var(--text-xs);
    color: #c0392b;
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

/* Przycisk loading */
.btn--loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Spinner */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.form-submit__loader {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Feedback messages */
.form-feedback {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    text-align: center;
    display: none;
}

.form-feedback--success {
    background-color: #f0faf0;
    color: #1a7a1a;
    border: 1px solid #c8e6c8;
}

.form-feedback--error {
    background-color: #fdf2f2;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

/* Formularz po sukcesie */
.form--success .form-group {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease-smooth);
}

.form--success .form-submit {
    opacity: 0.5;
    pointer-events: none;
}

/* ──────────────────────────────────────────────
   CTA BANNER (sekcja nad kontaktem)
   ────────────────────────────────────────────── */
.cta-banner__title {
    color: var(--c-white);
    margin-bottom: var(--space-lg);
    font-size: var(--text-3xl);
}

.cta-banner__text {
    color: var(--c-beige-dark);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ──────────────────────────────────────────────
   CONTACT DETAIL — hover effect
   ────────────────────────────────────────────── */
a.contact__detail {
    text-decoration: none;
    transition: color var(--duration) var(--ease-smooth);
    cursor: pointer;
}

a.contact__detail:hover {
    color: var(--c-brown);
}

a.contact__detail:hover .contact__detail-icon {
    background-color: var(--c-beige);
    color: var(--c-brown-dark);
}

.contact__detail-icon {
    transition: all var(--duration) var(--ease-smooth);
}

.contact__detail-icon svg {
    display: block;
}

/* ──────────────────────────────────────────────
   SERVICE CARD — wyróżniona (highlighted)
   ────────────────────────────────────────────── */
.service-card--highlighted {
    border-color: var(--c-brown);
    position: relative;
}

.service-card--highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--c-brown);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* ──────────────────────────────────────────────
   LOGO IMAGE (gdy użyje graficzne logo)
   ────────────────────────────────────────────── */
.site-logo__image {
    height: 36px;
    width: auto;
    transition: filter var(--duration) var(--ease-smooth);
}

/* Białe logo na hero (filtr CSS) */
.site-header:not(.is-scrolled) .site-logo__image {
    filter: brightness(0) invert(1);
}

/* ──────────────────────────────────────────────
   PAGE CONTENT — styl dla podstron z edytorem
   ────────────────────────────────────────────── */
.page-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.page-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.page-content p {
    margin-bottom: var(--space-lg);
}

.page-content ul,
.page-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: var(--space-xs);
    color: var(--c-text-light);
}

.page-content a {
    color: var(--c-brown);
    border-bottom: 1px solid var(--c-brown);
    transition: all var(--duration) var(--ease-smooth);
}

.page-content a:hover {
    color: var(--c-brown-deep);
}

.page-content blockquote {
    border-left: 3px solid var(--c-brown);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background-color: var(--c-cream);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--c-text);
}

.page-content img {
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

/* ──────────────────────────────────────────────
   COOKIE BANNER — poprawiony styling
   ────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--c-black-deep);
    color: var(--c-warm-gray);
    padding: 1.25rem var(--container-padding);
    z-index: var(--z-toast);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: var(--text-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: slideUp 0.5s var(--ease-out);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ──────────────────────────────────────────────
   PRINT STYLES
   ────────────────────────────────────────────── */
@media print {
    .site-header,
    .hero__scroll,
    .cookie-banner,
    .hamburger {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: none !important;
    }

    .hero__content {
        color: #000;
    }

    .hero__title {
        color: #000;
    }

    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}




/**
 * CoachingAgency — Editor Styles
 * Aby edytor WordPress wyglądał jak frontend.
 *
 * @package CoachingAgency
 */

/* ── Import fontów ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── Bazowe style edytora ── */
.editor-styles-wrapper {
    font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.editor-styles-wrapper .wp-block {
    max-width: 800px;
}

/* ── Typografia ── */
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.editor-styles-wrapper h1 { font-size: 2.5rem; }
.editor-styles-wrapper h2 { font-size: 2rem; }
.editor-styles-wrapper h3 { font-size: 1.5rem; }
.editor-styles-wrapper h4 { font-size: 1.25rem; }

.editor-styles-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b6560;
    margin-bottom: 1.25em;
}

.editor-styles-wrapper a {
    color: #a68b6b;
    text-decoration: underline;
    text-decoration-color: #a68b6b;
    text-underline-offset: 3px;
}

.editor-styles-wrapper a:hover {
    color: #6b5740;
}

/* ── Listy ── */
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
    color: #6b6560;
}

.editor-styles-wrapper li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

/* ── Cytat ── */
.editor-styles-wrapper blockquote,
.editor-styles-wrapper .wp-block-quote {
    border-left: 3px solid #a68b6b;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: #f5f0eb;
    border-radius: 0 8px 8px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #2c2c2c;
}

.editor-styles-wrapper blockquote p,
.editor-styles-wrapper .wp-block-quote p {
    color: #2c2c2c;
    font-size: 1.125rem;
}

/* ── Obrazki ── */
.editor-styles-wrapper img {
    border-radius: 8px;
}

/* ── Separator ── */
.editor-styles-wrapper hr,
.editor-styles-wrapper .wp-block-separator {
    border: none;
    border-top: 1px solid #e8ddd3;
    margin: 3rem auto;
    max-width: 100px;
}

/* ── Tabela ── */
.editor-styles-wrapper table {
    border-collapse: collapse;
    width: 100%;
    margin: 2rem 0;
}

.editor-styles-wrapper th,
.editor-styles-wrapper td {
    padding: 0.75rem 1rem;
    border: 1px solid #e8ddd3;
    text-align: left;
    font-size: 0.938rem;
}

.editor-styles-wrapper th {
    background-color: #f5f0eb;
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Selection ── */
.editor-styles-wrapper ::selection {
    background-color: #a68b6b;
    color: #ffffff;
}

/* ──────────────────────────────────────────────
   ACCESSIBILITY
   ────────────────────────────────────────────── */

/* Skip link — widoczny na focus */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: var(--c-brown);
    color: var(--c-white);
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top var(--duration) var(--ease-out);
}

.skip-link:focus {
    top: 0;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Focus visible — wyraźny outline */
*:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 3px;
}

/* Usuń outline dla myszy */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Focus na przyciskach */
.btn:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(166, 139, 107, 0.2);
}

/* Focus na inputach */
.form-group__input:focus-visible,
.form-group__textarea:focus-visible {
    outline: none;
    border-color: var(--c-brown);
    box-shadow: 0 0 0 3px rgba(166, 139, 107, 0.15);
}

/* Focus na linkach nawigacji */
.nav__link:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Focus w mobile nav (białe) */
.nav.is-open .nav__link:focus-visible {
    outline-color: var(--c-white);
}

/* FAQ button focus */
.faq-item__question:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Social links focus */
.footer-social__link:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 2px;
}

/* ──────────────────────────────────────────────
   REDUCED MOTION — szanuj preferencje użytkownika
   ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ──────────────────────────────────────────────
   HIGH CONTRAST MODE
   ────────────────────────────────────────────── */
@media (forced-colors: active) {
    .btn {
        border: 2px solid ButtonText;
    }

    .service-card {
        border: 1px solid ButtonText;
    }

    .faq-item {
        border-color: ButtonText;
    }

    .hero__overlay {
        display: none;
    }
}

/* ──────────────────────────────────────────────
   DARK MODE PREFERENCE (subtelna adaptacja)
   ────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    /* 
     * Motyw jest zaprojektowany jako jasny z ciemnymi akcentami.
     * Nie wymuszamy dark mode, ale poprawiamy kontrast 
     * w sekcjach które już są ciemne.
     */
    .section--dark {
        background-color: #0a0a0a;
    }

    .site-footer {
        background-color: #050505;
    }
}

 /* ──────────────────────────────────────────────
   RESULTS SECTION — FINAL EMOTIONAL / PREMIUM
   ────────────────────────────────────────────── */
.results {
    position: relative;
    background:
        radial-gradient(circle at 12% 8%, rgba(224, 206, 183, 0.16) 0%, rgba(224, 206, 183, 0) 26%),
        radial-gradient(circle at 88% 18%, rgba(236, 226, 214, 0.18) 0%, rgba(236, 226, 214, 0) 24%),
        linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
    overflow: clip;
}

.results::before {
    content: '';
    position: absolute;
    inset: auto auto 10% -8%;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(234, 221, 207, 0.18) 0%, rgba(234, 221, 207, 0) 68%);
    pointer-events: none;
    filter: blur(8px);
}

.results::after {
    content: '';
    position: absolute;
    inset: 8% -8% auto auto;
    width: 20rem;
    height: 20rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(230, 216, 199, 0.14) 0%, rgba(230, 216, 199, 0) 70%);
    pointer-events: none;
    filter: blur(10px);
}

.results .container {
    position: relative;
    z-index: 1;
}

.section-header--results {
    max-width: 780px;
    margin-inline: auto;
}

.section-header--results .section-header__title {
    text-wrap: balance;
}

.section-header--results .section-header__description {
    max-width: 40ch;
    margin-inline: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.35rem);
    margin-top: clamp(1.9rem, 2.8vw, 2.5rem);
}

.results-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.15rem 1.05rem 1rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(252,249,245,0.97) 100%);
    border: 1px solid rgba(208, 196, 183, 0.68);
    box-shadow:
        0 14px 30px rgba(31, 24, 18, 0.045),
        inset 0 1px 0 rgba(255,255,255,0.7);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease,
        background 0.32s ease;
    isolation: isolate;
}

.results-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(244, 238, 231, 0.76) 0%, rgba(244, 238, 231, 0) 22%);
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

.results-card:hover {
    transform: translateY(-6px);
    border-color: rgba(170, 146, 118, 0.74);
    box-shadow:
        0 22px 48px rgba(31, 24, 18, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.74);
}

.results-card:first-child {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(252,247,241,0.99) 100%);
    box-shadow:
        0 22px 48px rgba(31, 24, 18, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.85);
}

.results-card:first-child::before {
    background:
        radial-gradient(circle at top left, rgba(230, 216, 199, 0.48) 0%, rgba(230, 216, 199, 0) 30%);
}

.results-card:first-child::after {
    content: '';
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(216, 198, 176, 0.18) 0%, rgba(216, 198, 176, 0.06) 52%, rgba(216, 198, 176, 0) 72%);
    pointer-events: none;
}

.results-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.results-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.22rem 0.58rem;
    border: 1px solid rgba(198, 184, 170, 0.74);
    background: rgba(255,255,255,0.82);
    color: var(--c-text);
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.results-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.3rem;
    height: 2.3rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(208, 196, 183, 0.58);
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    line-height: 1;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.results-card__title {
    margin: 0 0 0.78rem;
    font-size: clamp(1.75rem, 1.15rem + 0.78vw, 2.3rem);
    line-height: 0.93;
    letter-spacing: -0.048em;
    max-width: 8ch;
    text-wrap: balance;
}

.results-card:first-child .results-card__title {
    font-size: clamp(1.95rem, 1.25rem + 0.95vw, 2.55rem);
}

.results-card__sections {
    display: grid;
    gap: 0.78rem;
}

.results-card__section {
    display: grid;
    gap: 0.24rem;
    padding-top: 0.72rem;
    border-top: 1px solid rgba(208, 196, 183, 0.42);
}

.results-card__section:first-child {
    padding-top: 0;
    border-top: 0;
}

.results-card__label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.results-card__section p {
    margin: 0;
    color: var(--c-text-light);
    font-size: 0.93rem;
    line-height: 1.66;
}

.results-card__section--outcome p {
    color: var(--c-black);
}

.results-footer {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1rem, 1.8vw, 1.35rem);
    align-items: start;
    margin-top: clamp(1.45rem, 2.2vw, 1.9rem);
    padding-top: 1.05rem;
    border-top: 1px solid rgba(208, 196, 183, 0.52);
}

.results-footer__quote {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.68rem;
    margin: 0;
    padding: 1rem 0.95rem 0.9rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(249,245,240,0.86) 100%);
    border-left: 2px solid rgba(167, 134, 96, 0.56);
    box-shadow: 0 10px 24px rgba(31, 24, 18, 0.035);
}

.results-footer__quote::after {
    content: '';
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(223, 207, 188, 0.22) 0%, rgba(223, 207, 188, 0) 72%);
    pointer-events: none;
}

.results-footer__quote-mark {
    color: rgba(167, 134, 96, 0.62);
    font-family: var(--font-heading);
    font-size: 1.95rem;
    line-height: 1;
}

.results-footer__quote p {
    margin: 0;
    color: var(--c-black);
    font-size: 0.98rem;
    line-height: 1.64;
    max-width: 30ch;
}

.results-footer__quote-meta {
    margin-top: 0.56rem;
    color: var(--c-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.results-footer__highlights {
    display: grid;
    gap: 0.62rem;
    align-content: start;
}

.results-footer__highlights-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.results-footer__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.results-footer__chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.22rem 0.56rem;
    border: 1px solid rgba(198, 184, 170, 0.72);
    background: rgba(255,255,255,0.78);
    color: var(--c-text);
    font-size: 0.69rem;
    line-height: 1;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease;
}

.results-footer__chip:hover {
    transform: translateY(-1px);
    border-color: rgba(170, 146, 118, 0.62);
    background: rgba(255,255,255,0.92);
}

@media (max-width: 1199px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-footer {
        grid-template-columns: 1fr;
    }

    .results-card:first-child .results-card__title {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
    }
}

@media (max-width: 767px) {
    .results-card {
        padding: 1rem 0.92rem 0.9rem;
    }

    .results-card__title,
    .results-card:first-child .results-card__title {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
        max-width: 9ch;
    }

    .results-footer__quote {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.9rem 0.85rem 0.82rem;
    }

    .results-footer__quote p {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .results-card,
    .results-footer__chip {
        transition: none;
    }

    .results-card:hover,
    .results-footer__chip:hover {
        transform: none;
    }
}

/* ──────────────────────────────────────────────
   SCROLL PROGRESS BAR
   ────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: calc(var(--z-sticky) + 1);
    background-color: transparent;
    pointer-events: none;
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        var(--c-brown) 0%,
        var(--c-beige-dark) 100%
    );
    transition: width 0.05s linear;
}

/* ──────────────────────────────────────────────
   SOCIAL PROOF BAR
   ────────────────────────────────────────────── */
.proof-bar {
    position: fixed;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background-color: var(--c-black-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: bottom var(--duration-lg) var(--ease-out);
    pointer-events: none;
}

.proof-bar.is-visible {
    bottom: 0;
    pointer-events: auto;
}

.proof-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-sm) var(--container-padding);
    max-width: var(--container-width);
    margin: 0 auto;
}

.proof-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

.proof-bar__icon {
    font-size: var(--text-sm);
}

.proof-bar__text {
    font-size: var(--text-xs);
    color: var(--c-warm-gray);
    letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────
   FLOATING CTA BUTTON
   ────────────────────────────────────────────── */
.floating-cta {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all var(--duration-lg) var(--ease-out);
    pointer-events: none;
}

.floating-cta.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Gdy proof bar widoczny, przesuń wyżej */
.proof-bar.is-visible ~ .floating-cta {
    bottom: calc(var(--space-xl) + 52px);
}

.floating-cta__tooltip {
    background-color: var(--c-white);
    color: var(--c-text);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--duration) var(--ease-out);
    pointer-events: none;
}

.floating-cta:hover .floating-cta__tooltip {
    opacity: 1;
    transform: translateX(0);
}

.floating-cta__button {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: #25D366;
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--duration) var(--ease-out);
    position: relative;
}

/* Pulsujący ring */
.floating-cta__button::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid #25D366;
    opacity: 0;
    animation: pulse-ring 2s var(--ease-out) infinite;
}

.floating-cta__button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Kolory dla innych typów CTA */
.floating-cta__button[href^="tel:"] {
    background-color: var(--c-brown);
}

.floating-cta__button[href^="tel:"]::before {
    border-color: var(--c-brown);
}

.floating-cta__button[href^="mailto:"] {
    background-color: var(--c-black);
}

.floating-cta__button[href^="mailto:"]::before {
    border-color: var(--c-black);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ──────────────────────────────────────────────
   BACK TO TOP
   ────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--c-white);
    color: var(--c-text);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration) var(--ease-out);
    pointer-events: none;
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-sm);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Gdy proof bar widoczny */
.proof-bar.is-visible ~ .back-to-top {
    bottom: calc(var(--space-xl) + 52px);
}

.back-to-top:hover {
    background-color: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────────
   STAR RATING
   ────────────────────────────────────────────── */
.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.star {
    fill: none;
    stroke: none;
}

.star--filled {
    fill: #f4c150;
    stroke: #f4c150;
}

.star--half {
    fill: url(#half-star);
    stroke: #f4c150;
}

.star--empty {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5;
}

.testimonials__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.testimonials__rating-text {
    font-size: var(--text-xs);
    color: var(--c-beige-dark);
    letter-spacing: 0.05em;
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

/* ──────────────────────────────────────────────
   VIDEO TRIGGER BUTTON
   ────────────────────────────────────────────── */
.video-trigger {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    transition: all var(--duration) var(--ease-smooth);
}

.video-trigger__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--c-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brown);
    transition: all var(--duration) var(--ease-out);
    position: relative;
}

/* Pulsujący ring na play button */
.video-trigger__icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: var(--radius-full);
    border: 1px solid var(--c-brown);
    opacity: 0;
    animation: pulse-ring 2.5s var(--ease-out) infinite;
}

.video-trigger:hover .video-trigger__icon {
    background-color: var(--c-brown);
    color: var(--c-white);
}

.video-trigger__text {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-brown-dark);
    letter-spacing: 0.05em;
}

.video-trigger:hover .video-trigger__text {
    color: var(--c-black);
}

/* ── Video Modal ── */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease-smooth);
    cursor: pointer;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal__inner {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    position: relative;
    cursor: default;
}

.video-modal__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--text-xl);
    transition: background-color var(--duration) var(--ease-smooth);
    border: none;
}

.video-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

/* ──────────────────────────────────────────────
   RESPONSIVE: nowe komponenty
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .results__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-bar__list {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .results__grid {
        grid-template-columns: 1fr;
    }

    .logos-bar__list {
        gap: var(--space-xl);
    }

    .logos-bar__item img {
        height: 28px;
    }

    .proof-bar__inner {
        gap: var(--space-lg);
        flex-wrap: wrap;
        justify-content: center;
        padding: var(--space-sm) var(--space-md);
    }

    .proof-bar__item {
        flex: 0 0 auto;
    }

    .floating-cta {
        bottom: var(--space-lg);
        right: var(--space-lg);
    }

    .floating-cta__tooltip {
        display: none;
    }

    .floating-cta__button {
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        left: var(--space-lg);
        width: 40px;
        height: 40px;
    }

    .result-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .result-card__duration {
        margin-left: 0;
    }
}

/* Ukryj proof bar na bardzo małych ekranach */
@media (max-width: 480px) {
    .proof-bar__inner {
        gap: var(--space-md);
    }

    .proof-bar__item:nth-child(n+3) {
        display: none;
    }
}

/* ──────────────────────────────────────────────
   ABOUT PAGE — Intro grid
   ────────────────────────────────────────────── */
.about-page__intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-page__intro-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-page__intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__intro-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(145deg, var(--c-beige) 0%, var(--c-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--c-brown);
}

.about-page__intro-text {
    font-size: var(--text-md);
    line-height: 1.9;
}

.about-page__intro-text p {
    margin-bottom: var(--space-lg);
    color: var(--c-text-light);
}

/* ──────────────────────────────────────────────
   TIMELINE
   ────────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 140px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--c-beige);
}

.timeline__item {
    position: relative;
    padding: var(--space-lg) 0 var(--space-lg) var(--space-xl);
}

.timeline__year {
    position: absolute;
    left: -140px;
    top: var(--space-lg);
    width: 100px;
    text-align: right;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-brown);
}

.timeline__dot {
    position: absolute;
    left: calc(-1 * var(--space-xl) - 5px);
    top: calc(var(--space-lg) + 6px);
    width: 11px;
    height: 11px;
    border-radius: var(--radius-full);
    background-color: var(--c-white);
    border: 2px solid var(--c-brown);
}

.timeline__item:hover .timeline__dot {
    background-color: var(--c-brown);
}

.timeline__text {
    font-size: var(--text-md);
    color: var(--c-text-light);
    line-height: 1.7;
}

/* ──────────────────────────────────────────────
   VALUES GRID
   ────────────────────────────────────────────── */
.values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background-color: var(--c-white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    border: 1px solid var(--c-border-light);
    transition: all var(--duration) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card__number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--c-beige);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.value-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.value-card__text {
    font-size: var(--text-sm);
    color: var(--c-text-light);
    line-height: 1.8;
}

/* ──────────────────────────────────────────────
   MISSION QUOTE
   ────────────────────────────────────────────── */
.mission-quote {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--c-beige);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    border: none;
    padding: 0;
    background: none;
}

.mission-author {
    font-size: var(--text-sm);
    color: var(--c-warm-gray);
    letter-spacing: 0.1em;
}

/* ──────────────────────────────────────────────
   SERVICES DETAILED (podstrona oferta)
   ────────────────────────────────────────────── */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    background-color: var(--c-white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    border: 1px solid var(--c-border-light);
    transition: all var(--duration) var(--ease-out);
}

.service-detailed:hover {
    box-shadow: var(--shadow-lg);
}

.service-detailed--highlighted {
    border-color: var(--c-brown);
    box-shadow: var(--shadow-md);
}

.service-detailed__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-detailed__number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--c-beige);
    line-height: 1;
}

.service-detailed__badge {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-white);
    background-color: var(--c-brown);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.service-detailed__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.service-detailed__description {
    font-size: var(--text-md);
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.service-detailed__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-detailed__features li {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--c-text-light);
}

.service-detailed__check {
    color: var(--c-brown);
    font-weight: 700;
    flex-shrink: 0;
}

.service-detailed__sidebar {
    display: flex;
    align-items: flex-start;
}

.service-detailed__price-box {
    background-color: var(--c-cream);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    width: 100%;
    position: sticky;
    top: 120px;
}

.service-detailed__price {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--c-black);
}

.service-detailed__price-note {
    font-size: var(--text-sm);
    color: var(--c-text-muted);
    margin-top: var(--space-xs);
}

/* ──────────────────────────────────────────────
   BLOG GRID
   ────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background-color: var(--c-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border-light);
    transition: all var(--duration) var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-lg) var(--ease-out);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__image--placeholder {
    background-color: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--c-beige-dark);
}

.blog-card__content {
    padding: var(--space-xl);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: var(--c-text-muted);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__category {
    color: var(--c-brown);
    font-weight: 600;
}

.blog-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog-card__title a {
    color: var(--c-black);
    transition: color var(--duration) var(--ease-smooth);
}

.blog-card__title a:hover {
    color: var(--c-brown);
}

.blog-card__excerpt {
    font-size: var(--text-sm);
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* ── Paginacja ── */
.blog-pagination {
    margin-top: var(--space-3xl);
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--c-text);
    border: 1px solid var(--c-border);
    transition: all var(--duration) var(--ease-smooth);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background-color: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
}

.blog-pagination .prev,
.blog-pagination .next {
    width: auto;
    padding: 0 var(--space-lg);
}

/* ──────────────────────────────────────────────
   SINGLE ARTICLE
   ────────────────────────────────────────────── */
.article-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: var(--text-md);
    line-height: 1.9;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--c-border);
}

.article-tag {
    font-size: var(--text-xs);
    color: var(--c-brown);
    background-color: var(--c-cream);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease-smooth);
}

.article-tag:hover {
    background-color: var(--c-brown);
    color: var(--c-white);
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background-color: var(--c-cream);
    border-radius: var(--radius-md);
}

.author-box__avatar {
    flex-shrink: 0;
}

.author-box__avatar img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-box__avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background-color: var(--c-brown);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
}

.author-box__name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-black);
    margin-bottom: var(--space-xs);
}

.author-box__bio {
    font-size: var(--text-sm);
    color: var(--c-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Article Navigation */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--c-border);
}

.article-nav__link {
    padding: var(--space-lg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    display: block;
}

.article-nav__link:hover {
    border-color: var(--c-brown);
    background-color: var(--c-cream);
}

.article-nav__link--next {
    text-align: right;
}

.article-nav__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.article-nav__title {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    color: var(--c-black);
    font-weight: 500;
}

/* ──────────────────────────────────────────────
   RESPONSIVE — PODSTRONY
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .service-detailed {
        grid-template-columns: 1fr;
    }

    .service-detailed__sidebar {
        border-top: 1px solid var(--c-border-light);
        padding-top: var(--space-xl);
    }

    .service-detailed__price-box {
        position: static;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page__intro {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline__year {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: var(--space-xs);
        font-size: var(--text-md);
    }

    .timeline__item {
        padding-left: var(--space-2xl);
    }

    .timeline__dot {
        left: 10px;
        top: calc(var(--space-lg) + 4px);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .article-nav__link--next {
        text-align: left;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════
   DODATKOWE SZABLONY — NOWE STYLE
   ═══════════════════════════════════════════════ */

/* ── Blog Filters ── */
.blog-filters {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--c-border-light);
}

.blog-filter {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--c-border);
    transition: all var(--duration) var(--ease-smooth);
}

.blog-filter:hover {
    border-color: var(--c-brown);
    color: var(--c-brown);
}

.blog-filter--active {
    background-color: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
}

/* ── Blog Card Image Placeholder ── */
.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--c-beige) 0%, var(--c-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--c-brown);
}

/* ── Blog grid fixed 3 columns ── */
.blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Blog Empty State ── */
.blog-empty {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.blog-empty__icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.blog-empty h2 {
    margin-bottom: var(--space-md);
}

.blog-empty p {
    color: var(--c-text-light);
    font-size: var(--text-md);
}

/* ── Article Share ── */
.article-share {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--c-border);
}

.article-share__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
}

.article-share__links {
    display: flex;
    gap: var(--space-sm);
}

.article-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--c-border);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--c-text-muted);
    transition: all var(--duration) var(--ease-out);
    cursor: pointer;
    background: none;
}

.article-share__link:hover {
    background-color: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
}

/* ── Contact Page ── */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.contact-method {
    text-align: center;
    padding: var(--space-2xl);
    background-color: var(--c-cream);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-method__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--c-brown);
}

.contact-method__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-text-muted);
    margin-bottom: var(--space-sm);
}

.contact-method__value {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--c-black);
    margin-bottom: var(--space-xs);
}

.contact-method__hint {
    font-size: var(--text-xs);
    color: var(--c-text-muted);
}

.contact-method__socials {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.contact-method__socials a {
    color: var(--c-brown);
    font-size: var(--text-sm);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all var(--duration) var(--ease-smooth);
}

.contact-method__socials a:hover {
    border-color: var(--c-brown);
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.contact__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--c-text-muted);
}

.contact__trust-item span {
    color: var(--c-brown);
    font-weight: 700;
}

/* ── Legal Content (polityka) ── */
.legal-content h2 {
    font-size: var(--text-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--c-border-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

/* ── Search ── */
.search-form {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.search-form .form-group__input {
    flex: 1;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.search-result {
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--c-border-light);
}

.search-result__type {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-brown);
    margin-bottom: var(--space-sm);
}

.search-result__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.search-result__title a {
    color: var(--c-black);
}

.search-result__title a:hover {
    color: var(--c-brown);
}

.search-result__excerpt {
    font-size: var(--text-sm);
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* ── Responsive — nowe elementy ── */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .blog-grid--3 {
        grid-template-columns: 1fr;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-form {
        flex-direction: column;
    }
}

/* ============================
   FOOTER – FINAL (overrides)
   Fix: grid, typography, separation
============================ */

.site-footer{
  background: #141210;
  color: rgba(255,255,255,.86);
  border-top: 2px solid rgba(90,70,52,.65);
}

/* CTA */
.site-footer .footer-cta{
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.site-footer .footer-cta__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 2rem;
  padding: 3.2rem 0;
}

.site-footer .footer-cta__label{
  display:inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.site-footer .footer-cta__title{
  margin: .6rem 0 .4rem;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  color: rgba(255,255,255,.96);
  /* jeśli globalnie masz serif na h2, wymuś font */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.site-footer .footer-cta__text{
  margin: 0;
  max-width: 62ch;
  color: rgba(255,255,255,.70);
}

/* Buttons in footer */
.site-footer .btn.btn--primary{
  background: var(--c-brown);
  border: 1px solid var(--c-brown);
  color: #fff;
}

.site-footer .btn.btn--secondary{
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.90);
}

.site-footer .btn.btn--secondary:hover{
  border-color: rgba(255,255,255,.40);
}

/* Main footer */
.site-footer .footer-main{
  padding: 3rem 0 2rem;
}

/* !!! GRID FIX - wymuszamy grid i kolumny */
.site-footer .footer-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Typografia nagłówków w stopce */
.site-footer .footer-col h4{
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Opis i linki */
.site-footer .footer-desc{
  margin: 10px 0 0;
  max-width: 34ch;
  color: rgba(255,255,255,.66);
}

.site-footer .footer-menu{
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-menu li{
  margin: 0 0 .6rem;
}

.site-footer .footer-menu a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.site-footer .footer-menu a:hover{
  color: #fff;
  text-decoration: underline;
}

/* Bottom bar */
.site-footer .footer-bottom{
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  color: rgba(255,255,255,.58);
}

/* Responsive */
@media (max-width: 900px){
  .site-footer .footer-cta__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .site-footer .footer-grid{
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────
   LEGAL PAGE — COOKIE TABLE
   ────────────────────────────────────────────── */

.cookie-table {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(205, 193, 180, 0.72);
    background: #fff;
}

.cookie-table__row {
    display: grid;
    grid-template-columns: 0.75fr 1.55fr 0.9fr;
}

.cookie-table__row + .cookie-table__row {
    border-top: 1px solid rgba(205, 193, 180, 0.62);
}

.cookie-table__row > div {
    padding: 0.95rem 1rem;
    color: var(--c-text-light);
    font-size: 0.96rem;
    line-height: 1.6;
}

.cookie-table__row > div + div {
    border-left: 1px solid rgba(205, 193, 180, 0.52);
}

.cookie-table__row--head {
    background: #f6f2ed;
}

.cookie-table__row--head > div {
    color: var(--c-black);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-table strong {
    color: var(--c-black);
}

@media (max-width: 767px) {
    .cookie-table__row {
        grid-template-columns: 1fr;
    }

    .cookie-table__row > div + div {
        border-left: 0;
        border-top: 1px solid rgba(205, 193, 180, 0.42);
    }

    .cookie-table__row--head {
        display: none;
    }

    .cookie-table__row > div {
        padding: 0.85rem 0.95rem;
    }
}

/* ──────────────────────────────────────────────
   LEGAL PAGE — COOKIE SETTINGS BUTTON
   ────────────────────────────────────────────── */

.legal-section__button {
    justify-self: start;
    min-height: 3rem;
    margin-top: 0.35rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid rgba(26, 26, 26, 0.18);
    background: var(--c-black);
    color: #fff;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.legal-section__button:hover {
    transform: translateY(-2px);
    background: var(--c-brown);
    border-color: var(--c-brown);
}

.legal-section__button:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 4px;
}

/* ──────────────────────────────────────────────
   LEGAL PAGES — PRIVACY / COOKIES
   ────────────────────────────────────────────── */

.legal-page {
    --legal-bg: #faf7f3;
    --legal-bg-soft: #f6f2ed;
    --legal-card-bg: rgba(255, 255, 255, 0.88);
    --legal-border: rgba(205, 193, 180, 0.68);
    --legal-line: rgba(205, 193, 180, 0.72);
    --legal-shadow: 0 24px 64px rgba(31, 24, 18, 0.075);

    background: var(--legal-bg);
    color: var(--c-text);
}

.legal-page * {
    box-sizing: border-box;
}

.legal-page__hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(6rem, 8vw, 8rem) clamp(4.5rem, 6vw, 6rem);
    background:
        radial-gradient(circle at 78% 10%, rgba(170, 146, 118, 0.16), transparent 34%),
        radial-gradient(circle at 12% 22%, rgba(228, 216, 203, 0.42), transparent 36%),
        linear-gradient(180deg, #faf7f3 0%, #f6f2ed 100%);
}

.legal-page__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(170, 146, 118, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 146, 118, 0.065) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 72%);
    pointer-events: none;
}

.legal-page__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    align-items: end;
    gap: clamp(2rem, 5vw, 5rem);
}

.legal-page__hero-content {
    max-width: 860px;
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 2vw, 2.15rem);
    color: var(--c-text-light);
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.legal-page__back:hover {
    color: var(--c-black);
    transform: translateX(-4px);
}

.legal-page__back:focus-visible,
.legal-page__quick-nav a:focus-visible,
.legal-page__toc a:focus-visible,
.legal-page .btn:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 4px;
}

.legal-page__number {
    margin: clamp(1.1rem, 2vw, 1.45rem) 0 0.45rem;
    color: rgba(170, 146, 118, 0.5);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.82;
    letter-spacing: -0.08em;
}

.legal-page__title {
    max-width: 11ch;
    margin: 0;
    color: var(--c-black);
    font-size: clamp(3.6rem, 7.4vw, 7rem);
    line-height: 0.86;
    letter-spacing: -0.074em;
    text-wrap: balance;
}

.legal-page__description {
    max-width: 56rem;
    margin: clamp(1.2rem, 2vw, 1.65rem) 0 0;
    color: var(--c-text);
    font-size: clamp(1.08rem, 0.75vw + 0.95rem, 1.34rem);
    line-height: 1.65;
}

.legal-page__meta-card {
    display: grid;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--legal-border);
    box-shadow: var(--legal-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.legal-page__meta-item {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem;
}

.legal-page__meta-item + .legal-page__meta-item {
    border-top: 1px solid rgba(205, 193, 180, 0.58);
}

.legal-page__meta-item span {
    color: var(--c-text-light);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.legal-page__meta-item strong,
.legal-page__meta-item a {
    color: var(--c-black);
    font-size: 1rem;
    line-height: 1.35;
    text-decoration: none;
}

.legal-page__meta-item a:hover {
    text-decoration: underline;
}

/* Quick nav */

.legal-page__quick-nav {
    position: sticky;
    top: var(--header-height, 72px);
    z-index: 40;
    background: rgba(250, 247, 243, 0.9);
    border-block: 1px solid rgba(205, 193, 180, 0.54);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.legal-page__quick-nav-inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.25rem);
    overflow-x: auto;
    scrollbar-width: none;
}

.legal-page__quick-nav-inner::-webkit-scrollbar {
    display: none;
}

.legal-page__quick-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 3.4rem;
    color: rgba(26, 26, 26, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.legal-page__quick-nav a:hover {
    color: var(--c-black);
}

/* Content */

.legal-page__content {
    background: #fff;
}

.legal-page__layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.legal-page__toc {
    position: sticky;
    top: calc(var(--header-height, 72px) + 5.25rem);
    padding: 1.15rem;
    background: #faf7f3;
    border: 1px solid rgba(205, 193, 180, 0.58);
}

.legal-page__toc-label {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--c-brown);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-page__toc ol {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding-left: 1.15rem;
}

.legal-page__toc li::marker {
    color: var(--c-brown);
}

.legal-page__toc a {
    color: var(--c-text-light);
    font-size: 0.94rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.25s ease;
}

.legal-page__toc a:hover {
    color: var(--c-black);
}

.legal-page__sections {
    display: grid;
    gap: clamp(1rem, 1.6vw, 1.4rem);
}

.legal-section {
    position: relative;
    scroll-margin-top: calc(var(--header-height, 72px) + 5.5rem);
    display: grid;
    grid-template-columns: auto minmax(0, 0.44fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 2.5rem);
    align-items: start;
    padding: clamp(1.3rem, 2.4vw, 2.2rem);
    background: #faf7f3;
    border: 1px solid rgba(205, 193, 180, 0.58);
    box-shadow: 0 12px 32px rgba(31, 24, 18, 0.035);
}

.legal-section__index {
    color: rgba(170, 146, 118, 0.6);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.legal-section__title {
    margin: 0;
    color: var(--c-black);
    font-size: clamp(1.75rem, 1.5vw + 1.2rem, 2.55rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

.legal-section__body {
    display: grid;
    gap: 0.85rem;
}

.legal-section__body p {
    margin: 0;
    color: var(--c-text-light);
    font-size: 1rem;
    line-height: 1.78;
}

.legal-section__link {
    margin-top: 0.35rem;
    font-weight: 700;
}

/* CTA */

.legal-page__cta {
    background:
        radial-gradient(circle at 86% 0%, rgba(170, 146, 118, 0.12), transparent 32%),
        linear-gradient(180deg, #faf7f3 0%, #f6f2ed 100%);
}

.legal-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(1.6rem, 4vw, 3.4rem);
    background:
        radial-gradient(circle at top right, rgba(170, 146, 118, 0.18), transparent 34%),
        linear-gradient(135deg, #f6f2ed 0%, #faf7f3 100%);
    border: 1px solid rgba(205, 193, 180, 0.72);
    box-shadow: 0 22px 58px rgba(31, 24, 18, 0.07);
    overflow: hidden;
}

.legal-cta::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(170, 146, 118, 0.15);
    pointer-events: none;
}

.legal-cta > * {
    position: relative;
    z-index: 1;
}

.legal-cta__title {
    max-width: 13.5ch;
    margin: 0.75rem 0 1rem;
    color: var(--c-black);
    font-size: clamp(2.55rem, 4.7vw, 4.95rem);
    line-height: 0.92;
    letter-spacing: -0.066em;
    text-wrap: balance;
}

.legal-cta__text {
    max-width: 58ch;
    margin: 0;
    color: var(--c-text-light);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 1024px) {
    .legal-page__hero-grid,
    .legal-page__layout,
    .legal-cta {
        grid-template-columns: 1fr;
    }

    .legal-page__toc {
        position: static;
        display: none;
    }

    .legal-section {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .legal-section__body {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .legal-page__hero {
        padding-block: 4.5rem 3.75rem;
    }

    .legal-page__title {
        font-size: clamp(3rem, 15vw, 5rem);
        line-height: 0.88;
    }

    .legal-page__number {
        font-size: clamp(2.85rem, 14vw, 4.6rem);
    }

    .legal-page__description {
        font-size: 1.04rem;
        line-height: 1.66;
    }

    .legal-page__quick-nav {
        top: var(--header-height, 68px);
    }

    .legal-section {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .legal-section__body {
        grid-column: auto;
    }

    .legal-cta {
        padding: 1.35rem;
        align-items: start;
    }

    .legal-cta::before {
        inset: 0.75rem;
    }

    .legal-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media print {
    .site-header,
    .legal-page__quick-nav,
    .legal-page__toc,
    .legal-page__cta,
    .site-footer {
        display: none !important;
    }

    .legal-page,
    .legal-page__content,
    .legal-section {
        background: #fff !important;
        box-shadow: none !important;
    }

    .legal-section {
        break-inside: avoid;
    }
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.25rem;
}

.footer-legal a {
    color: currentColor;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    opacity: 1;
    text-decoration: underline;
}

/* ──────────────────────────────────────────────
   COOKIE CONSENT — CUSTOM CMP
   ────────────────────────────────────────────── */

.cookie-consent,
.cookie-modal {
    position: fixed;
    z-index: 9999;
}

.cookie-consent {
    inset: auto 0 0;
    padding: 1rem;
    pointer-events: none;
}

.cookie-consent__card {
    width: min(100%, 1120px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: end;
    padding: clamp(1rem, 2vw, 1.35rem);
    background: rgba(250, 247, 243, 0.94);
    border: 1px solid rgba(205, 193, 180, 0.72);
    box-shadow: 0 24px 70px rgba(31, 24, 18, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
}

.cookie-consent__label {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: var(--c-brown);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.cookie-consent__title,
.cookie-modal__title {
    margin: 0;
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.cookie-consent__text,
.cookie-modal__intro,
.cookie-option p {
    margin: 0;
    color: var(--c-text-light);
    font-size: 0.96rem;
    line-height: 1.62;
}

.cookie-consent__text {
    max-width: 72ch;
    margin-top: 0.55rem;
}

.cookie-consent__link {
    display: inline-flex;
    margin-top: 0.55rem;
    color: var(--c-black);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.cookie-consent__actions,
.cookie-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cookie-consent__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background: transparent;
    color: var(--c-black);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.cookie-consent__button:hover {
    transform: translateY(-1px);
}

.cookie-consent__button:focus-visible,
.cookie-modal__close:focus-visible,
.cookie-option input:focus-visible {
    outline: 2px solid var(--c-brown);
    outline-offset: 4px;
}

.cookie-consent__button--primary {
    background: var(--c-black);
    border-color: var(--c-black);
    color: #fff;
}

.cookie-consent__button--primary:hover {
    background: var(--c-brown);
    border-color: var(--c-brown);
}

.cookie-consent__button--secondary {
    background: rgba(255, 255, 255, 0.55);
}

.cookie-consent__button--ghost {
    color: rgba(26, 26, 26, 0.72);
}

/* Modal */

.cookie-modal {
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.36);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: min(720px, 92svh);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: #faf7f3;
    border: 1px solid rgba(205, 193, 180, 0.72);
    box-shadow: 0 30px 90px rgba(17, 17, 17, 0.28);
    overflow: hidden;
}

.cookie-modal__header,
.cookie-modal__footer {
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.5);
}

.cookie-modal__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(205, 193, 180, 0.62);
}

.cookie-modal__footer {
    border-top: 1px solid rgba(205, 193, 180, 0.62);
}

.cookie-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 2.6rem;
    block-size: 2.6rem;
    border: 1px solid rgba(26, 26, 26, 0.16);
    background: rgba(255, 255, 255, 0.58);
    color: var(--c-black);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-modal__body {
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem;
    overflow: auto;
}

.cookie-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(205, 193, 180, 0.62);
}

.cookie-option h3 {
    margin: 0 0 0.35rem;
    color: var(--c-black);
    font-size: 1.15rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cookie-option__required {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.65rem;
    background: rgba(170, 146, 118, 0.14);
    color: var(--c-brown);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-option input[type="checkbox"] {
    inline-size: 2.65rem;
    block-size: 1.45rem;
    appearance: none;
    position: relative;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background: #e9e1d9;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-option input[type="checkbox"]::before {
    content: "";
    position: absolute;
    inset: 0.18rem auto 0.18rem 0.18rem;
    aspect-ratio: 1;
    background: #fff;
    box-shadow: 0 2px 6px rgba(31, 24, 18, 0.16);
    transition: transform 0.2s ease;
}

.cookie-option input[type="checkbox"]:checked {
    background: var(--c-black);
    border-color: var(--c-black);
}

.cookie-option input[type="checkbox"]:checked::before {
    transform: translateX(1.18rem);
}

@media (max-width: 767px) {
    .cookie-consent {
        padding: 0.75rem;
    }

    .cookie-consent__card {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cookie-consent__actions,
    .cookie-modal__footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-consent__button {
        width: 100%;
    }

    .cookie-option {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cookie-option input[type="checkbox"] {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent__button,
    .cookie-option input[type="checkbox"],
    .cookie-option input[type="checkbox"]::before {
        transition: none;
    }

    .cookie-consent__button:hover {
        transform: none;
    }
}

/* ──────────────────────────────────────────────
   COOKIE MODAL — CLICKABILITY FIX
   ────────────────────────────────────────────── */

.cookie-consent[hidden],
.cookie-modal[hidden] {
    display: none !important;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 1rem;
    pointer-events: auto;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(17, 17, 17, 0.36);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.cookie-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    max-height: min(720px, 92svh);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: #faf7f3;
    border: 1px solid rgba(205, 193, 180, 0.72);
    box-shadow: 0 30px 90px rgba(17, 17, 17, 0.28);
    overflow: hidden;
    pointer-events: auto;
}

.cookie-modal__dialog *,
.cookie-modal__dialog button,
.cookie-modal__dialog input,
.cookie-modal__dialog label {
    pointer-events: auto;
}

.cookie-modal__close {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 2.6rem;
    block-size: 2.6rem;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background: rgba(255, 255, 255, 0.78);
    color: var(--c-black);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-option {
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    position: relative;
    z-index: 4;
    cursor: pointer;
}

/* ──────────────────────────────────────────────
   COOKIE CONSENT — HARD FIX
   ────────────────────────────────────────────── */

.cookie-consent[hidden],
.cookie-modal[hidden] {
    display: none !important;
}

.cookie-consent,
.cookie-modal {
    pointer-events: auto;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(17, 17, 17, 0.36);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.cookie-modal__dialog {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.cookie-modal__dialog *,
.cookie-modal__dialog button,
.cookie-modal__dialog input,
.cookie-modal__dialog label {
    pointer-events: auto;
}

.cookie-modal__close,
.cookie-consent__button,
.cookie-option,
.cookie-option input {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

.legal-section__button {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE FIXES - Wersja 1.1.0 (2024-05-08)
   CRITICAL: Hamburger visibility, touch targets, responsive
   ══════════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HAMBURGER - ZAWSZE WIDOCZNY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* KRYTYCZNA POPRAWKA: Hamburger z tłem żeby był zawsze widoczny */
.hamburger {
  position: relative;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px !important;
  padding: 10px 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease !important;
}

/* Po scrollu - white background */
.site-header.is-scrolled .hamburger {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

/* Przed scrollem - semi-transparent */
.site-header:not(.is-scrolled) .hamburger {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Hamburger lines - ZAWSZE widoczne */
.hamburger__line {
  background: #1a1a1a !important;
}

/* Przed scrollem - białe linie */
.site-header:not(.is-scrolled) .hamburger__line {
  background: #ffffff !important;
}

/* Hover effect */
.hamburger:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

/* Active state */
.hamburger.is-active {
  background: rgba(255, 255, 255, 0.98) !important;
}

.hamburger.is-active .hamburger__line {
  background: #1a1a1a !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE MENU - Większe touch targets (min 44x44px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 920px) {
  /* Mobile navigation */
  .nav.is-open {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Większe klikalne obszary - WCAG AAA (min 44x44px) */
  .nav.is-open .nav__link {
    padding: 14px 12px !important;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 1.05rem !important;
    font-weight: 500;
  }
  
  /* Active link highlight */
  .nav.is-open .nav__item--active .nav__link {
    background: rgba(166, 139, 107, 0.08);
    border-left: 3px solid #a68b6b;
    padding-left: 9px !important;
    font-weight: 600;
  }
  
  /* CTA button większy */
  .nav.is-open .nav__cta .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    font-size: 1rem !important;
    font-weight: 600;
  }
  
  /* Backdrop fallback dla starszych iOS */
  @supports not (backdrop-filter: blur(14px)) {
    .nav.is-open {
      background: rgba(255, 255, 255, 0.98) !important;
    }
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER - Email bardziej widoczny
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Email w footerze - wyróżniony */
.footer-contact-link[href^="mailto"] {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
}

.footer-contact-link[href^="mailto"]:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOCIAL MEDIA - Większe touch targets
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  .footer-social__link {
    width: 44px !important;  /* min WCAG touch target */
    height: 44px !important;
  }
  
  .footer-social__link svg {
    width: 22px !important;
    height: 22px !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS - iOS Zoom Prevention (min 16px font)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  /* Zapobiega zoom na iOS przy focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;
  }
  
  /* Labels większe */
  label {
    font-size: 15px !important;
  }
  
  /* Submit button większy */
  button[type="submit"],
  input[type="submit"],
  .btn {
    min-height: 48px !important;
    font-size: 16px !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO - Better mobile image handling
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  .hero__image img {
    object-position: center 20% !important; /* Dostosuj do twarzy */
    min-height: 500px;
    max-height: 70vh;
  }
  
  .hero__content {
    padding: 2.5rem 1.5rem !important;
  }
  
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE BANNER - Lepszy UX na mobile
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  .cookie-consent {
    padding: 0.75rem !important;
  }
  
  .cookie-consent__card {
    gap: 1.5rem !important;
  }
  
  /* Stack przyciski vertically */
  .cookie-consent__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    width: 100%;
  }
  
  .cookie-consent__button {
    width: 100% !important;
    min-height: 44px !important;
    font-size: 0.95rem !important;
  }
  
  /* Pierwsza akcja (Accept) wyróżniona */
  .cookie-consent__button--primary {
    order: -1; /* Na górze */
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SLIDER SERVICES - Touch indicators
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  /* Dodaj subtle hint że można swipe */
  .services-slider {
    position: relative;
  }
  
  .services-slider::after {
    content: '← swipe →';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInOut 3s ease-in-out infinite;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCESSIBILITY - Focus indicators
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Lepsze focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #a68b6b !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

.hamburger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8) !important;
  outline-offset: 4px !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PERFORMANCE - Smooth scrolling na iOS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html {
  -webkit-overflow-scrolling: touch;
}

/* Zapobiega "pull to refresh" na mobile podczas scrollu */
body {
  overscroll-behavior-y: contain;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES - Mobile spacing
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 480px) {
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  
  /* Sections padding */
  .section {
    padding-top: clamp(3rem, 10vw, 5rem) !important;
    padding-bottom: clamp(3rem, 10vw, 5rem) !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   END MOBILE FIXES
   ══════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   SUBPAGES POLISH — v1.0.1
   Scope: additional pages only. Front page remains untouched.
   ══════════════════════════════════════════════════════════════════ */

body.is-subpage {
    --subpage-bg: #fbf8f4;
    --subpage-card: rgba(255, 255, 255, 0.92);
    --subpage-card-solid: #ffffff;
    --subpage-border: rgba(205, 193, 180, 0.66);
    --subpage-border-strong: rgba(166, 139, 107, 0.45);
    --subpage-shadow: 0 24px 70px rgba(31, 24, 18, 0.08);
    --subpage-shadow-soft: 0 14px 38px rgba(31, 24, 18, 0.055);
    background:
        radial-gradient(circle at 12% 8%, rgba(232, 221, 211, 0.46), transparent 34rem),
        linear-gradient(180deg, #fff 0%, var(--subpage-bg) 48%, #fff 100%);
}

body.is-subpage .site-main {
    background:
        radial-gradient(circle at 95% 9%, rgba(166, 139, 107, 0.09), transparent 30rem),
        radial-gradient(circle at 0% 44%, rgba(232, 221, 211, 0.32), transparent 28rem);
}

/* Premium hero for non-home pages */
body.is-subpage .page-hero--standard,
body.is-search-page .page-hero--standard,
body.is-blog-page .page-hero--standard,
body.is-default-page .page-hero--standard {
    isolation: isolate;
    padding-top: calc(80px + clamp(4.8rem, 7vw, 7.5rem));
    padding-bottom: clamp(3.8rem, 6vw, 6.4rem);
    background:
        radial-gradient(circle at 82% 15%, rgba(232, 221, 211, 0.20), transparent 28rem),
        radial-gradient(circle at 14% 20%, rgba(166, 139, 107, 0.20), transparent 24rem),
        linear-gradient(135deg, #0f0e0d 0%, #241f1b 48%, #171513 100%);
}

body.is-subpage .page-hero--standard::before,
body.is-subpage .page-hero--article::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
    pointer-events: none;
}

body.is-subpage .page-hero--standard::after,
body.is-subpage .page-hero--article::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 221, 211, 0.42), transparent);
    pointer-events: none;
}

body.is-subpage .page-hero__content {
    max-width: 880px;
}

body.is-subpage .page-hero__content:not(.page-hero__content--center) {
    margin-inline: auto;
    text-align: center;
}

body.is-subpage .page-hero__subtitle {
    padding: 0.48rem 0.86rem;
    border: 1px solid rgba(232, 221, 211, 0.22);
    background: rgba(255, 255, 255, 0.055);
    color: var(--c-beige);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.is-subpage .page-hero__title {
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(3rem, 6.2vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.068em;
    text-wrap: balance;
}

body.is-subpage .page-hero__description {
    max-width: 720px;
    margin-inline: auto;
    color: rgba(232, 221, 211, 0.84) !important;
    font-size: clamp(1rem, 0.6vw + 0.95rem, 1.24rem) !important;
}

/* Tall image hero: About */
body.is-about-page .page-hero--tall {
    min-height: min(72vh, 760px);
    isolation: isolate;
}

body.is-about-page .page-hero__background img {
    opacity: 0.48;
    transform: scale(1.01);
}

body.is-about-page .page-hero__overlay {
    background:
        radial-gradient(circle at 70% 20%, rgba(166, 139, 107, 0.22), transparent 26rem),
        linear-gradient(180deg, rgba(10, 10, 10, 0.46), rgba(10, 10, 10, 0.82));
}

/* Universal readable content cards */
body.is-default-page .page-content,
body.is-privacy-page .legal-content,
body.is-single-post .article-content {
    position: relative;
    padding: clamp(1.35rem, 3vw, 2.65rem);
    background: var(--subpage-card-solid);
    border: 1px solid var(--subpage-border);
    box-shadow: var(--subpage-shadow-soft);
}

body.is-subpage .page-content h2,
body.is-subpage .legal-content h2,
body.is-single-post .article-content h2 {
    margin-top: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.85rem;
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
}

body.is-subpage .page-content h2:first-child,
body.is-subpage .legal-content h2:first-child,
body.is-single-post .article-content h2:first-child {
    margin-top: 0;
}

body.is-subpage .page-content h3,
body.is-single-post .article-content h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.65rem;
    font-size: clamp(1.45rem, 1.7vw, 2.1rem);
}

body.is-subpage .page-content p,
body.is-subpage .legal-content p,
body.is-single-post .article-content p,
body.is-subpage .page-content li,
body.is-single-post .article-content li {
    color: rgba(44, 44, 44, 0.76);
    font-size: clamp(1rem, 0.24vw + 0.98rem, 1.08rem);
    line-height: 1.86;
}

body.is-subpage .page-content ul,
body.is-subpage .page-content ol,
body.is-single-post .article-content ul,
body.is-single-post .article-content ol {
    display: grid;
    gap: 0.72rem;
    margin: 1.25rem 0 1.75rem;
    padding-left: 1.25rem;
    list-style: initial;
}

body.is-subpage .page-content a,
body.is-single-post .article-content a,
body.is-privacy-page .legal-content a {
    color: var(--c-brown-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

body.is-subpage .section--cream {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.66), transparent 24rem),
        linear-gradient(180deg, #f7f2ec 0%, #f2ebe3 100%);
}

/* ABOUT PAGE */
body.is-about-page .about-page__intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(1.2rem, 2vw, 1.6rem);
    background: var(--subpage-card);
    border: 1px solid var(--subpage-border);
    box-shadow: var(--subpage-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.is-about-page .about-page__intro-image {
    position: relative;
    isolation: isolate;
    min-height: clamp(340px, 42vw, 540px);
    overflow: hidden;
    background: linear-gradient(145deg, #eee5dc 0%, #fff 100%);
}

body.is-about-page .about-page__intro-image::before {
    content: "";
    position: absolute;
    inset: 1rem;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.74);
    pointer-events: none;
}

body.is-about-page .about-page__intro-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.20));
    pointer-events: none;
}

body.is-about-page .about-page__intro-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

body.is-about-page .about-page__intro-placeholder {
    min-height: inherit;
}

body.is-about-page .about-page__intro-text {
    max-width: 680px;
    padding: clamp(0.4rem, 2vw, 1.4rem);
}

body.is-about-page .about-page__intro-text p:first-child {
    color: var(--c-black);
    font-size: clamp(1.15rem, 0.65vw + 1rem, 1.42rem);
    line-height: 1.72;
}

body.is-about-page .timeline {
    padding-left: 0;
}

body.is-about-page .timeline::before {
    left: clamp(5.4rem, 12vw, 8.6rem);
    background: linear-gradient(180deg, transparent, rgba(166, 139, 107, 0.62), transparent);
}

body.is-about-page .timeline__item {
    display: grid;
    grid-template-columns: clamp(4.6rem, 10vw, 7.8rem) auto minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.8rem);
    align-items: center;
    padding: 1rem 0;
}

body.is-about-page .timeline__year,
body.is-about-page .timeline__dot,
body.is-about-page .timeline__text {
    position: static;
}

body.is-about-page .timeline__year {
    width: auto;
    text-align: right;
    font-size: clamp(1.2rem, 1.4vw, 1.8rem);
}

body.is-about-page .timeline__dot {
    width: 0.86rem;
    height: 0.86rem;
    box-shadow: 0 0 0 0.55rem #fbf8f4;
}

body.is-about-page .timeline__text {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(205, 193, 180, 0.58);
}

body.is-about-page .values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

body.is-about-page .value-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(166, 139, 107, 0.12), transparent 11rem),
        var(--subpage-card-solid);
    border-color: rgba(205, 193, 180, 0.72);
    box-shadow: 0 14px 34px rgba(31, 24, 18, 0.045);
}

body.is-about-page .value-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-brown), rgba(166, 139, 107, 0.12));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}

body.is-about-page .value-card:hover::after {
    transform: scaleX(1);
}

body.is-about-page .mission-quote {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    color: #f0e5da;
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.35;
}

/* CONTACT PAGE */
body.is-contact-page .contact-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

body.is-contact-page .contact-method {
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(1.25rem, 2.2vw, 2rem);
    background:
        radial-gradient(circle at top right, rgba(166, 139, 107, 0.13), transparent 11rem),
        var(--subpage-card-solid);
    border: 1px solid var(--subpage-border);
    box-shadow: 0 14px 38px rgba(31, 24, 18, 0.052);
}

body.is-contact-page .contact-method::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(166, 139, 107, 0.52), transparent);
}

body.is-contact-page .contact-method__icon {
    width: 3.8rem;
    height: 3.8rem;
    color: var(--c-brown-dark);
    background: #f6f0e9;
    border: 1px solid rgba(166, 139, 107, 0.22);
}

body.is-contact-page .contact-method__value {
    overflow-wrap: anywhere;
    color: var(--c-black);
    font-size: clamp(1.05rem, 0.7vw + 0.9rem, 1.28rem);
}

body.is-contact-page .contact-page__grid {
    align-items: stretch;
    gap: clamp(1.4rem, 4vw, 4rem);
}

body.is-contact-page .contact-page__grid > .reveal:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.76), transparent 17rem),
        rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(205, 193, 180, 0.62);
}

body.is-contact-page .contact__trust {
    display: grid;
    gap: 0.8rem;
}

body.is-contact-page .contact__trust-item {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    padding: 0.84rem 0.95rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(205, 193, 180, 0.56);
    color: var(--c-text);
}

body.is-contact-page .contact__trust-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 1.55rem;
    border-radius: 999px;
    background: var(--c-brown);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

body.is-contact-page .contact-form {
    border: 1px solid rgba(205, 193, 180, 0.74);
    box-shadow: var(--subpage-shadow);
}

body.is-contact-page .form-group__input,
body.is-contact-page .form-group__textarea,
body.is-search-page .search-form .form-group__input {
    border: 1px solid rgba(205, 193, 180, 0.82);
    background: rgba(255, 255, 255, 0.94);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

body.is-contact-page .form-group__input:focus,
body.is-contact-page .form-group__textarea:focus,
body.is-search-page .search-form .form-group__input:focus {
    border-color: rgba(166, 139, 107, 0.76);
    box-shadow: 0 0 0 4px rgba(166, 139, 107, 0.12);
    background: #fff;
}

/* SERVICES LIST PAGE */
body.is-services-page .services-detailed {
    gap: clamp(1.1rem, 2vw, 1.6rem);
}

body.is-services-page .service-detailed {
    position: relative;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2.6rem);
    background:
        radial-gradient(circle at 0 0, rgba(166, 139, 107, 0.10), transparent 18rem),
        var(--subpage-card-solid);
    border-color: var(--subpage-border);
    box-shadow: 0 16px 42px rgba(31, 24, 18, 0.052);
}

body.is-services-page .service-detailed::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(166, 139, 107, 0.85), rgba(166, 139, 107, 0.12));
    opacity: 0.74;
}

body.is-services-page .service-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--subpage-shadow);
}

body.is-services-page .service-detailed--highlighted {
    border-color: rgba(166, 139, 107, 0.64);
    background:
        radial-gradient(circle at 100% 0%, rgba(166, 139, 107, 0.18), transparent 18rem),
        linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
}

body.is-services-page .service-detailed__number {
    color: rgba(166, 139, 107, 0.55);
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.82;
    letter-spacing: -0.075em;
}

body.is-services-page .service-detailed__title {
    max-width: 12ch;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.068em;
}

body.is-services-page .service-detailed__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

body.is-services-page .service-detailed__features li {
    align-items: flex-start;
    padding: 0.72rem 0.8rem;
    background: rgba(246, 240, 235, 0.72);
    border: 1px solid rgba(205, 193, 180, 0.54);
}

body.is-services-page .service-detailed__price-box {
    border: 1px solid rgba(205, 193, 180, 0.72);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.82), transparent 9rem),
        #f6f0e9;
    box-shadow: 0 12px 30px rgba(31, 24, 18, 0.048);
}

/* SINGLE / BLOG / SEARCH */
body.is-blog-page .blog-filters {
    position: relative;
    justify-content: center;
    padding: 0.65rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    background: rgba(246, 240, 235, 0.76);
    border: 1px solid rgba(205, 193, 180, 0.72);
    overflow-x: auto;
    scrollbar-width: none;
}

body.is-blog-page .blog-filters::-webkit-scrollbar {
    display: none;
}

body.is-blog-page .blog-filter {
    border-color: transparent;
    background: transparent;
}

body.is-blog-page .blog-filter--active,
body.is-blog-page .blog-filter:hover {
    background: #fff;
    box-shadow: 0 8px 18px rgba(31, 24, 18, 0.06);
}

body.is-blog-page .blog-card,
body.is-single-post .blog-card {
    border-color: var(--subpage-border);
    box-shadow: 0 14px 36px rgba(31, 24, 18, 0.048);
}

body.is-blog-page .blog-card__image,
body.is-single-post .blog-card__image {
    background: #f1e8de;
}

body.is-blog-page .blog-card__content,
body.is-single-post .blog-card__content {
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

body.is-blog-page .blog-card__content .text-link,
body.is-single-post .blog-card__content .text-link {
    margin-top: auto;
}

body.is-single-post .page-hero--article {
    padding-top: calc(80px + clamp(4.4rem, 7vw, 7rem));
    padding-bottom: clamp(4.2rem, 6vw, 6.5rem);
}

body.is-single-post .page-hero--article .page-hero__title {
    max-width: 820px;
    font-size: clamp(3rem, 5.6vw, 5.8rem);
}

body.is-single-post .article-featured-image {
    margin-top: clamp(-3.8rem, -5vw, -2rem);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--subpage-shadow);
}

body.is-single-post .article-featured-image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

body.is-single-post .article-share,
body.is-single-post .author-box,
body.is-single-post .article-nav {
    border: 1px solid var(--subpage-border);
    box-shadow: 0 12px 30px rgba(31, 24, 18, 0.044);
}

body.is-single-post .article-share {
    padding: 1rem;
    background: #fbf8f4;
}

body.is-single-post .article-share__link {
    background: #fff;
}

body.is-single-post .author-box {
    background:
        radial-gradient(circle at 100% 0%, rgba(166, 139, 107, 0.12), transparent 12rem),
        #fbf8f4;
}

body.is-search-page .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #fff;
    border: 1px solid var(--subpage-border);
    box-shadow: var(--subpage-shadow-soft);
}

body.is-search-page .search-results {
    gap: 1rem;
}

body.is-search-page .search-result {
    padding: clamp(1.2rem, 2vw, 1.8rem);
    background:
        radial-gradient(circle at top right, rgba(166, 139, 107, 0.10), transparent 12rem),
        #fff;
    border: 1px solid var(--subpage-border);
    box-shadow: 0 12px 30px rgba(31, 24, 18, 0.044);
}

body.is-search-page .search-result:hover {
    transform: translateY(-3px);
    box-shadow: var(--subpage-shadow-soft);
}

/* LEGAL / PRIVACY */
body.is-privacy-page .legal-content {
    max-width: 880px;
    margin-inline: auto;
}

body.is-privacy-page .legal-content h2 {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(205, 193, 180, 0.72);
}

body.is-privacy-page .legal-content h2:first-child {
    padding-top: 0;
    border-top: 0;
}

body.is-legal-page .legal-section {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.is-legal-page .legal-section:hover {
    transform: translateY(-2px);
    border-color: rgba(166, 139, 107, 0.42);
    box-shadow: 0 18px 46px rgba(31, 24, 18, 0.062);
}

/* 404 */
body.is-error-page .site-main {
    min-height: 100svh;
    background:
        radial-gradient(circle at 50% 0%, rgba(166, 139, 107, 0.20), transparent 26rem),
        linear-gradient(135deg, #111 0%, #25211d 52%, #111 100%);
}

body.is-error-page .site-main h1,
body.is-error-page .site-main p {
    color: #fff;
}

/* CTA blocks on subpages */
body.is-subpage .section > .container--narrow.reveal,
body.is-blog-page .section--cream > .container--narrow.reveal,
body.is-single-post .section > .container--narrow.reveal {
    position: relative;
}

body.is-subpage .section > .container--narrow.reveal h2,
body.is-blog-page .section--cream > .container--narrow.reveal h2,
body.is-single-post .section > .container--narrow.reveal h2 {
    text-wrap: balance;
}

/* Responsive polish */
@media (max-width: 1100px) {
    body.is-about-page .values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.is-contact-page .contact-methods {
        grid-template-columns: 1fr;
    }

    body.is-services-page .service-detailed,
    body.is-contact-page .contact-page__grid {
        grid-template-columns: 1fr;
    }

    body.is-services-page .service-detailed__price-box {
        position: static;
    }
}

@media (max-width: 768px) {
    body.is-subpage .page-hero--standard,
    body.is-single-post .page-hero--article {
        padding-top: calc(70px + 3.5rem);
        padding-bottom: 3.25rem;
    }

    body.is-subpage .page-hero__title,
    body.is-single-post .page-hero--article .page-hero__title {
        max-width: 11.5ch;
        font-size: clamp(2.55rem, 15vw, 4.1rem);
    }

    body.is-about-page .page-hero--tall {
        min-height: 520px;
    }

    body.is-about-page .about-page__intro,
    body.is-about-page .timeline__item {
        grid-template-columns: 1fr;
    }

    body.is-about-page .timeline::before {
        display: none;
    }

    body.is-about-page .timeline__year {
        text-align: left;
    }

    body.is-about-page .timeline__dot {
        display: none;
    }

    body.is-about-page .values__grid,
    body.is-services-page .service-detailed__features,
    body.is-search-page .search-form {
        grid-template-columns: 1fr;
    }

    body.is-contact-page .contact-method {
        min-height: auto;
    }

    body.is-single-post .article-share__links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    body.is-single-post .article-share__link {
        width: 100%;
    }
}

@media (max-width: 520px) {
    body.is-subpage .page-content,
    body.is-privacy-page .legal-content,
    body.is-single-post .article-content,
    body.is-contact-page .contact-page__grid > .reveal:first-child,
    body.is-contact-page .contact-form,
    body.is-services-page .service-detailed {
        margin-inline: -0.35rem;
    }

    body.is-subpage .page-hero__subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.15em;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.is-subpage .blog-card,
    body.is-subpage .value-card,
    body.is-subpage .service-detailed,
    body.is-subpage .search-result,
    body.is-legal-page .legal-section {
        transition: none !important;
    }

    body.is-subpage .blog-card:hover,
    body.is-subpage .value-card:hover,
    body.is-subpage .service-detailed:hover,
    body.is-subpage .search-result:hover,
    body.is-legal-page .legal-section:hover {
        transform: none !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   HEADER + FOOTER — PREMIUM POLISH v1.0.2
   Cel: spójny header, lepsza stopka, mocniejszy mobile UX.
   Zmiany są globalne dla header/footer, bez dotykania front-page.php.
   ════════════════════════════════════════════════════════════════ */

:root {
  --header-max: 1240px;
  --header-pad-x: clamp(16px, 4vw, 32px);
  --header-height: 76px;
  --header-height-scrolled: 64px;
  --footer-bg: #15110e;
  --footer-bg-soft: #211a15;
  --footer-line: rgba(255, 255, 255, 0.1);
  --footer-muted: rgba(255, 255, 255, 0.66);
  --footer-text: rgba(255, 255, 255, 0.88);
}

html {
  scroll-padding-top: calc(var(--header-height-scrolled) + 20px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(139, 115, 85, 0.45);
  outline-offset: 3px;
}

/* ──────────────────────────────────────────────
   Header — desktop / base
   ────────────────────────────────────────────── */
.site-header {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 9990 !important;
  width: 100% !important;
  padding: 0 !important;
  background: rgba(248, 245, 240, 0.86) !important;
  border-bottom: 1px solid rgba(88, 68, 52, 0.1);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: none !important;
  transition:
    background-color 0.28s var(--ease-smooth),
    border-color 0.28s var(--ease-smooth),
    box-shadow 0.28s var(--ease-smooth),
    transform 0.24s var(--ease-smooth) !important;
}

body.is-front-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(248, 245, 240, 0.9), rgba(248, 245, 240, 0.68)) !important;
  border-bottom-color: rgba(88, 68, 52, 0.08);
}

body.is-subpage .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(18, 14, 12, 0.86), rgba(18, 14, 12, 0.38)) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: rgba(88, 68, 52, 0.13) !important;
  box-shadow: 0 16px 40px rgba(30, 24, 18, 0.08) !important;
}

.site-header__wrap {
  width: 100% !important;
  max-width: var(--header-max) !important;
  margin: 0 auto !important;
  padding: 0 var(--header-pad-x) !important;
}

.site-header__inner {
  min-height: var(--header-height) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(14px, 2.4vw, 34px) !important;
  transition: min-height 0.24s var(--ease-smooth) !important;
}

.site-header.is-scrolled .site-header__inner {
  min-height: var(--header-height-scrolled) !important;
}

.site-logo {
  min-width: 0;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
  color: var(--c-black) !important;
  text-decoration: none !important;
}

.site-logo__text {
  color: var(--c-black) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.32rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
}

.site-logo__dot {
  color: var(--c-brown) !important;
}

.site-logo__image {
  width: auto !important;
  max-width: min(180px, 44vw) !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
}

body.is-subpage .site-header:not(.is-scrolled) .site-logo,
body.is-subpage .site-header:not(.is-scrolled) .site-logo__text,
body.is-subpage .site-header:not(.is-scrolled) .site-logo__dot {
  color: #fff !important;
}

body.is-subpage .site-header:not(.is-scrolled) .site-logo__image {
  filter: brightness(0) invert(1) contrast(1.08) !important;
}

.nav {
  min-width: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(12px, 1.8vw, 24px) !important;
}

.nav__main {
  min-width: 0;
}

.nav__list {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(10px, 1.6vw, 24px) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav__link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  padding: 0.45rem 0.14rem !important;
  color: rgba(31, 27, 23, 0.72) !important;
  font-size: clamp(0.69rem, 0.72vw, 0.78rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  transition: color 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth) !important;
}

.nav__link::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0.38rem !important;
  width: auto !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--c-brown), rgba(139, 115, 85, 0.28)) !important;
  border-radius: 999px !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  opacity: 1 !important;
  transition: transform 0.22s var(--ease-out) !important;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__item--active .nav__link,
.current-menu-item > .nav__link,
.current_page_item > .nav__link {
  color: var(--c-black) !important;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__item--active .nav__link::after,
.current-menu-item > .nav__link::after,
.current_page_item > .nav__link::after {
  transform: scaleX(1) !important;
}

body.is-subpage .site-header:not(.is-scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.is-subpage .site-header:not(.is-scrolled) .nav__link:hover,
body.is-subpage .site-header:not(.is-scrolled) .nav__link:focus-visible,
body.is-subpage .site-header:not(.is-scrolled) .nav__item--active .nav__link,
body.is-subpage .site-header:not(.is-scrolled) .current-menu-item > .nav__link,
body.is-subpage .site-header:not(.is-scrolled) .current_page_item > .nav__link {
  color: #fff !important;
}

.nav__cta {
  display: inline-flex !important;
  align-items: center !important;
  margin-left: clamp(0.1rem, 0.65vw, 0.65rem) !important;
}

.nav__cta .btn {
  min-height: 42px !important;
  padding: 0.8rem 1.16rem !important;
  border-radius: 14px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.105em !important;
  box-shadow: 0 14px 30px rgba(91, 72, 53, 0.14) !important;
}

.nav__cta .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 38px rgba(91, 72, 53, 0.22) !important;
}

.hamburger {
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 5px !important;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  border: 1px solid rgba(88, 68, 52, 0.14) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.64) !important;
  box-shadow: 0 12px 28px rgba(36, 29, 23, 0.1) !important;
  cursor: pointer !important;
  transition: background-color 0.22s var(--ease-smooth), border-color 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth) !important;
}

.hamburger:hover {
  transform: translateY(-1px) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.hamburger__line {
  display: block !important;
  width: 20px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: var(--c-black) !important;
  box-shadow: none !important;
  transition: transform 0.24s var(--ease-out), opacity 0.2s var(--ease-smooth), background-color 0.2s var(--ease-smooth) !important;
}

body.is-subpage .site-header:not(.is-scrolled) .hamburger {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16) !important;
}

body.is-subpage .site-header:not(.is-scrolled) .hamburger__line {
  background: #fff !important;
}

.hamburger.is-active {
  position: relative !important;
  z-index: 10000 !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.hamburger.is-active .hamburger__line {
  background: #fff !important;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

.nav__link:focus-visible,
.nav__cta .btn:focus-visible,
.hamburger:focus-visible,
.site-logo:focus-visible {
  outline: 3px solid rgba(139, 115, 85, 0.36) !important;
  outline-offset: 4px !important;
  border-radius: 12px;
}

body.menu-open {
  overflow: hidden !important;
}

@media (max-width: 1120px) {
  .nav__list {
    gap: clamp(8px, 1.1vw, 14px) !important;
  }

  .nav__cta .btn {
    padding-inline: 1rem !important;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
    --header-height-scrolled: 62px;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 1rem !important;
  }

  .hamburger {
    display: inline-flex !important;
  }

  .nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9998 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 1.35rem !important;
    width: 100% !important;
    height: 100dvh !important;
    padding: calc(var(--header-height) + 1rem) clamp(18px, 5vw, 34px) 2rem !important;
    background:
      radial-gradient(circle at 18% 12%, rgba(166, 139, 107, 0.25), transparent 28%),
      radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(145deg, rgba(13, 10, 9, 0.99), rgba(34, 26, 20, 0.99)) !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    transition: opacity 0.28s var(--ease-smooth), visibility 0.28s var(--ease-smooth), transform 0.28s var(--ease-out) !important;
  }

  .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav__main {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 auto !important;
  }

  .nav__list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.72rem !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .nav__item {
    width: 100% !important;
  }

  .nav.is-open .nav__link,
  .nav__link {
    width: 100% !important;
    min-height: 56px !important;
    justify-content: space-between !important;
    padding: 1rem 1.05rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.065) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.075em !important;
    text-transform: uppercase !important;
  }

  .nav.is-open .nav__link::after,
  .nav__link::after {
    display: none !important;
  }

  .nav.is-open .nav__link::before,
  .nav__link::before {
    content: "";
    order: 2;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.65;
    transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-smooth);
  }

  .nav.is-open .nav__link:hover,
  .nav.is-open .nav__link:focus-visible,
  .nav.is-open .nav__item--active .nav__link,
  .nav.is-open .current-menu-item > .nav__link,
  .nav.is-open .current_page_item > .nav__link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.13) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(0) !important;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18) !important;
  }

  .nav.is-open .nav__link:hover::before,
  .nav.is-open .nav__link:focus-visible::before {
    opacity: 1;
    transform: translateX(3px) rotate(45deg);
  }

  .nav__cta {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .nav.is-open .nav__cta .btn,
  .nav__cta .btn {
    width: 100% !important;
    min-height: 58px !important;
    justify-content: center !important;
    padding: 1rem 1.15rem !important;
    color: #17110d !important;
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22) !important;
    font-size: 0.82rem !important;
  }

  .nav.is-open .nav__cta .btn:hover,
  .nav__cta .btn:hover {
    color: #17110d !important;
    background: #f6f1eb !important;
    border-color: #f6f1eb !important;
    transform: translateY(-2px) !important;
  }
}

@media (max-width: 480px) {
  .site-header__wrap {
    padding-inline: 14px !important;
  }

  .site-logo__text {
    font-size: 1.02rem !important;
  }

  .site-logo__image {
    max-width: 150px !important;
    max-height: 40px !important;
  }

  .hamburger {
    width: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
  }

  .nav {
    padding-inline: 14px !important;
  }
}

/* ──────────────────────────────────────────────
   Footer — premium, czytelny, mocny CTA
   ────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--footer-text) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(166, 139, 107, 0.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.07), transparent 26%),
    linear-gradient(180deg, var(--footer-bg-soft), var(--footer-bg)) !important;
  border-top: 1px solid rgba(166, 139, 107, 0.22) !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 62%);
  opacity: 0.38;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer .footer-cta {
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid var(--footer-line) !important;
}

.site-footer .footer-cta__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(1.5rem, 4vw, 4rem) !important;
  padding-block: clamp(3.2rem, 6vw, 5.4rem) !important;
}

.site-footer .footer-cta__content {
  max-width: 760px;
}

.site-footer .footer-cta__label {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 0 0.95rem !important;
  padding: 0.46rem 0.78rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.site-footer .footer-cta__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-brown);
  box-shadow: 0 0 0 6px rgba(166, 139, 107, 0.13);
}

.site-footer .footer-cta__title {
  max-width: 760px;
  margin: 0 0 1rem !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2.05rem, 4vw, 4.05rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.052em !important;
  line-height: 0.98 !important;
}

.site-footer .footer-cta__text {
  max-width: 58ch !important;
  margin: 0 !important;
  color: var(--footer-muted) !important;
  font-size: clamp(1rem, 1.2vw, 1.13rem) !important;
  line-height: 1.78 !important;
}

.site-footer .footer-cta__actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.85rem !important;
  flex-wrap: wrap !important;
}

.site-footer .footer-cta .btn,
.site-footer .footer-cta .btn.btn--primary,
.site-footer .footer-cta .btn.btn--secondary {
  min-height: 52px !important;
  padding: 0.95rem 1.35rem !important;
  border-radius: 15px !important;
  font-size: 0.77rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.105em !important;
  text-decoration: none !important;
}

.site-footer .footer-cta .btn.btn--primary {
  color: #17110d !important;
  background: #fff !important;
  border: 1px solid #fff !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24) !important;
}

.site-footer .footer-cta .btn.btn--primary:hover {
  color: #17110d !important;
  background: #f4eee7 !important;
  border-color: #f4eee7 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28) !important;
}

.site-footer .footer-cta .btn.btn--secondary {
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.site-footer .footer-cta .btn.btn--secondary:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.11) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-3px) !important;
}

.site-footer .footer-main {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.72fr) minmax(230px, 1fr) minmax(150px, 0.72fr) !important;
  gap: clamp(1.2rem, 3vw, 3rem) !important;
  align-items: start !important;
  padding-block: clamp(3rem, 5.2vw, 4.8rem) clamp(2.2rem, 4vw, 3.2rem) !important;
}

.site-footer .footer-col {
  min-width: 0;
}

.site-footer .footer-col--brand {
  padding: 1.15rem !important;
  background: rgba(255, 255, 255, 0.048);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
}

.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 0 1rem !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.05 !important;
  text-decoration: none !important;
}

.site-footer .footer-logo::after {
  content: ".";
  color: var(--c-brown);
}

.site-footer .footer-logo:hover {
  color: #fff !important;
  opacity: 0.9;
}

.site-footer .footer-desc {
  max-width: 36ch !important;
  margin: 0 0 1.45rem !important;
  color: var(--footer-muted) !important;
  font-size: 0.96rem !important;
  line-height: 1.82 !important;
}

.site-footer .footer-social {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin: 0 !important;
  flex-wrap: wrap;
}

.site-footer .footer-social__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: transform 0.22s var(--ease-out), background-color 0.22s var(--ease-smooth), border-color 0.22s var(--ease-smooth) !important;
}

.site-footer .footer-social__link svg {
  width: 18px !important;
  height: 18px !important;
}

.site-footer .footer-social__link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  transform: translateY(-3px) !important;
}

.site-footer .footer-col__title,
.site-footer .footer-col h4 {
  margin: 0 0 1rem !important;
  color: rgba(255, 255, 255, 0.54) !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.135em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.site-footer .footer-menu {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.64rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-footer .footer-menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .footer-menu a,
.site-footer .footer-contact-link {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.62rem !important;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  transition: color 0.2s var(--ease-smooth), transform 0.2s var(--ease-out) !important;
}

.site-footer .footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.32;
  transition: transform 0.2s var(--ease-out);
}

.site-footer .footer-menu a:hover,
.site-footer .footer-contact-link:hover {
  color: #fff !important;
  text-decoration: none !important;
  transform: translateX(3px) !important;
}

.site-footer .footer-menu a:hover::after {
  transform: scaleX(1);
}

.site-footer .footer-contact-link svg,
.site-footer .footer-location svg {
  flex: 0 0 auto !important;
  width: 17px !important;
  height: 17px !important;
  color: var(--c-brown) !important;
  opacity: 0.95 !important;
}

.site-footer .footer-location {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.62rem !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
}

.site-footer .footer-bottom {
  margin: 0 !important;
  padding: 1.2rem 0 !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-top: 1px solid var(--footer-line) !important;
}

.site-footer .footer-bottom__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}

.site-footer .footer-copyright,
.site-footer .footer-made {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.site-footer .footer-logo:focus-visible,
.site-footer .footer-menu a:focus-visible,
.site-footer .footer-contact-link:focus-visible,
.site-footer .footer-social__link:focus-visible,
.site-footer .footer-cta .btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.36) !important;
  outline-offset: 4px !important;
  border-radius: 12px !important;
}

@media (max-width: 1024px) {
  .site-footer .footer-cta__inner {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .site-footer .footer-cta__actions {
    justify-content: flex-start !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) !important;
  }

  .site-footer .footer-col--brand {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-cta__inner {
    padding-block: 3rem !important;
    text-align: left !important;
  }

  .site-footer .footer-cta__actions {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .site-footer .footer-cta .btn,
  .site-footer .footer-cta .btn.btn--primary,
  .site-footer .footer-cta .btn.btn--secondary {
    width: 100% !important;
    justify-content: center !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .site-footer .footer-col--brand {
    padding: 1rem !important;
  }

  .site-footer .footer-bottom__inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
}

@media (max-width: 420px) {
  .site-footer .footer-cta__title {
    font-size: 2rem !important;
  }

  .site-footer .footer-menu a,
  .site-footer .footer-contact-link,
  .site-footer .footer-location {
    font-size: 0.92rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header *,
  .site-footer,
  .site-footer *,
  .nav {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Zachowaj akcent logo na ciemnym headerze podstron. */
body.is-subpage .site-header:not(.is-scrolled) .site-logo__dot {
  color: var(--c-brown) !important;
}

/* ════════════════════════════════════════════════════════════════
   HEADER + FOOTER — PREMIUM POLISH v1.0.3
   Usprawnienia: floating header po scrollu, lepszy focus/mobile UX,
   czytelniejsze CTA i bardziej uporządkowana stopka.
   ════════════════════════════════════════════════════════════════ */

:root {
  --header-float-gap: 10px;
  --header-radius: 22px;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 12px)) !important;
}

.site-header__inner {
  position: relative !important;
}

.site-header.is-scrolled {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

.site-header.is-scrolled .site-header__wrap {
  padding-top: var(--header-float-gap) !important;
  padding-bottom: 0 !important;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 60px !important;
  padding: 0.38rem 0.52rem 0.38rem 1rem !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(88, 68, 52, 0.13) !important;
  border-radius: var(--header-radius) !important;
  box-shadow: 0 18px 52px rgba(31, 25, 19, 0.12) !important;
  backdrop-filter: blur(20px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.18) !important;
}

.site-header.is-scrolled .site-logo__image {
  max-height: 39px !important;
}

@media (min-width: 901px) {
  .nav__link {
    padding: 0.74rem 0.78rem !important;
    border-radius: 999px !important;
  }

  .nav__link::after {
    display: none !important;
  }

  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__item--active .nav__link,
  .current-menu-item > .nav__link,
  .current_page_item > .nav__link {
    background: rgba(139, 115, 85, 0.1) !important;
  }

  body.is-subpage .site-header:not(.is-scrolled) .nav__link:hover,
  body.is-subpage .site-header:not(.is-scrolled) .nav__link:focus-visible,
  body.is-subpage .site-header:not(.is-scrolled) .nav__item--active .nav__link,
  body.is-subpage .site-header:not(.is-scrolled) .current-menu-item > .nav__link,
  body.is-subpage .site-header:not(.is-scrolled) .current_page_item > .nav__link {
    background: rgba(255, 255, 255, 0.12) !important;
  }
}

.nav__cta .btn,
.nav__cta-link {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.nav__cta .btn::after,
.nav__cta-link::after {
  content: "" !important;
  position: absolute !important;
  inset: -40% auto -40% -55% !important;
  z-index: -1 !important;
  width: 46% !important;
  transform: skewX(-22deg) translateX(0) !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent) !important;
  opacity: 0 !important;
  transition: opacity 0.2s var(--ease-smooth), transform 0.6s var(--ease-out) !important;
}

.nav__cta .btn:hover::after,
.nav__cta .btn:focus-visible::after,
.nav__cta-link:hover::after,
.nav__cta-link:focus-visible::after {
  opacity: 1 !important;
  transform: skewX(-22deg) translateX(360%) !important;
}

@media (max-width: 900px) {
  .site-header.is-scrolled .site-header__wrap {
    padding-top: 8px !important;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 58px !important;
    padding: 0.38rem 0.48rem 0.38rem 0.85rem !important;
    border-radius: 18px !important;
  }

  .nav::before {
    content: "Menu";
    width: min(560px, 100%);
    margin: 0 auto -0.15rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav.is-open .nav__item {
    animation: coachMobileNavItem 0.42s var(--ease-out) both;
  }

  .nav.is-open .nav__item:nth-child(1) { animation-delay: 0.03s; }
  .nav.is-open .nav__item:nth-child(2) { animation-delay: 0.06s; }
  .nav.is-open .nav__item:nth-child(3) { animation-delay: 0.09s; }
  .nav.is-open .nav__item:nth-child(4) { animation-delay: 0.12s; }
  .nav.is-open .nav__item:nth-child(5) { animation-delay: 0.15s; }
  .nav.is-open .nav__item:nth-child(6) { animation-delay: 0.18s; }
  .nav.is-open .nav__item:nth-child(7) { animation-delay: 0.21s; }

  .nav.is-open .nav__cta {
    animation: coachMobileNavItem 0.42s var(--ease-out) 0.22s both;
  }

  .nav.is-open .nav__link {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.12) !important;
  }

  .hamburger.is-active {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }
}

@keyframes coachMobileNavItem {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-mobile-menu-open {
  overflow: hidden !important;
}

.footer-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.52rem !important;
  margin: 0 0 1.35rem !important;
}

.footer-badge {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0.42rem 0.68rem !important;
  color: rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.065) !important;
  border: 1px solid rgba(255, 255, 255, 0.105) !important;
  border-radius: 999px !important;
  font-size: 0.76rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.05em !important;
}

.site-footer .footer-col--brand {
  position: relative !important;
  overflow: hidden !important;
}

.site-footer .footer-col--brand::before {
  content: "";
  position: absolute;
  inset: -1px auto auto -1px;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-brown), transparent);
  opacity: 0.9;
}

.site-footer .footer-contact-link[href^="mailto"] {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

.footer-backtop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.44rem !important;
  min-height: 36px !important;
  padding: 0.48rem 0.72rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 999px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: color 0.22s var(--ease-smooth), background-color 0.22s var(--ease-smooth), border-color 0.22s var(--ease-smooth), transform 0.22s var(--ease-out) !important;
}

.footer-backtop:hover,
.footer-backtop:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-2px) !important;
}

.footer-backtop:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.34) !important;
  outline-offset: 4px !important;
}

@media (min-width: 641px) {
  .site-footer .footer-bottom__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-cta__title {
    line-height: 1.04 !important;
  }

  .footer-backtop {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav.is-open .nav__item,
  .nav.is-open .nav__cta {
    animation: none !important;
  }
}

/* =========================================================
   V1.0.4 — ABOUT / CONTACT / LEGAL PAGES PREMIUM POLISH
   Scoped to subpages only. Front-page remains untouched.
========================================================= */

body.is-about-page,
body.is-contact-page,
body.is-legal-page {
    --page-warm-bg: #f7f1ea;
    --page-card-bg: rgba(255, 255, 255, 0.78);
    --page-card-solid: #fffaf5;
    --page-line: rgba(168, 139, 105, 0.24);
    --page-line-strong: rgba(168, 139, 105, 0.42);
    --page-shadow: 0 26px 70px rgba(31, 24, 18, 0.09);
    --page-shadow-soft: 0 16px 44px rgba(31, 24, 18, 0.06);
    --page-radius: clamp(1.25rem, 2vw, 2rem);
}

body.is-about-page .site-main,
body.is-contact-page .site-main,
body.is-legal-page .site-main {
    overflow: clip;
}

body.is-about-page .btn:focus-visible,
body.is-contact-page .btn:focus-visible,
body.is-legal-page .btn:focus-visible,
body.is-about-page a:focus-visible,
body.is-contact-page a:focus-visible,
body.is-legal-page a:focus-visible,
body.is-contact-page input:focus-visible,
body.is-contact-page textarea:focus-visible,
body.is-legal-page button:focus-visible {
    outline: 3px solid rgba(168, 139, 105, 0.45);
    outline-offset: 4px;
}

/* ───────────────────────────────
   ABOUT PAGE — premium structure
─────────────────────────────── */

body.is-about-page .about-hero {
    position: relative;
    min-height: clamp(680px, 88vh, 920px);
    display: grid;
    align-items: center;
    padding: calc(var(--header-height, 86px) + clamp(3rem, 7vw, 6.5rem)) 0 clamp(3.5rem, 7vw, 7rem);
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(202, 178, 149, 0.22), transparent 30rem),
        radial-gradient(circle at 88% 6%, rgba(255, 255, 255, 0.08), transparent 24rem),
        linear-gradient(135deg, #15110e 0%, #221a14 48%, #0f0d0b 100%);
    isolation: isolate;
}

body.is-about-page .about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 86%);
    pointer-events: none;
}

body.is-about-page .about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

body.is-about-page .about-hero__content {
    max-width: 760px;
}

body.is-about-page .about-hero__title {
    max-width: 11ch;
    margin: clamp(1rem, 2vw, 1.4rem) 0 1.15rem;
    color: #fff;
    font-size: clamp(4rem, 9vw, 8.7rem);
    line-height: 0.84;
    letter-spacing: -0.082em;
    text-wrap: balance;
}

body.is-about-page .about-hero__lead {
    max-width: 58ch;
    margin: 0 0 1.6rem;
    color: rgba(248, 239, 229, 0.82);
    font-size: clamp(1.08rem, 0.55vw + 1rem, 1.34rem);
    line-height: 1.72;
}

body.is-about-page .about-hero__badges,
body.is-contact-page .contact-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.4rem 0 2rem;
}

body.is-about-page .about-hero__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.55rem 0.9rem;
    color: rgba(255, 250, 244, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.is-about-page .about-hero__actions,
body.is-contact-page .contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

body.is-about-page .about-hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 480px);
}

body.is-about-page .about-hero__visual::before {
    content: "";
    position: absolute;
    inset: -2.6rem -1.6rem auto auto;
    width: clamp(10rem, 24vw, 18rem);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(202, 178, 149, 0.32), transparent 68%);
    filter: blur(2px);
    pointer-events: none;
}

body.is-about-page .about-hero__portrait {
    position: relative;
    aspect-ratio: 4 / 5.25;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--page-radius);
    background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.035));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

body.is-about-page .about-hero__portrait::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
    pointer-events: none;
}

body.is-about-page .about-hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.is-about-page .about-hero__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: -0.08em;
    background:
        radial-gradient(circle at 78% 18%, rgba(202,178,149,0.25), transparent 12rem),
        linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

body.is-about-page .about-hero__note {
    position: absolute;
    right: clamp(0.8rem, 2vw, 1.4rem);
    bottom: clamp(0.8rem, 2vw, 1.4rem);
    z-index: 2;
    width: min(calc(100% - 2rem), 330px);
    padding: 1rem 1.1rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.1rem;
    background: rgba(18, 15, 12, 0.62);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.is-about-page .about-hero__note span {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(248, 239, 229, 0.64);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.is-about-page .about-proof {
    position: relative;
    z-index: 2;
    margin-top: -3.2rem;
}

body.is-about-page .about-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.is-about-page .about-proof__item {
    min-height: 132px;
    display: grid;
    align-content: center;
    padding: clamp(1rem, 2vw, 1.55rem);
    border: 1px solid var(--page-line);
    border-radius: 1.35rem;
    background: rgba(255, 250, 245, 0.88);
    box-shadow: var(--page-shadow-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.is-about-page .about-proof__item strong {
    display: block;
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

body.is-about-page .about-proof__item span {
    margin-top: 0.35rem;
    color: var(--c-text-light);
    font-size: 0.94rem;
    font-weight: 650;
}

body.is-about-page .about-intro-section {
    padding-top: clamp(4rem, 8vw, 7rem);
}

body.is-about-page .about-signature {
    display: inline-grid;
    gap: 0.15rem;
    margin-top: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--page-line);
}

body.is-about-page .about-signature span {
    color: var(--c-black);
    font-family: var(--font-heading);
    font-size: 1.38rem;
    line-height: 1;
}

body.is-about-page .about-signature small {
    color: var(--c-text-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

body.is-about-page .about-story__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

body.is-about-page .about-story__grid .section-header {
    position: sticky;
    top: calc(var(--header-height, 86px) + 2rem);
    text-align: left;
}

body.is-about-page .about-story__grid .section-header__title {
    max-width: 9ch;
}

body.is-about-page .about-story__content {
    padding: clamp(1.4rem, 3vw, 2.6rem);
    border: 1px solid var(--page-line);
    border-radius: var(--page-radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--page-shadow-soft);
}

body.is-about-page .about-story__content p {
    margin: 0;
    color: rgba(44, 44, 44, 0.78);
    font-size: clamp(1.03rem, 0.34vw + 1rem, 1.18rem);
    line-height: 1.86;
}

body.is-about-page .about-story__content p + p {
    margin-top: 1.15rem;
}

body.is-about-page .about-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

body.is-about-page .about-approach__card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    border: 1px solid var(--page-line);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(168, 139, 105, 0.12), transparent 12rem),
        #fffaf5;
    box-shadow: var(--page-shadow-soft);
}

body.is-about-page .about-approach__card::after {
    content: "";
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(168, 139, 105, 0.52), transparent);
}

body.is-about-page .about-approach__card span {
    display: inline-block;
    color: rgba(168, 139, 105, 0.56);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.8;
    letter-spacing: -0.07em;
}

body.is-about-page .about-approach__card h3 {
    max-width: 10ch;
    margin: 1.4rem 0 0.85rem;
    color: var(--c-black);
    font-size: clamp(1.55rem, 1.2vw + 1rem, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

body.is-about-page .about-approach__card p {
    margin: 0;
    color: var(--c-text-light);
    line-height: 1.75;
}

body.is-about-page .about-mission {
    text-align: center;
}

body.is-about-page .about-mission .section-header__label {
    color: var(--c-beige-dark);
}

body.is-about-page .about-final-cta__box {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    text-align: center;
    padding: clamp(2rem, 6vw, 4.5rem);
    border: 1px solid var(--page-line-strong);
    border-radius: var(--page-radius);
    background:
        radial-gradient(circle at 78% 0%, rgba(168, 139, 105, 0.18), transparent 18rem),
        linear-gradient(135deg, #fffaf5 0%, #f6efe7 100%);
    box-shadow: var(--page-shadow);
}

body.is-about-page .about-final-cta__box::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(168, 139, 105, 0.14);
    border-radius: calc(var(--page-radius) - 0.65rem);
    pointer-events: none;
}

body.is-about-page .about-final-cta__box > * {
    position: relative;
    z-index: 1;
}

body.is-about-page .about-final-cta__box h2 {
    max-width: 13ch;
    margin: 0.75rem 0 1rem;
    color: var(--c-black);
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.066em;
}

body.is-about-page .about-final-cta__box p {
    max-width: 64ch;
    margin: 0 0 1.7rem;
    color: var(--c-text-light);
    font-size: 1.08rem;
    line-height: 1.78;
}

/* ───────────────────────────────
   CONTACT PAGE — premium structure
─────────────────────────────── */

body.is-contact-page .contact-hero {
    position: relative;
    padding: calc(var(--header-height, 86px) + clamp(3rem, 7vw, 6rem)) 0 clamp(3.5rem, 8vw, 7rem);
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(202, 178, 149, 0.22), transparent 30rem),
        radial-gradient(circle at 86% 8%, rgba(255,255,255,0.08), transparent 22rem),
        linear-gradient(135deg, #16120f 0%, #2b211a 54%, #100d0b 100%);
    isolation: isolate;
}

body.is-contact-page .contact-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 9rem;
    background: linear-gradient(180deg, transparent, rgba(247, 241, 234, 0.08));
    pointer-events: none;
}

body.is-contact-page .contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}

body.is-contact-page .contact-hero__title {
    max-width: 12ch;
    margin: 1rem 0 1.1rem;
    color: #fff;
    font-size: clamp(3.8rem, 8vw, 8.1rem);
    line-height: 0.86;
    letter-spacing: -0.08em;
    text-wrap: balance;
}

body.is-contact-page .contact-hero__lead {
    max-width: 62ch;
    margin: 0 0 1.8rem;
    color: rgba(248, 239, 229, 0.82);
    font-size: clamp(1.05rem, 0.55vw + 1rem, 1.32rem);
    line-height: 1.72;
}

body.is-contact-page .contact-hero__card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 2.3rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--page-radius);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.is-contact-page .contact-hero__card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: calc(var(--page-radius) - 0.65rem);
    pointer-events: none;
}

body.is-contact-page .contact-hero__card-top {
    display: grid;
    gap: 0.4rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

body.is-contact-page .contact-hero__card-top span {
    color: rgba(248, 239, 229, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.is-contact-page .contact-hero__card-top strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

body.is-contact-page .contact-hero__list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.is-contact-page .contact-hero__list li {
    display: flex;
    gap: 0.68rem;
    align-items: flex-start;
    color: rgba(248, 239, 229, 0.84);
    line-height: 1.55;
}

body.is-contact-page .contact-hero__list span {
    display: inline-grid;
    place-items: center;
    width: 1.45rem;
    height: 1.45rem;
    flex: 0 0 1.45rem;
    color: #17120f;
    font-size: 0.82rem;
    font-weight: 900;
    border-radius: 999px;
    background: #e8d8c7;
}

body.is-contact-page .contact-methods-section {
    padding-top: clamp(3rem, 7vw, 6rem);
}

body.is-contact-page .contact-method {
    border-radius: 1.45rem;
}

body.is-contact-page .contact-method:hover {
    transform: translateY(-6px);
    border-color: var(--page-line-strong);
    box-shadow: var(--page-shadow);
}

body.is-contact-page .contact-method__socials {
    justify-content: flex-start;
    flex-wrap: wrap;
}

body.is-contact-page .contact-method__socials a {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(168, 139, 105, 0.25);
    border-radius: 999px;
    background: rgba(246, 240, 235, 0.75);
    text-decoration: none;
}

body.is-contact-page .contact-method__socials a:hover {
    color: #fff;
    border-color: var(--c-brown);
    background: var(--c-brown);
}

body.is-contact-page .contact-copy {
    position: relative;
    overflow: hidden;
    border-radius: var(--page-radius);
}

body.is-contact-page .contact-copy h2 {
    max-width: 11ch;
    margin: 0.8rem 0 1rem;
    color: var(--c-black);
    font-size: clamp(2.55rem, 5vw, 5.1rem);
    line-height: 0.92;
    letter-spacing: -0.068em;
}

body.is-contact-page .contact-copy p {
    max-width: 58ch;
    color: var(--c-text-light);
    font-size: 1.04rem;
    line-height: 1.82;
}

body.is-contact-page .contact-form-shell {
    position: relative;
}

body.is-contact-page .contact-form-shell::before {
    content: "";
    position: absolute;
    inset: -1.2rem -1.1rem auto auto;
    width: 10rem;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(168, 139, 105, 0.16), transparent 68%);
    pointer-events: none;
}

body.is-contact-page .contact-form {
    position: relative;
    z-index: 1;
    border-radius: var(--page-radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(168, 139, 105, 0.1), transparent 13rem),
        #fffaf5;
}

body.is-contact-page .form-group__optional {
    color: var(--c-text-muted);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

body.is-contact-page .form-submit {
    width: 100%;
}

body.is-contact-page .contact-form__privacy {
    margin: 0.2rem 0 1rem;
    color: var(--c-text-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

body.is-contact-page .contact-form__privacy a {
    color: var(--c-brown-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.is-contact-page .contact-form--booking {
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: clamp(1.6rem, 4vw, 3rem);
}

body.is-contact-page .contact-form--booking h3 {
    margin: 0;
    color: var(--c-black);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

body.is-contact-page .contact-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

body.is-contact-page .contact-process__item {
    position: relative;
    min-height: 260px;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    border: 1px solid var(--page-line);
    border-radius: 1.45rem;
    background: #fffaf5;
    box-shadow: var(--page-shadow-soft);
}

body.is-contact-page .contact-process__item span {
    color: rgba(168, 139, 105, 0.6);
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    line-height: 0.82;
    letter-spacing: -0.07em;
}

body.is-contact-page .contact-process__item h3 {
    max-width: 10ch;
    margin: 1.2rem 0 0.75rem;
    color: var(--c-black);
    font-size: clamp(1.45rem, 1.4vw + 1rem, 2.25rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

body.is-contact-page .contact-process__item p {
    margin: 0;
    color: var(--c-text-light);
    line-height: 1.72;
}

/* ───────────────────────────────
   LEGAL PAGES — privacy / cookies / terms
─────────────────────────────── */

body.is-legal-page .legal-page__hero {
    position: relative;
    padding: calc(var(--header-height, 86px) + clamp(3rem, 7vw, 6rem)) 0 clamp(3rem, 7vw, 6rem);
    color: #fff;
    background:
        radial-gradient(circle at 12% 16%, rgba(202, 178, 149, 0.24), transparent 30rem),
        radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.08), transparent 24rem),
        linear-gradient(135deg, #14110f 0%, #2a211a 55%, #100d0b 100%);
    isolation: isolate;
}

body.is-legal-page .legal-page__hero::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 4rem 4rem;
    opacity: 0.75;
}

body.is-legal-page .legal-page__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}

body.is-legal-page .legal-page__back {
    width: fit-content;
    color: rgba(248, 239, 229, 0.78);
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.is-legal-page .legal-page__back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
}

body.is-legal-page .legal-page__number {
    color: rgba(232, 216, 198, 0.28);
    font-size: clamp(5rem, 14vw, 11rem);
}

body.is-legal-page .legal-page__title {
    max-width: 10ch;
    color: #fff;
    font-size: clamp(3.7rem, 8vw, 8rem);
    line-height: 0.86;
    letter-spacing: -0.078em;
}

body.is-legal-page .legal-page__description {
    max-width: 62ch;
    color: rgba(248, 239, 229, 0.82);
    font-size: clamp(1.03rem, 0.5vw + 1rem, 1.24rem);
}

body.is-legal-page .legal-page__quick-nav {
    position: static;
    display: block;
    margin-top: 2rem;
    padding: 0;
    background: transparent;
    border: 0;
}

body.is-legal-page .legal-page__quick-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

body.is-legal-page .legal-page__quick-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.55rem;
    padding: 0.52rem 0.85rem;
    color: rgba(248, 239, 229, 0.78);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
}

body.is-legal-page .legal-page__quick-nav a:hover,
body.is-legal-page .legal-page__quick-nav a[aria-current="page"] {
    color: #17120f;
    border-color: #e8d8c7;
    background: #e8d8c7;
}

body.is-legal-page .legal-page__meta-card {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: var(--page-radius);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.is-legal-page .legal-page__meta-badge {
    width: fit-content;
    margin-bottom: 1.15rem;
    padding: 0.45rem 0.7rem;
    color: #17120f;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    background: #e8d8c7;
}

body.is-legal-page .legal-page__meta-item span {
    color: rgba(248, 239, 229, 0.58);
}

body.is-legal-page .legal-page__meta-item strong,
body.is-legal-page .legal-page__meta-item a {
    color: rgba(255, 255, 255, 0.92);
}

body.is-legal-page .legal-page__content {
    background:
        radial-gradient(circle at 12% 0%, rgba(168, 139, 105, 0.10), transparent 26rem),
        linear-gradient(180deg, #fbf8f4 0%, #f7f1ea 100%);
}

body.is-legal-page .legal-page__layout {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
}

body.is-legal-page .legal-page__toc {
    top: calc(var(--header-height, 86px) + 1.5rem);
    border: 1px solid var(--page-line);
    border-radius: 1.25rem;
    background: rgba(255, 250, 245, 0.8);
    box-shadow: var(--page-shadow-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.is-legal-page .legal-page__toc a {
    border-radius: 0.75rem;
}

body.is-legal-page .legal-page__toc a:hover {
    color: var(--c-black);
    background: rgba(168, 139, 105, 0.10);
}

body.is-legal-page .legal-page__sections {
    gap: 1rem;
}

body.is-legal-page .legal-section {
    grid-template-columns: auto minmax(0, 0.42fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 2.4rem);
    border-color: var(--page-line);
    border-radius: 1.4rem;
    background: rgba(255, 250, 245, 0.92);
    box-shadow: var(--page-shadow-soft);
}

body.is-legal-page .legal-section__heading {
    min-width: 0;
}

body.is-legal-page .legal-section__title {
    color: var(--c-black);
}

body.is-legal-page .legal-section__body p {
    color: rgba(44, 44, 44, 0.76);
}

body.is-legal-page .legal-section__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.35rem;
}

body.is-legal-page .legal-section__link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 2.45rem;
    padding: 0.45rem 0.76rem;
    color: var(--c-brown-dark);
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
    border: 1px solid rgba(168, 139, 105, 0.26);
    border-radius: 999px;
    background: rgba(246, 240, 235, 0.72);
}

body.is-legal-page .legal-section__link:hover {
    color: #fff;
    border-color: var(--c-brown);
    background: var(--c-brown);
}

body.is-legal-page .cookie-table {
    border-radius: 1rem;
    border-color: var(--page-line-strong);
    box-shadow: 0 10px 26px rgba(31, 24, 18, 0.045);
}

body.is-legal-page .legal-section__button {
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(31, 24, 18, 0.12);
}

body.is-legal-page .legal-cta {
    border-radius: var(--page-radius);
}

/* ───────────────────────────────
   Responsive polish
─────────────────────────────── */

@media (max-width: 1100px) {
    body.is-about-page .about-hero__grid,
    body.is-contact-page .contact-hero__grid,
    body.is-legal-page .legal-page__hero-grid,
    body.is-about-page .about-story__grid,
    body.is-legal-page .legal-page__layout {
        grid-template-columns: 1fr;
    }

    body.is-about-page .about-hero__visual {
        justify-self: start;
        width: min(100%, 430px);
    }

    body.is-about-page .about-story__grid .section-header {
        position: static;
    }

    body.is-legal-page .legal-page__toc {
        display: none;
    }
}

@media (max-width: 900px) {
    body.is-about-page .about-proof__grid,
    body.is-about-page .about-approach__grid,
    body.is-contact-page .contact-process,
    body.is-about-page .values__grid {
        grid-template-columns: 1fr;
    }

    body.is-contact-page .contact-methods {
        grid-template-columns: 1fr;
    }

    body.is-legal-page .legal-section {
        grid-template-columns: auto minmax(0, 1fr);
    }

    body.is-legal-page .legal-section__body {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    body.is-about-page .about-hero,
    body.is-contact-page .contact-hero,
    body.is-legal-page .legal-page__hero {
        padding-top: calc(var(--header-height, 78px) + 2.2rem);
    }

    body.is-about-page .about-hero__title,
    body.is-contact-page .contact-hero__title,
    body.is-legal-page .legal-page__title {
        font-size: clamp(3.15rem, 17vw, 4.9rem);
    }

    body.is-about-page .about-hero__actions,
    body.is-contact-page .contact-hero__actions {
        width: 100%;
    }

    body.is-about-page .about-hero__actions .btn,
    body.is-contact-page .contact-hero__actions .btn,
    body.is-about-page .about-final-cta__box .btn,
    body.is-legal-page .legal-cta .btn {
        width: 100%;
    }

    body.is-about-page .about-proof {
        margin-top: -1.7rem;
    }

    body.is-about-page .about-proof__grid {
        gap: 0.75rem;
    }

    body.is-about-page .about-page__intro {
        padding: 0.8rem;
    }

    body.is-about-page .timeline__item {
        grid-template-columns: 4.6rem auto minmax(0, 1fr);
        gap: 0.8rem;
    }

    body.is-about-page .timeline__text {
        padding: 0.8rem 0.9rem;
    }

    body.is-contact-page .contact-copy h2,
    body.is-about-page .about-final-cta__box h2,
    body.is-legal-page .legal-cta__title {
        font-size: clamp(2.4rem, 13vw, 3.8rem);
    }

    body.is-legal-page .legal-page__quick-nav-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scrollbar-width: none;
    }

    body.is-legal-page .legal-page__quick-nav-inner::-webkit-scrollbar {
        display: none;
    }

    body.is-legal-page .legal-section {
        padding: 1.15rem;
    }

    body.is-legal-page .legal-section__index {
        font-size: 2rem;
    }

    body.is-legal-page .legal-section__title {
        font-size: clamp(1.45rem, 8vw, 2.1rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.is-about-page .about-hero__portrait,
    body.is-contact-page .contact-method,
    body.is-contact-page .contact-process__item,
    body.is-legal-page .legal-section {
        transition: none !important;
        animation: none !important;
    }
}

/* ═══════════════════════════════════════════════
   KEY PAGES POLISH v1.0.5
   O mnie / Kontakt / Legal / Regulamin
   Scoped: nie zmienia front-page.php
   ═══════════════════════════════════════════════ */

body.is-about-page,
body.is-contact-page,
body.is-legal-page {
  background: #faf7f3;
}

.about-premium--v2,
.contact-premium--v2,
.legal-page {
  overflow: clip;
}

.about-hero,
.contact-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7.25rem, 9vw, 10rem) clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 82% 12%, rgba(170, 146, 118, 0.18), transparent 32%),
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.82), transparent 36%),
    linear-gradient(180deg, #faf7f3 0%, #f3ece4 100%);
}

.about-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(170, 146, 118, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 146, 118, 0.075) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 72%);
  pointer-events: none;
}

.about-hero__grid,
.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.about-hero__title,
.contact-hero__title {
  max-width: 11ch;
  margin: .75rem 0 0;
  color: var(--c-black);
  font-size: clamp(3.55rem, 7.2vw, 7.35rem);
  line-height: .86;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

.contact-hero__title {
  max-width: 12ch;
}

.about-hero__lead,
.contact-hero__lead {
  max-width: 62ch;
  margin: clamp(1.2rem, 2vw, 1.75rem) 0 0;
  color: rgba(35, 31, 28, .78);
  font-size: clamp(1.06rem, .7vw + .95rem, 1.32rem);
  line-height: 1.68;
}

.about-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.55rem;
}

.about-hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: .55rem .85rem;
  border: 1px solid rgba(170, 146, 118, .35);
  background: rgba(255,255,255,.48);
  color: rgba(26,26,26,.74);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.about-hero__actions,
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: clamp(1.75rem, 3vw, 2.45rem);
}

.about-hero__visual {
  position: relative;
}

.about-hero__portrait,
.about-intro-v2__image {
  position: relative;
  overflow: hidden;
  background: #eadfd4;
  border: 1px solid rgba(170, 146, 118, .42);
  box-shadow: 0 28px 80px rgba(31, 24, 18, .14);
}

.about-hero__portrait {
  aspect-ratio: 4 / 5;
}

.about-hero__portrait::before,
.about-intro-v2__image::before {
  content: "";
  position: absolute;
  inset: .85rem;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.58);
  pointer-events: none;
}

.about-hero__portrait img,
.about-intro-v2__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-hero__placeholder,
.about-page__intro-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: rgba(170, 146, 118, .72);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -.08em;
}

.about-hero__note {
  position: absolute;
  right: clamp(-.75rem, -1vw, -1.25rem);
  bottom: clamp(1rem, 3vw, 2.25rem);
  max-width: 260px;
  padding: 1rem 1.05rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(205, 193, 180, .78);
  box-shadow: 0 18px 48px rgba(31, 24, 18, .13);
  backdrop-filter: blur(14px);
}

.about-hero__note span,
.contact-hero__card-top span,
.contact-hero__mini span {
  display: block;
  margin-bottom: .35rem;
  color: var(--c-brown);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-hero__note strong,
.contact-hero__card-top strong,
.contact-hero__mini strong {
  display: block;
  color: var(--c-black);
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-proof {
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

.about-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(205, 193, 180, .72);
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 64px rgba(31, 24, 18, .08);
}

.about-proof__item {
  padding: clamp(1.25rem, 2.2vw, 2rem);
  display: grid;
  gap: .35rem;
}

.about-proof__item + .about-proof__item {
  border-left: 1px solid rgba(205, 193, 180, .62);
}

.about-proof__item strong {
  color: var(--c-black);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: .9;
  letter-spacing: -.065em;
}

.about-proof__item span {
  color: var(--c-text-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-intro-v2,
.about-story__grid,
.about-timeline-v2,
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-intro-v2__media {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.5rem);
}

.about-intro-v2__image {
  aspect-ratio: 4 / 5;
}

.about-intro-v2__caption,
.contact-note,
.legal-notice {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(205, 193, 180, .66);
  box-shadow: 0 12px 34px rgba(31,24,18,.045);
}

.about-intro-v2__caption span,
.contact-note strong,
.legal-notice strong {
  display: block;
  color: var(--c-brown);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-intro-v2__caption strong,
.contact-note span,
.legal-notice span {
  display: block;
  margin-top: .35rem;
  color: rgba(26,26,26,.76);
  line-height: 1.55;
}

.about-intro-v2__content h2,
.about-story__heading h2,
.about-timeline-v2__intro h2,
.contact-copy h2 {
  margin: .75rem 0 1.2rem;
  color: var(--c-black);
  font-size: clamp(2.45rem, 4.2vw, 4.55rem);
  line-height: .94;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.about-intro-v2__text p,
.about-story__content p,
.about-timeline-v2__intro p,
.contact-copy p {
  color: var(--c-text-light);
  font-size: 1.04rem;
  line-height: 1.82;
}

.about-intro-v2__text p + p,
.about-story__content p + p {
  margin-top: 1rem;
}

.about-signature {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(205,193,180,.74);
}

.about-signature span {
  display: block;
  color: var(--c-black);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.045em;
}

.about-signature small {
  display: block;
  margin-top: .3rem;
  color: var(--c-brown);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-mission {
  padding-block: clamp(2rem, 5vw, 4rem);
  background: #181512;
}

.about-mission__card {
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at top right, rgba(170, 146, 118, .22), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}

.about-mission__card .section-header__label {
  color: rgba(255,255,255,.64);
}

.about-mission__card h2 {
  max-width: 1000px;
  margin: .75rem 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  line-height: .96;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.about-approach__grid,
.values__grid--v2,
.contact-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-approach__card,
.value-card,
.contact-process__item {
  position: relative;
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #fff;
  border: 1px solid rgba(205, 193, 180, .68);
  box-shadow: 0 16px 44px rgba(31, 24, 18, .045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-approach__card:hover,
.value-card:hover,
.contact-method:hover,
.contact-process__item:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 146, 118, .8);
  box-shadow: 0 22px 58px rgba(31, 24, 18, .075);
}

.about-approach__card span,
.value-card__number,
.contact-process__item span {
  display: inline-flex;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  color: rgba(170, 146, 118, .72);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .85;
  letter-spacing: -.065em;
}

.about-approach__card h3,
.value-card h3,
.contact-process__item h3 {
  margin: 0 0 .75rem;
  color: var(--c-black);
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2rem);
  line-height: 1.05;
  letter-spacing: -.038em;
}

.about-approach__card p,
.value-card p,
.contact-process__item p {
  margin: 0;
  color: var(--c-text-light);
  line-height: 1.72;
}

.about-story {
  background:
    radial-gradient(circle at 8% 0%, rgba(170,146,118,.14), transparent 34%),
    linear-gradient(180deg, #f6f2ed 0%, #faf7f3 100%);
}

.timeline--v2 {
  position: relative;
  padding-left: 0;
}

.timeline--v2::before {
  left: 1rem;
  background: rgba(170,146,118,.35);
}

.timeline--v2 .timeline__item {
  padding: 1.2rem 0 1.2rem 4rem;
  background: transparent;
}

.timeline--v2 .timeline__year {
  position: static;
  display: inline-flex;
  margin-bottom: .45rem;
  color: var(--c-brown);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.timeline--v2 .timeline__dot {
  left: .68rem;
  top: 1.5rem;
}

.about-final-cta__card,
.legal-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.2rem);
  background:
    radial-gradient(circle at top right, rgba(170,146,118,.2), transparent 34%),
    linear-gradient(135deg, #f6f2ed 0%, #fff 100%);
  border: 1px solid rgba(205,193,180,.72);
  box-shadow: 0 22px 64px rgba(31,24,18,.07);
}

.about-final-cta__card h2,
.legal-cta__title {
  max-width: 13ch;
  margin: .75rem 0 1rem;
  color: var(--c-black);
  font-size: clamp(2.45rem, 4.6vw, 5rem);
  line-height: .92;
  letter-spacing: -.066em;
  text-wrap: balance;
}

.about-final-cta__card p,
.legal-cta__text {
  max-width: 62ch;
  margin: 0;
  color: var(--c-text-light);
  font-size: 1.03rem;
  line-height: 1.75;
}

/* Kontakt */
.contact-hero__card {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(205,193,180,.72);
  box-shadow: 0 24px 70px rgba(31,24,18,.1);
  backdrop-filter: blur(16px);
}

.contact-hero__card::before {
  content: "";
  position: absolute;
  inset: .85rem;
  border: 1px solid rgba(170,146,118,.18);
  pointer-events: none;
}

.contact-hero__card > * {
  position: relative;
  z-index: 1;
}

.contact-hero__card-top {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(205,193,180,.66);
}

.contact-hero__list {
  display: grid;
  gap: .85rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.contact-hero__list li,
.contact__trust-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: rgba(35,31,28,.76);
  line-height: 1.55;
}

.contact-hero__list span,
.contact__trust-item span {
  color: var(--c-brown);
  font-weight: 900;
}

.contact-hero__mini {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(205,193,180,.66);
}

.contact-methods-section {
  background: #fff;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.contact-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(1.2rem, 2.2vw, 1.75rem);
  background: #faf7f3;
  border: 1px solid rgba(205,193,180,.68);
  color: inherit;
  text-align: left;
  text-decoration: none;
}

.contact-method__icon {
  width: 3.45rem;
  height: 3.45rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(205,193,180,.72);
  color: var(--c-brown);
}

.contact-method__label {
  margin-bottom: .45rem;
  color: var(--c-brown);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-method__value {
  color: var(--c-black);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1vw + 1rem, 1.65rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.contact-method__value--break {
  overflow-wrap: anywhere;
}

.contact-method__hint {
  display: block;
  margin-top: .5rem;
  color: var(--c-text-light);
  font-size: .9rem;
  line-height: 1.5;
}

.contact-method__socials {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.contact-method__socials a {
  display: inline-flex;
  padding: .45rem .65rem;
  background: #fff;
  border: 1px solid rgba(205,193,180,.72);
  color: var(--c-black);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-form-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(170,146,118,.12), transparent 32%),
    linear-gradient(180deg, #f6f2ed 0%, #faf7f3 100%);
}

.contact-form-shell {
  position: relative;
}

.contact-form {
  padding: clamp(1.2rem, 2.6vw, 2rem);
  background: #fff;
  border: 1px solid rgba(205,193,180,.72);
  box-shadow: 0 22px 64px rgba(31,24,18,.08);
}

.contact-form .form-group + .form-group {
  margin-top: 1rem;
}

.contact-form__privacy {
  margin-top: 1rem;
  padding: .9rem;
  background: #faf7f3;
  border: 1px solid rgba(205,193,180,.62);
  color: var(--c-text-light);
  font-size: .9rem;
  line-height: 1.6;
}

.contact-form__privacy a {
  color: var(--c-black);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .22em;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

.form-submit__loader svg {
  animation: spin 1s linear infinite;
}

.contact__trust {
  display: grid;
  gap: .65rem;
  margin-top: 1.35rem;
}

/* Legal */
.legal-page {
  --legal-border: rgba(205, 193, 180, .68);
  --legal-shadow: 0 24px 64px rgba(31, 24, 18, .075);
  background: #faf7f3;
}

.legal-page__hero {
  padding-block: clamp(6.75rem, 8vw, 9rem) clamp(3.5rem, 6vw, 5rem);
}

.legal-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .44fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.legal-page__title {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.legal-page__quick-nav {
  position: static;
  margin-top: 1.6rem;
  padding: .4rem;
  width: max-content;
  max-width: 100%;
  background: rgba(255,255,255,.64);
  border: 1px solid var(--legal-border);
}

.legal-page__quick-nav-inner {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
}

.legal-page__quick-nav a {
  min-height: 2.65rem;
  padding-inline: .8rem;
  color: rgba(26,26,26,.68);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.legal-page__quick-nav a[aria-current="page"] {
  background: var(--c-black);
  color: #fff;
}

.legal-page__meta-card {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--legal-border);
  box-shadow: var(--legal-shadow);
}

.legal-page__meta-badge {
  padding: .9rem 1rem;
  background: var(--c-black);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-page__notice {
  margin-top: -1.2rem;
  position: relative;
  z-index: 2;
}

.legal-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  margin-top: 0;
}

.legal-page__content {
  background: #fff;
}

.legal-page__layout {
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.legal-page__toc {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.25rem);
  padding: 1rem;
  background: #faf7f3;
  border: 1px solid var(--legal-border);
}

.legal-page__sections {
  display: grid;
  gap: 1rem;
}

.legal-section {
  scroll-margin-top: calc(var(--header-height, 76px) + 1rem);
  display: grid;
  grid-template-columns: auto minmax(0, .36fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: #faf7f3;
  border: 1px solid var(--legal-border);
  box-shadow: 0 12px 32px rgba(31,24,18,.035);
}

.legal-section__index {
  color: rgba(170,146,118,.6);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.legal-section__title {
  margin: 0;
  color: var(--c-black);
  font-size: clamp(1.6rem, 1.4vw + 1.1rem, 2.4rem);
  line-height: 1;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.legal-section__body {
  display: grid;
  gap: .85rem;
}

.legal-section__body p {
  margin: 0;
  color: var(--c-text-light);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .35rem;
}

.legal-section__link,
.legal-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .72rem 1rem;
  border: 1px solid rgba(26,26,26,.14);
  background: #fff;
  color: var(--c-black);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-section__button {
  width: max-content;
  background: var(--c-black);
  color: #fff;
  cursor: pointer;
}

.cookie-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--legal-border);
}

.cookie-table th,
.cookie-table td {
  padding: .9rem 1rem;
  border: 1px solid rgba(205,193,180,.62);
  color: var(--c-text-light);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table thead th,
.cookie-table tbody th {
  color: var(--c-black);
  font-weight: 800;
}

.cookie-table thead th {
  background: #f3ece4;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Accessibility / focus */
.about-premium--v2 a:focus-visible,
.contact-premium--v2 a:focus-visible,
.contact-premium--v2 button:focus-visible,
.contact-premium--v2 input:focus-visible,
.contact-premium--v2 textarea:focus-visible,
.legal-page a:focus-visible,
.legal-page button:focus-visible {
  outline: 2px solid var(--c-brown);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .about-hero__grid,
  .contact-hero__grid,
  .about-intro-v2,
  .about-story__grid,
  .about-timeline-v2,
  .contact-page__grid,
  .legal-page__hero-grid,
  .legal-page__layout,
  .about-final-cta__card,
  .legal-cta {
    grid-template-columns: 1fr;
  }

  .about-intro-v2__media,
  .legal-page__toc {
    position: static;
  }

  .legal-page__toc {
    display: none;
  }

  .legal-section {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .legal-section__body {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .about-approach__grid,
  .values__grid--v2,
  .contact-methods,
  .contact-process,
  .about-proof__grid {
    grid-template-columns: 1fr;
  }

  .about-proof__item + .about-proof__item {
    border-left: 0;
    border-top: 1px solid rgba(205,193,180,.62);
  }
}

@media (max-width: 767px) {
  .about-hero,
  .contact-hero {
    padding-block: 5.7rem 3.5rem;
  }

  .about-hero__title,
  .contact-hero__title,
  .legal-page__title {
    font-size: clamp(3.05rem, 14vw, 5rem);
    line-height: .88;
  }

  .about-hero__actions,
  .contact-hero__actions {
    display: grid;
  }

  .about-hero__actions .btn,
  .contact-hero__actions .btn,
  .about-final-cta__card .btn,
  .legal-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about-hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: none;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .legal-notice {
    grid-template-columns: 1fr;
  }

  .legal-page__quick-nav {
    width: 100%;
  }

  .legal-section {
    grid-template-columns: 1fr;
  }

  .legal-section__body {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-approach__card,
  .value-card,
  .contact-method,
  .contact-process__item {
    transition: none;
  }

  .about-approach__card:hover,
  .value-card:hover,
  .contact-method:hover,
  .contact-process__item:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════
   LEGAL PAGES LAYOUT FIX v1.0.6
   Fix: overlap tytułów z treścią w Polityce / Cookies / Regulaminie
   ═══════════════════════════════════════════════ */

body.is-legal-page .legal-page__sections {
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.is-legal-page .legal-section {
  display: grid;
  grid-template-columns:
    clamp(3rem, 4.2vw, 4.85rem)
    minmax(250px, 320px)
    minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(1.25rem, 3vw, 2.75rem);
  row-gap: 1rem;
  padding: clamp(1.35rem, 2.8vw, 2.35rem);
  overflow: hidden;
}

body.is-legal-page .legal-section__index {
  grid-column: 1;
  min-width: 0;
  color: rgba(168, 139, 105, 0.58);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 0.9;
  white-space: nowrap;
}

body.is-legal-page .legal-section__heading {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}

body.is-legal-page .legal-section__title {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.85rem, 1.25vw + 1.25rem, 2.55rem);
  line-height: 0.96;
  letter-spacing: -0.058em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

body.is-legal-page .legal-section__body {
  grid-column: 3;
  min-width: 0;
  max-width: 72ch;
  display: grid;
  gap: 0.85rem;
}

body.is-legal-page .legal-section__body p {
  max-width: 68ch;
  margin: 0;
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.06rem);
  line-height: 1.78;
}

body.is-legal-page .legal-section__links,
body.is-legal-page .cookie-table-wrap {
  min-width: 0;
}

body.is-legal-page .legal-section__link,
body.is-legal-page .legal-section__button {
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 1240px) {
  body.is-legal-page .legal-section {
    grid-template-columns: clamp(3rem, 6vw, 4.25rem) minmax(0, 1fr);
    column-gap: clamp(1rem, 3vw, 2rem);
  }

  body.is-legal-page .legal-section__index {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  body.is-legal-page .legal-section__heading,
  body.is-legal-page .legal-section__body {
    grid-column: 2;
  }

  body.is-legal-page .legal-section__title {
    max-width: 15ch;
    font-size: clamp(2rem, 4vw, 3rem);
  }

  body.is-legal-page .legal-section__body {
    margin-top: 0.2rem;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body.is-legal-page .legal-section {
    grid-template-columns: 1fr;
    padding: 1.15rem;
    border-radius: 1.15rem;
  }

  body.is-legal-page .legal-section__index,
  body.is-legal-page .legal-section__heading,
  body.is-legal-page .legal-section__body {
    grid-column: 1;
    grid-row: auto;
  }

  body.is-legal-page .legal-section__index {
    font-size: 1.65rem;
  }

  body.is-legal-page .legal-section__title {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  body.is-legal-page .legal-section__body p {
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES SAFE LAYOUT FIX v1.0.7
   Fix: usuwa 3-kolumnowy układ kart, który na realnej szerokości treści
   potrafił wypychać tekst poza kartę w Polityce / Cookies / Regulaminie.
   ═══════════════════════════════════════════════ */

body.is-legal-page .legal-page__content {
  overflow: visible;
}

body.is-legal-page .legal-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - 2rem, 1080px);
  max-width: 1080px;
  margin-inline: auto;
}

body.is-legal-page .legal-page__toc {
  display: none;
}

body.is-legal-page .legal-page__sections {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.is-legal-page .legal-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: clamp(3rem, 6vw, 4.65rem) minmax(0, 1fr);
  column-gap: clamp(1rem, 3vw, 2.25rem);
  row-gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: start;
  padding: clamp(1.25rem, 2.8vw, 2.45rem);
  overflow: visible;
}

body.is-legal-page .legal-section__index {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
  color: rgba(168, 139, 105, 0.58);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 0.9;
  white-space: nowrap;
}

body.is-legal-page .legal-section__heading {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}

body.is-legal-page .legal-section__title {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

body.is-legal-page .legal-section__body {
  grid-column: 2;
  min-width: 0;
  max-width: 76ch;
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

body.is-legal-page .legal-section__body p,
body.is-legal-page .legal-section__body li,
body.is-legal-page .legal-section__body td,
body.is-legal-page .legal-section__body th {
  overflow-wrap: anywhere;
}

body.is-legal-page .legal-section__body p {
  max-width: 72ch;
  margin: 0;
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.06rem);
  line-height: 1.78;
}

body.is-legal-page .legal-section__links,
body.is-legal-page .cookie-table-wrap {
  min-width: 0;
  max-width: 100%;
}

body.is-legal-page .legal-section__link,
body.is-legal-page .legal-section__button {
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 760px) {
  body.is-legal-page .legal-page__layout {
    width: min(100% - 1rem, 100%);
  }

  body.is-legal-page .legal-section {
    grid-template-columns: 1fr;
    padding: 1.15rem;
    border-radius: 1.15rem;
  }

  body.is-legal-page .legal-section__index,
  body.is-legal-page .legal-section__heading,
  body.is-legal-page .legal-section__body {
    grid-column: 1;
    grid-row: auto;
  }

  body.is-legal-page .legal-section__index {
    font-size: 1.7rem;
  }

  body.is-legal-page .legal-section__title {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 0.94;
  }

  body.is-legal-page .legal-section__body p {
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE POLISH v1.0.8
   Scoped: body.is-contact-page / .contact-premium--v3
   ═══════════════════════════════════════════════ */

body.is-contact-page .contact-premium--v3 {
  overflow: clip;
  background: #faf7f3;
}

body.is-contact-page .contact-hero--v3 {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7rem, 8.5vw, 10rem) clamp(3.25rem, 6vw, 5.75rem);
  background:
    radial-gradient(circle at 82% 14%, rgba(170, 146, 118, 0.2), transparent 32%),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(180deg, #fbf8f4 0%, #f3ece4 100%);
}

body.is-contact-page .contact-hero--v3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(170, 146, 118, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 146, 118, 0.075) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.52), transparent 76%);
  pointer-events: none;
}

body.is-contact-page .contact-hero--v3::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  bottom: clamp(1.5rem, 5vw, 5rem);
  z-index: -1;
  width: clamp(14rem, 30vw, 30rem);
  aspect-ratio: 1;
  border: 1px solid rgba(170, 146, 118, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 0 0 28px rgba(255,255,255,.22);
  opacity: .78;
}

body.is-contact-page .contact-hero__grid--v3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

body.is-contact-page .contact-hero--v3 .page-hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--c-brown);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.is-contact-page .contact-hero--v3 .page-hero__subtitle::before {
  content: "";
  width: 2.1rem;
  height: 1px;
  background: currentColor;
  opacity: .62;
}

body.is-contact-page .contact-hero--v3 .contact-hero__title {
  max-width: 12ch;
  margin: .9rem 0 0;
  color: var(--c-black);
  font-size: clamp(3.25rem, 6.2vw, 6.85rem);
  line-height: .88;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

body.is-contact-page .contact-hero--v3 .contact-hero__lead {
  max-width: 66ch;
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  color: rgba(35, 31, 28, .76);
  font-size: clamp(1.04rem, .5vw + .94rem, 1.24rem);
  line-height: 1.72;
}

body.is-contact-page .contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.45rem;
}

body.is-contact-page .contact-hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: .58rem .84rem;
  border: 1px solid rgba(170, 146, 118, .36);
  background: rgba(255,255,255,.54);
  color: rgba(26,26,26,.72);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

body.is-contact-page .contact-hero--v3 .contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(1.7rem, 3vw, 2.45rem);
}

body.is-contact-page .contact-hero-card-v3 {
  position: relative;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(205,193,180,.74);
  box-shadow: 0 28px 82px rgba(31,24,18,.12);
  backdrop-filter: blur(18px);
}

body.is-contact-page .contact-hero-card-v3::before {
  content: "";
  position: absolute;
  inset: .75rem;
  border: 1px solid rgba(170,146,118,.18);
  pointer-events: none;
}

body.is-contact-page .contact-hero-card-v3 > * {
  position: relative;
  z-index: 1;
}

body.is-contact-page .contact-hero-card-v3__header {
  padding: .95rem .95rem 1.1rem;
  border-bottom: 1px solid rgba(205,193,180,.66);
}

body.is-contact-page .contact-hero-card-v3__header span,
body.is-contact-page .contact-hero-card-v3__link span,
body.is-contact-page .contact-form__topline span {
  display: block;
  color: var(--c-brown);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.is-contact-page .contact-hero-card-v3__header strong {
  display: block;
  margin-top: .35rem;
  color: var(--c-black);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: .95;
  letter-spacing: -.055em;
}

body.is-contact-page .contact-hero-card-v3__body {
  display: grid;
  gap: .65rem;
  padding: 1rem 0;
}

body.is-contact-page .contact-hero-card-v3__link {
  display: grid;
  gap: .32rem;
  padding: .95rem;
  background: rgba(250,247,243,.78);
  border: 1px solid rgba(205,193,180,.58);
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

body.is-contact-page a.contact-hero-card-v3__link:hover {
  transform: translateY(-2px);
  border-color: rgba(170,146,118,.82);
  background: #fff;
}

body.is-contact-page .contact-hero-card-v3__link strong {
  min-width: 0;
  color: rgba(26,26,26,.82);
  font-size: clamp(1rem, .55vw + .9rem, 1.15rem);
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.is-contact-page .contact-hero-card-v3__footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
  padding: .95rem;
  background: #1b1714;
  color: #fff;
}

body.is-contact-page .contact-hero-card-v3__footer span {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.84);
  font-weight: 900;
}

body.is-contact-page .contact-hero-card-v3__footer p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .95rem;
  line-height: 1.58;
}

body.is-contact-page .contact-quickbar {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

body.is-contact-page .contact-quickbar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(205,193,180,.72);
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 66px rgba(31,24,18,.08);
}

body.is-contact-page .contact-quickbar__item {
  padding: clamp(1.1rem, 2.2vw, 1.75rem);
}

body.is-contact-page .contact-quickbar__item + .contact-quickbar__item {
  border-left: 1px solid rgba(205,193,180,.62);
}

body.is-contact-page .contact-quickbar__item span {
  color: rgba(170,146,118,.72);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: .9;
  letter-spacing: -.06em;
}

body.is-contact-page .contact-quickbar__item strong {
  display: block;
  margin-top: .65rem;
  color: var(--c-black);
  font-size: clamp(1.05rem, .55vw + .95rem, 1.25rem);
  line-height: 1.18;
}

body.is-contact-page .contact-quickbar__item p {
  margin: .45rem 0 0;
  color: var(--c-text-light);
  font-size: .94rem;
  line-height: 1.62;
}

body.is-contact-page .contact-methods-section--v3 {
  background: #fff;
}

body.is-contact-page .contact-methods--v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

body.is-contact-page .contact-method--v3 {
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.75rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(170,146,118,.12), transparent 30%),
    #faf7f3;
  border: 1px solid rgba(205,193,180,.68);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

body.is-contact-page .contact-method--v3:hover {
  transform: translateY(-4px);
  border-color: rgba(170,146,118,.82);
  box-shadow: 0 22px 58px rgba(31,24,18,.075);
}

body.is-contact-page .contact-method--v3 .contact-method__icon {
  width: 3.55rem;
  height: 3.55rem;
  background: #fff;
  color: var(--c-brown);
}

body.is-contact-page .contact-method--v3 .contact-method__value {
  min-width: 0;
  overflow-wrap: anywhere;
}

body.is-contact-page .contact-form-section--v3 {
  background:
    radial-gradient(circle at 90% 0%, rgba(170,146,118,.13), transparent 34%),
    linear-gradient(180deg, #f6f2ed 0%, #faf7f3 100%);
}

body.is-contact-page .contact-page__grid--v3 {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

body.is-contact-page .contact-copy--v3 {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.5rem);
}

body.is-contact-page .contact-copy--v3 h2 {
  max-width: 12ch;
}

body.is-contact-page .contact-info-panel {
  display: grid;
  gap: .7rem;
  margin-top: 1.35rem;
}

body.is-contact-page .contact-info-panel__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
  padding: .9rem;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(205,193,180,.62);
}

body.is-contact-page .contact-info-panel__item span {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  background: var(--c-black);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
}

body.is-contact-page .contact-info-panel__item p {
  margin: 0;
  color: var(--c-text-light);
  font-size: .95rem;
  line-height: 1.58;
}

body.is-contact-page .contact-info-panel__item strong {
  color: var(--c-black);
}

body.is-contact-page .contact-note--v3 {
  margin-top: 1rem;
}

body.is-contact-page .contact-form-shell--v3 {
  position: relative;
}

body.is-contact-page .contact-form-shell--v3::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  z-index: 0;
  border: 1px solid rgba(170,146,118,.18);
  pointer-events: none;
}

body.is-contact-page .contact-form--v3 {
  position: relative;
  z-index: 1;
  padding: clamp(1.15rem, 2.5vw, 2rem);
  background: #fff;
  border: 1px solid rgba(205,193,180,.78);
  box-shadow: 0 24px 70px rgba(31,24,18,.09);
}

body.is-contact-page .contact-form__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: .85rem .95rem;
  background: #faf7f3;
  border: 1px solid rgba(205,193,180,.62);
}

body.is-contact-page .contact-form__topline strong {
  color: var(--c-black);
  font-size: .9rem;
  font-weight: 850;
  text-align: right;
}

body.is-contact-page .form-row {
  display: grid;
  gap: 1rem;
}

body.is-contact-page .form-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-contact-page .contact-form--v3 .form-row + .form-row,
body.is-contact-page .contact-form--v3 .form-row + .form-group,
body.is-contact-page .contact-form--v3 .form-group + .form-group,
body.is-contact-page .contact-form--v3 .contact-form__choice + .form-group,
body.is-contact-page .contact-form--v3 .form-group + .contact-form__choice {
  margin-top: 1rem;
}

body.is-contact-page .contact-form--v3 .form-group__input,
body.is-contact-page .contact-form--v3 .form-group__textarea,
body.is-contact-page .contact-form--v3 .form-group__select {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(205,193,180,.82);
  background: #faf7f3;
  color: var(--c-black);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.is-contact-page .contact-form--v3 .form-group__select {
  appearance: none;
  padding-right: 2.6rem;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) 50%,
    calc(100% - .8rem) 50%;
  background-size: .35rem .35rem, .35rem .35rem;
  background-repeat: no-repeat;
}

body.is-contact-page .contact-form--v3 .form-group__textarea {
  min-height: 10.5rem;
  resize: vertical;
}

body.is-contact-page .contact-form--v3 .form-group__input:focus,
body.is-contact-page .contact-form--v3 .form-group__textarea:focus,
body.is-contact-page .contact-form--v3 .form-group__select:focus {
  border-color: rgba(170,146,118,.95);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(170,146,118,.12);
}

body.is-contact-page .contact-form__choice {
  margin: 1rem 0 0;
  padding: .95rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  border: 1px solid rgba(205,193,180,.68);
  background: #faf7f3;
}

body.is-contact-page .contact-form__choice legend {
  width: 100%;
  margin-bottom: .25rem;
  color: rgba(26,26,26,.72);
  font-size: .82rem;
  font-weight: 850;
}

body.is-contact-page .contact-form__choice label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.45rem;
  padding: .55rem .75rem;
  background: #fff;
  border: 1px solid rgba(205,193,180,.7);
  cursor: pointer;
  user-select: none;
}

body.is-contact-page .contact-form__choice input {
  accent-color: var(--c-brown);
}

body.is-contact-page .contact-form__choice span {
  color: var(--c-black);
  font-size: .9rem;
  font-weight: 750;
}

body.is-contact-page .contact-form--v3 .contact-form__privacy {
  margin-top: 1rem;
  background: #faf7f3;
}

body.is-contact-page .contact-form--v3 .form-submit {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

body.is-contact-page .contact-process-section--v3 {
  background: #fff;
}

body.is-contact-page .contact-process--v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

body.is-contact-page .contact-process--v3 .contact-process__item {
  background:
    radial-gradient(circle at top right, rgba(170,146,118,.12), transparent 32%),
    #faf7f3;
}

body.is-contact-page .contact-premium--v3 a:focus-visible,
body.is-contact-page .contact-premium--v3 button:focus-visible,
body.is-contact-page .contact-premium--v3 input:focus-visible,
body.is-contact-page .contact-premium--v3 textarea:focus-visible,
body.is-contact-page .contact-premium--v3 select:focus-visible {
  outline: 2px solid var(--c-brown);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  body.is-contact-page .contact-hero__grid--v3,
  body.is-contact-page .contact-page__grid--v3 {
    grid-template-columns: 1fr;
  }

  body.is-contact-page .contact-copy--v3 {
    position: static;
  }

  body.is-contact-page .contact-copy--v3 h2 {
    max-width: 16ch;
  }
}

@media (max-width: 900px) {
  body.is-contact-page .contact-quickbar__grid,
  body.is-contact-page .contact-methods--v3,
  body.is-contact-page .contact-process--v3 {
    grid-template-columns: 1fr;
  }

  body.is-contact-page .contact-quickbar__item + .contact-quickbar__item {
    border-left: 0;
    border-top: 1px solid rgba(205,193,180,.62);
  }
}

@media (max-width: 700px) {
  body.is-contact-page .contact-hero--v3 {
    padding-block: 5.8rem 3.45rem;
  }

  body.is-contact-page .contact-hero--v3 .contact-hero__title {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.75rem);
    line-height: .9;
  }

  body.is-contact-page .contact-hero--v3 .contact-hero__actions,
  body.is-contact-page .form-row--2,
  body.is-contact-page .contact-form__topline {
    grid-template-columns: 1fr;
    display: grid;
  }

  body.is-contact-page .contact-hero--v3 .contact-hero__actions .btn,
  body.is-contact-page .contact-form--v3 .form-submit {
    width: 100%;
    justify-content: center;
  }

  body.is-contact-page .contact-form__topline strong {
    text-align: left;
  }

  body.is-contact-page .contact-form-shell--v3::before {
    display: none;
  }

  body.is-contact-page .contact-form__choice {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-contact-page .contact-hero-card-v3__link,
  body.is-contact-page .contact-method--v3 {
    transition: none;
  }

  body.is-contact-page a.contact-hero-card-v3__link:hover,
  body.is-contact-page .contact-method--v3:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════
   CONTACT FORM REFINEMENT v1.0.9
   Fix: przycięty tytuł w panelu formularza, widoczny honeypot,
   zbyt ciężki układ pól i słaba czytelność formularza.
   Scoped: body.is-contact-page / .contact-premium--v4
   ═══════════════════════════════════════════════ */

body.is-contact-page .contact-form-section--v4 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 255, 255, .86), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(170, 146, 118, .13), transparent 24rem),
    linear-gradient(180deg, #f7f1ea 0%, #fbf8f4 100%);
}

body.is-contact-page .contact-page__grid--v4 {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

body.is-contact-page .contact-copy--v4 {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.5rem);
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(170,146,118,.12), transparent 13rem),
    rgba(255,255,255,.78);
  border: 1px solid rgba(205,193,180,.72);
  border-radius: 2rem;
  box-shadow: 0 22px 60px rgba(31,24,18,.065);
  backdrop-filter: blur(14px);
}

body.is-contact-page .contact-copy--v4 .section-header__label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--c-brown);
}

body.is-contact-page .contact-copy--v4 .section-header__label::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

body.is-contact-page .contact-copy--v4 h2 {
  max-width: 8ch;
  margin: 1rem 0 .85rem;
  color: var(--c-black);
  font-size: clamp(3rem, 4.8vw, 4.65rem);
  line-height: .9;
  letter-spacing: -.075em;
  text-wrap: balance;
  overflow-wrap: normal;
}

body.is-contact-page .contact-copy--v4 > p {
  max-width: 32ch;
  margin: 0;
  color: rgba(35,31,28,.72);
  font-size: 1rem;
  line-height: 1.72;
}

body.is-contact-page .contact-copy--v4 .contact-info-panel {
  gap: .6rem;
  margin-top: 1.25rem;
}

body.is-contact-page .contact-copy--v4 .contact-info-panel__item {
  padding: .8rem;
  background: rgba(255,255,255,.74);
  border-color: rgba(205,193,180,.66);
}

body.is-contact-page .contact-copy--v4 .contact-info-panel__item span {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}

body.is-contact-page .contact-copy--v4 .contact-info-panel__item p {
  font-size: .91rem;
  line-height: 1.52;
}

body.is-contact-page .contact-copy--v4 .contact-note--v3 {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(205,193,180,.68);
  box-shadow: 0 14px 34px rgba(31,24,18,.045);
}

body.is-contact-page .contact-form-shell--v4 {
  min-width: 0;
  max-width: 760px;
  width: 100%;
}

body.is-contact-page .contact-form-shell--v4::before {
  inset: 1rem -1rem -1rem 1rem;
  border-radius: 1.8rem;
  background: rgba(255,255,255,.22);
}

body.is-contact-page .contact-form--v4 {
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.75rem);
  border-radius: 1.8rem;
  background: rgba(255,255,255,.92);
  box-shadow: 0 26px 72px rgba(31,24,18,.11);
}

body.is-contact-page .contact-form--v4 .contact-form__topline {
  margin-bottom: 1.15rem;
  padding: .85rem 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(250,247,243,.95), rgba(255,255,255,.82));
  border: 1px solid rgba(205,193,180,.72);
}

body.is-contact-page .contact-form--v4 .contact-form__topline strong {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}

body.is-contact-page .contact-form--v4 .contact-form__topline strong::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: var(--c-brown);
  box-shadow: 0 0 0 4px rgba(170,146,118,.15);
}

body.is-contact-page .contact-form--v4 .form-row {
  gap: 1rem;
}

body.is-contact-page .contact-form--v4 .form-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-contact-page .contact-form--v4 .form-group__label {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: .55rem;
  color: rgba(26,26,26,.78);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.is-contact-page .contact-form--v4 .form-group__optional {
  color: rgba(35,31,28,.48);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: normal;
  text-transform: none;
}

body.is-contact-page .contact-form--v4 .form-group__input,
body.is-contact-page .contact-form--v4 .form-group__textarea,
body.is-contact-page .contact-form--v4 .form-group__select {
  min-height: 3.55rem;
  padding: .95rem 1rem;
  border-radius: .9rem;
  border-color: rgba(205,193,180,.76);
  background-color: #fbf8f4;
  font-size: .98rem;
  line-height: 1.45;
}

body.is-contact-page .contact-form--v4 .form-group__input::placeholder,
body.is-contact-page .contact-form--v4 .form-group__textarea::placeholder {
  color: rgba(35,31,28,.38);
}

body.is-contact-page .contact-form--v4 .form-group__textarea {
  min-height: 8.75rem;
}

body.is-contact-page .contact-form--v4 .contact-form__choice {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fbf8f4;
  border-color: rgba(205,193,180,.72);
}

body.is-contact-page .contact-form--v4 .contact-form__choice legend {
  grid-column: 1 / -1;
  float: left;
  width: 100%;
  margin: 0 0 .2rem;
  padding: 0;
  color: rgba(26,26,26,.78);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.is-contact-page .contact-form--v4 .contact-form__choice label {
  position: relative;
  justify-content: center;
  min-height: 3rem;
  padding: .72rem .8rem;
  border-radius: .85rem;
  background: #fff;
  border-color: rgba(205,193,180,.72);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.is-contact-page .contact-form--v4 .contact-form__choice label:hover {
  transform: translateY(-1px);
  border-color: rgba(170,146,118,.78);
}

body.is-contact-page .contact-form--v4 .contact-form__choice input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

body.is-contact-page .contact-form--v4 .contact-form__choice label:has(input:checked) {
  background: #1b1714;
  border-color: #1b1714;
  box-shadow: 0 12px 28px rgba(31,24,18,.16);
}

body.is-contact-page .contact-form--v4 .contact-form__choice label:has(input:checked) span {
  color: #fff;
}

body.is-contact-page .contact-form--v4 .contact-form__choice label:has(input:checked) input {
  accent-color: #fff;
}

body.is-contact-page .contact-form--v4 .contact-form__privacy {
  margin-top: 1rem;
  padding: .95rem 1rem;
  border-radius: 1rem;
  background: #fbf8f4;
  border: 1px solid rgba(205,193,180,.66);
  color: rgba(35,31,28,.56);
  font-size: .9rem;
  line-height: 1.62;
}

body.is-contact-page .contact-form--v4 .contact-form__privacy a {
  color: var(--c-black);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

body.is-contact-page .contact-form--v4 .form-submit {
  min-height: 3.75rem;
  margin-top: 1rem;
  border-radius: 999px;
  letter-spacing: .11em;
}

body.is-contact-page .contact-form--v4 .form-feedback {
  margin-top: .8rem;
}

body.is-contact-page .contact-form--v4 .screen-reader-text,
body.is-contact-page .contact-form__honeypot,
body.is-contact-page .contact-form__honeypot label,
body.is-contact-page .contact-form__honeypot input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1120px) {
  body.is-contact-page .contact-page__grid--v4 {
    grid-template-columns: minmax(0, 860px);
  }

  body.is-contact-page .contact-copy--v4 {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  body.is-contact-page .contact-copy--v4 > .section-header__label,
  body.is-contact-page .contact-copy--v4 > h2,
  body.is-contact-page .contact-copy--v4 > p,
  body.is-contact-page .contact-copy--v4 > .contact-note--v3 {
    grid-column: 1;
  }

  body.is-contact-page .contact-copy--v4 .contact-info-panel {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
  }

  body.is-contact-page .contact-copy--v4 h2 {
    max-width: 10ch;
  }
}

@media (max-width: 760px) {
  body.is-contact-page .contact-page__grid--v4 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  body.is-contact-page .contact-copy--v4 {
    display: block;
    padding: 1.1rem;
    border-radius: 1.25rem;
  }

  body.is-contact-page .contact-copy--v4 h2 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  body.is-contact-page .contact-copy--v4 .contact-info-panel {
    margin-top: 1rem;
  }

  body.is-contact-page .contact-form-shell--v4::before {
    display: none;
  }

  body.is-contact-page .contact-form--v4 {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  body.is-contact-page .contact-form--v4 .contact-form__topline,
  body.is-contact-page .contact-form--v4 .form-row--2,
  body.is-contact-page .contact-form--v4 .contact-form__choice {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.is-contact-page .contact-form--v4 .contact-form__topline strong {
    white-space: normal;
    text-align: left;
  }

  body.is-contact-page .contact-form--v4 .contact-form__choice label {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE FINAL REFINED v1.1.0
   Pełny redesign sekcji formularza kontaktowego.
   Scoped: tylko body.is-contact-page
   ═══════════════════════════════════════════════ */

body.is-contact-page .contact-form-refined {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 5.5vw, 5.25rem) clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.78), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(170,146,118,.14), transparent 30%),
    linear-gradient(180deg, #f7f2ec 0%, #faf7f3 100%);
  overflow: clip;
}

body.is-contact-page .contact-form-refined::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(170,146,118,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170,146,118,.065) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.46), transparent 82%);
  pointer-events: none;
}

body.is-contact-page .contact-form-refined .container {
  width: min(100% - 2rem, 1240px);
  max-width: 1240px;
  margin-inline: auto;
}

body.is-contact-page .contact-form-refined__grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

body.is-contact-page .contact-form-refined__aside {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.5rem);
}

body.is-contact-page .contact-form-refined__aside-card,
body.is-contact-page .contact-form-refined__card {
  position: relative;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(205,193,180,.72);
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(31,24,18,.075);
  backdrop-filter: blur(14px);
}

body.is-contact-page .contact-form-refined__aside-card {
  padding: clamp(1.45rem, 2.6vw, 2rem);
}

body.is-contact-page .contact-form-refined__card {
  padding: clamp(1.15rem, 2.3vw, 1.85rem);
}

body.is-contact-page .section-eyebrow--contact {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: clamp(1.1rem, 2vw, 1.45rem);
}

body.is-contact-page .section-eyebrow--contact span {
  width: 2rem;
  height: 1px;
  background: rgba(170,146,118,.62);
}

body.is-contact-page .section-eyebrow--contact p {
  margin: 0;
  color: var(--c-brown);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.is-contact-page .contact-form-refined__title {
  max-width: 7.5ch;
  margin: 0 0 1rem;
  color: var(--c-black);
  font-family: var(--font-heading);
  font-size: clamp(3.05rem, 4.7vw, 5.15rem);
  line-height: .88;
  letter-spacing: -.078em;
  text-wrap: balance;
}

body.is-contact-page .contact-form-refined__lead {
  max-width: 34ch;
  margin: 0;
  color: rgba(35,31,28,.72);
  font-size: clamp(1rem, .25vw + .96rem, 1.08rem);
  line-height: 1.72;
}

body.is-contact-page .contact-form-refined__benefits {
  display: grid;
  gap: .75rem;
  margin: clamp(1.25rem, 2vw, 1.55rem) 0 0;
  padding: 0;
  list-style: none;
}

body.is-contact-page .contact-form-refined__benefits li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  min-width: 0;
  padding: .95rem 1rem;
  background: rgba(250,247,243,.86);
  border: 1px solid rgba(205,193,180,.62);
  border-radius: 1.05rem;
}

body.is-contact-page .contact-form-refined__benefits li > span {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: .1rem;
  background: var(--c-black);
  color: #fff;
  border-radius: .45rem;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

body.is-contact-page .contact-form-refined__benefits strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--c-black);
  font-size: .98rem;
  line-height: 1.22;
}

body.is-contact-page .contact-form-refined__benefits p {
  margin: 0;
  color: rgba(35,31,28,.67);
  font-size: .94rem;
  line-height: 1.55;
}

body.is-contact-page .contact-form-refined__tip {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px dashed rgba(170,146,118,.58);
  border-radius: 1.05rem;
  box-shadow: 0 14px 34px rgba(31,24,18,.045);
}

body.is-contact-page .contact-form-refined__tip span {
  display: block;
  margin-bottom: .5rem;
  color: var(--c-brown);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.is-contact-page .contact-form-refined__tip p {
  margin: 0;
  color: rgba(35,31,28,.72);
  font-size: .98rem;
  line-height: 1.65;
}

body.is-contact-page .contact-form-refined__topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.65rem);
  padding: .95rem 1.05rem;
  background: rgba(250,247,243,.86);
  border: 1px solid rgba(205,193,180,.72);
  border-radius: 1.15rem;
}

body.is-contact-page .contact-form-refined__topbar p {
  margin: 0;
  color: var(--c-brown);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.is-contact-page .contact-form-refined__topbar strong {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  color: var(--c-black);
  font-size: .94rem;
  line-height: 1.3;
  white-space: nowrap;
}

body.is-contact-page .contact-form-refined__topbar strong span {
  width: .6rem;
  height: .6rem;
  display: inline-block;
  border-radius: 999px;
  background: var(--c-brown);
  box-shadow: 0 0 0 5px rgba(170,146,118,.14);
}

body.is-contact-page .contact-form-refined__form,
body.is-contact-page .contact-form-refined__card--external .contact-form {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.is-contact-page .contact-form-refined__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.95rem, 1.8vw, 1.15rem);
}

body.is-contact-page .contact-form-refined__form .form-group {
  display: grid;
  gap: .52rem;
  min-width: 0;
  margin: 0 0 1.05rem;
}

body.is-contact-page .contact-form-refined__form .form-group__label,
body.is-contact-page .contact-form-refined__choice legend {
  color: rgba(31,28,24,.84);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.is-contact-page .contact-form-refined__form .form-group__required {
  color: var(--c-brown);
}

body.is-contact-page .contact-form-refined__form .form-group__optional {
  color: rgba(31,28,24,.46);
  font-size: .86em;
  font-weight: 750;
  letter-spacing: normal;
  text-transform: none;
}

body.is-contact-page .contact-form-refined__form .form-group__input,
body.is-contact-page .contact-form-refined__form .form-group__select,
body.is-contact-page .contact-form-refined__form .form-group__textarea,
body.is-contact-page .contact-form-refined__card--external input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
body.is-contact-page .contact-form-refined__card--external select,
body.is-contact-page .contact-form-refined__card--external textarea {
  width: 100%;
  min-height: 3.55rem;
  padding: .95rem 1.05rem;
  background: #fbf8f4;
  border: 1px solid rgba(205,193,180,.9);
  border-radius: 1rem;
  color: var(--c-black);
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: none;
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

body.is-contact-page .contact-form-refined__form .form-group__textarea,
body.is-contact-page .contact-form-refined__card--external textarea {
  min-height: 9.5rem;
  resize: vertical;
}

body.is-contact-page .contact-form-refined__form .form-group__input::placeholder,
body.is-contact-page .contact-form-refined__form .form-group__textarea::placeholder,
body.is-contact-page .contact-form-refined__card--external input::placeholder,
body.is-contact-page .contact-form-refined__card--external textarea::placeholder {
  color: rgba(35,31,28,.44);
}

body.is-contact-page .contact-form-refined__form .form-group__input:focus,
body.is-contact-page .contact-form-refined__form .form-group__select:focus,
body.is-contact-page .contact-form-refined__form .form-group__textarea:focus,
body.is-contact-page .contact-form-refined__card--external input:focus,
body.is-contact-page .contact-form-refined__card--external select:focus,
body.is-contact-page .contact-form-refined__card--external textarea:focus {
  outline: 0;
  background: #fff;
  border-color: rgba(170,146,118,.98);
  box-shadow: 0 0 0 4px rgba(170,146,118,.13);
}

body.is-contact-page .contact-form-refined__choice {
  margin: .05rem 0 1.05rem;
  padding: 1rem;
  background: rgba(250,247,243,.86);
  border: 1px solid rgba(205,193,180,.72);
  border-radius: 1.15rem;
}

body.is-contact-page .contact-form-refined__choice legend {
  padding-inline: .3rem;
  margin-bottom: .75rem;
}

body.is-contact-page .contact-form-refined__choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

body.is-contact-page .contact-choice-pill {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

body.is-contact-page .contact-choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

body.is-contact-page .contact-choice-pill span {
  min-height: 3.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid rgba(205,193,180,.9);
  border-radius: .95rem;
  color: var(--c-black);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.is-contact-page .contact-choice-pill input:checked + span {
  background: var(--c-black);
  border-color: var(--c-black);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31,24,18,.12);
}

body.is-contact-page .contact-choice-pill:hover span {
  transform: translateY(-1px);
}

body.is-contact-page .contact-choice-pill input:focus-visible + span {
  outline: 2px solid var(--c-brown);
  outline-offset: 3px;
}

body.is-contact-page .contact-form-refined__privacy {
  margin: .15rem 0 1.15rem;
  padding: 1rem 1.05rem;
  background: rgba(250,247,243,.86);
  border: 1px solid rgba(205,193,180,.72);
  border-radius: 1rem;
}

body.is-contact-page .contact-form-refined__privacy p {
  margin: 0;
  color: rgba(35,31,28,.66);
  font-size: .96rem;
  line-height: 1.65;
}

body.is-contact-page .contact-form-refined__privacy a {
  color: var(--c-black);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

body.is-contact-page .contact-form-refined__honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.is-contact-page .contact-form-refined__submit {
  width: 100%;
  min-height: 3.85rem;
  justify-content: center;
  border-radius: 999px;
  font-size: .96rem;
  letter-spacing: .095em;
  text-transform: uppercase;
}

body.is-contact-page .contact-form-refined__submit:hover {
  transform: translateY(-1px);
}

body.is-contact-page .contact-form-refined .form-feedback {
  margin-top: 1rem;
}

body.is-contact-page .contact-form-refined .form-group__error {
  min-height: 1.1rem;
  color: #9f2d2d;
  font-size: .84rem;
  line-height: 1.35;
}

body.is-contact-page .contact-form-refined__card--booking h3 {
  margin: 0 0 .75rem;
  color: var(--c-black);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .95;
  letter-spacing: -.055em;
}

body.is-contact-page .contact-form-refined__card--booking p {
  max-width: 58ch;
  margin: 0 0 1.35rem;
  color: rgba(35,31,28,.7);
  line-height: 1.7;
}

@media (max-width: 1180px) {
  body.is-contact-page .contact-form-refined__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 880px;
    margin-inline: auto;
  }

  body.is-contact-page .contact-form-refined__aside {
    position: static;
  }

  body.is-contact-page .contact-form-refined__aside-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
    gap: 1.25rem 1.5rem;
    align-items: start;
  }

  body.is-contact-page .contact-form-refined__aside-card > .section-eyebrow--contact,
  body.is-contact-page .contact-form-refined__aside-card > .contact-form-refined__title,
  body.is-contact-page .contact-form-refined__aside-card > .contact-form-refined__lead,
  body.is-contact-page .contact-form-refined__aside-card > .contact-form-refined__tip {
    grid-column: 1;
  }

  body.is-contact-page .contact-form-refined__benefits {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
  }

  body.is-contact-page .contact-form-refined__title {
    max-width: 10ch;
  }
}

@media (max-width: 820px) {
  body.is-contact-page .contact-form-refined {
    padding-block: 2.25rem 2.75rem;
  }

  body.is-contact-page .contact-form-refined__aside-card {
    display: block;
  }

  body.is-contact-page .contact-form-refined__benefits {
    margin-top: 1.25rem;
  }

  body.is-contact-page .contact-form-refined__fields,
  body.is-contact-page .contact-form-refined__choice-grid {
    grid-template-columns: 1fr;
  }

  body.is-contact-page .contact-form-refined__topbar {
    align-items: flex-start;
  }

  body.is-contact-page .contact-form-refined__topbar strong {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  body.is-contact-page .contact-form-refined .container {
    width: min(100% - 1rem, 100%);
  }

  body.is-contact-page .contact-form-refined__aside-card,
  body.is-contact-page .contact-form-refined__card {
    border-radius: 1.35rem;
  }

  body.is-contact-page .contact-form-refined__aside-card,
  body.is-contact-page .contact-form-refined__card {
    padding: 1rem;
  }

  body.is-contact-page .contact-form-refined__title {
    max-width: 9ch;
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  body.is-contact-page .contact-form-refined__lead {
    max-width: none;
  }

  body.is-contact-page .contact-form-refined__benefits li {
    grid-template-columns: auto minmax(0, 1fr);
    padding: .9rem;
  }

  body.is-contact-page .contact-form-refined__form .form-group__input,
  body.is-contact-page .contact-form-refined__form .form-group__select,
  body.is-contact-page .contact-form-refined__form .form-group__textarea {
    min-height: 3.35rem;
    border-radius: .9rem;
  }

  body.is-contact-page .contact-form-refined__form .form-group__textarea {
    min-height: 8.5rem;
  }

  body.is-contact-page .contact-form-refined__choice,
  body.is-contact-page .contact-form-refined__privacy,
  body.is-contact-page .contact-form-refined__topbar {
    border-radius: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-contact-page .contact-form-refined__form .form-group__input,
  body.is-contact-page .contact-form-refined__form .form-group__select,
  body.is-contact-page .contact-form-refined__form .form-group__textarea,
  body.is-contact-page .contact-choice-pill span,
  body.is-contact-page .contact-form-refined__submit {
    transition: none;
  }

  body.is-contact-page .contact-choice-pill:hover span,
  body.is-contact-page .contact-form-refined__submit:hover {
    transform: none;
  }
}


/* ==========================================================
   CONTACT ASIDE TITLE FIX v1.1.1
   Fix: tytuł „Napisz wiadomość” nie wychodzi poza kartę na wąskich ekranach
   ========================================================== */

body.is-contact-page .contact-form-refined,
body.is-contact-page .contact-form-refined * {
  box-sizing: border-box;
}

body.is-contact-page .contact-form-refined__aside,
body.is-contact-page .contact-form-refined__aside-card {
  min-width: 0;
  max-width: 100%;
}

body.is-contact-page .contact-form-refined__title {
  max-width: 100%;
  width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (min-width: 1181px) {
  body.is-contact-page .contact-form-refined__grid {
    grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
  }

  body.is-contact-page .contact-form-refined__title {
    max-width: 8.35ch;
    font-size: clamp(2.85rem, 3.9vw, 4.45rem);
    line-height: .9;
    letter-spacing: -.072em;
  }
}

@media (max-width: 1180px) {
  body.is-contact-page .contact-form-refined__title {
    max-width: 10ch;
    font-size: clamp(2.85rem, 7vw, 4.35rem);
    line-height: .9;
  }
}

@media (max-width: 640px) {
  body.is-contact-page .contact-form-refined .container {
    width: min(100% - 1.25rem, 100%);
  }

  body.is-contact-page .contact-form-refined__aside-card {
    padding: clamp(1rem, 5vw, 1.2rem);
    overflow: hidden;
  }

  body.is-contact-page .contact-form-refined__title {
    max-width: 8.2ch;
    font-size: clamp(2.35rem, 12.2vw, 3.2rem);
    line-height: .92;
    letter-spacing: -.07em;
  }
}

@media (max-width: 390px) {
  body.is-contact-page .contact-form-refined__title {
    max-width: 7.8ch;
    font-size: clamp(2.15rem, 11.5vw, 2.8rem);
    letter-spacing: -.062em;
  }
}

/* ==========================================================
   SERVICE DETAIL PAGES v1.2.0
   Dotyczy: Klarowność / Klarowność+ / HR Fundament
   Nowy layout bez ingerencji w front-page.php
   ========================================================== */

body.is-service-page .service-page-v2,
body.is-service-page .service-page-v2 * {
  box-sizing: border-box;
}

body.is-service-page .service-page-v2 {
  --spv2-bg: #faf7f3;
  --spv2-bg-soft: #f4eee7;
  --spv2-paper: rgba(255, 255, 255, 0.84);
  --spv2-paper-solid: #fffaf5;
  --spv2-line: rgba(205, 193, 180, 0.72);
  --spv2-line-strong: rgba(171, 146, 118, 0.48);
  --spv2-brown: var(--c-brown, #a88b69);
  --spv2-black: var(--c-black, #171717);
  --spv2-text: var(--c-text, #2d2925);
  --spv2-muted: var(--c-text-light, rgba(45, 41, 37, 0.68));
  --spv2-radius-lg: 2rem;
  --spv2-radius-md: 1.25rem;
  --spv2-shadow: 0 26px 76px rgba(31, 24, 18, 0.09);
  --spv2-soft-shadow: 0 16px 44px rgba(31, 24, 18, 0.055);
  position: relative;
  overflow: clip;
  background: var(--spv2-bg);
  color: var(--spv2-text);
}

body.is-service-page .service-page-v2 a {
  text-underline-offset: 0.22em;
}

body.is-service-page .spv2-section {
  padding-block: clamp(4.5rem, 7vw, 7.25rem);
}

body.is-service-page .spv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--spv2-brown);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.is-service-page .spv2-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

body.is-service-page .spv2-back,
body.is-service-page .spv2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(31, 28, 24, 0.74);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

body.is-service-page .spv2-back:hover,
body.is-service-page .spv2-text-link:hover {
  color: var(--spv2-black);
  transform: translateX(3px);
}

body.is-service-page .spv2-back:hover {
  transform: translateX(-3px);
}

body.is-service-page .service-page-v2 a:focus-visible,
body.is-service-page .service-page-v2 button:focus-visible,
body.is-service-page .service-page-v2 summary:focus-visible {
  outline: 2px solid var(--spv2-brown);
  outline-offset: 4px;
}

/* HERO */
body.is-service-page .spv2-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7rem, 9vw, 10rem) clamp(3.75rem, 6vw, 5.75rem);
  background:
    radial-gradient(circle at 78% 10%, rgba(171, 146, 118, 0.18), transparent 34%),
    radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.78), transparent 35%),
    linear-gradient(180deg, #fbf8f4 0%, var(--spv2-bg-soft) 100%);
}

body.is-service-page .spv2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(171, 146, 118, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(171, 146, 118, 0.07) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.48), transparent 72%);
  pointer-events: none;
}

body.is-service-page .spv2-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(171, 146, 118, 0.45), transparent);
}

body.is-service-page .spv2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.25rem);
}

body.is-service-page .spv2-hero__content,
body.is-service-page .spv2-hero__aside,
body.is-service-page .spv2-rich-content,
body.is-service-page .spv2-section-head,
body.is-service-page .spv2-fit__intro,
body.is-service-page .spv2-faq-list {
  min-width: 0;
}

body.is-service-page .spv2-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: clamp(1.5rem, 2.5vw, 2.1rem);
}

body.is-service-page .spv2-offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(171, 146, 118, 0.35);
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  color: rgba(31, 28, 24, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

body.is-service-page .spv2-number {
  margin: clamp(1.15rem, 2vw, 1.6rem) 0 0.45rem;
  color: rgba(171, 146, 118, 0.48);
  font-family: var(--font-heading, serif);
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

body.is-service-page .spv2-hero__title {
  max-width: 11ch;
  margin: 0;
  color: var(--spv2-black);
  font-size: clamp(3.45rem, 7.2vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.078em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

body.is-service-page .service-page-v2--hr-fundament .spv2-hero__title,
body.is-service-page .service-page-v2--klarownosc-plus .spv2-hero__title {
  max-width: 12.5ch;
}

body.is-service-page .spv2-hero__subtitle {
  max-width: 62ch;
  margin: clamp(1.2rem, 2vw, 1.6rem) 0 0;
  color: rgba(35, 31, 28, 0.78);
  font-size: clamp(1.06rem, 0.7vw + 0.95rem, 1.32rem);
  line-height: 1.68;
}

body.is-service-page .spv2-promise {
  max-width: 680px;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(205, 193, 180, 0.68);
  border-radius: 1.25rem;
  box-shadow: 0 12px 34px rgba(31, 24, 18, 0.045);
}

body.is-service-page .spv2-promise span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--spv2-brown);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-service-page .spv2-promise p {
  margin: 0;
  color: rgba(31, 28, 24, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

body.is-service-page .spv2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

body.is-service-page .spv2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(171, 146, 118, 0.34);
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  color: rgba(31, 28, 24, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

body.is-service-page .spv2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem 1.2rem;
  margin-top: clamp(1.55rem, 3vw, 2.25rem);
}

body.is-service-page .spv2-primary-cta,
body.is-service-page .spv2-cta-button {
  white-space: nowrap;
}

/* Hero aside */
body.is-service-page .spv2-hero__aside {
  position: relative;
}

body.is-service-page .spv2-hero__media {
  position: relative;
  min-height: clamp(390px, 50vw, 550px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--spv2-line);
  border-radius: var(--spv2-radius-lg);
  background: #e8ded4;
  box-shadow: var(--spv2-shadow);
  isolation: isolate;
}

body.is-service-page .spv2-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(17,17,17,0) 42%, rgba(17,17,17,0.62) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.12), transparent 55%);
  pointer-events: none;
}

body.is-service-page .spv2-hero__media::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: calc(var(--spv2-radius-lg) - 0.65rem);
  pointer-events: none;
}

body.is-service-page .spv2-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

body.is-service-page .spv2-hero__media figcaption {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  z-index: 4;
  display: grid;
  gap: 0.35rem;
  color: #fff;
}

body.is-service-page .spv2-hero__media figcaption span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

body.is-service-page .spv2-hero__media figcaption strong {
  font-family: var(--font-heading, serif);
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 0.92;
  letter-spacing: -0.052em;
}

body.is-service-page .spv2-summary-card {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -2rem 1.15rem 0;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(205,193,180,0.78);
  border-radius: 1.25rem;
  box-shadow: 0 18px 44px rgba(31,24,18,0.09);
  backdrop-filter: blur(14px);
}

body.is-service-page .spv2-summary-card__item {
  min-width: 0;
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem;
}

body.is-service-page .spv2-summary-card__item + .spv2-summary-card__item {
  border-left: 1px solid rgba(205,193,180,0.58);
}

body.is-service-page .spv2-summary-card__item span {
  color: rgba(31,28,24,0.52);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.is-service-page .spv2-summary-card__item strong {
  color: var(--spv2-black);
  font-size: 0.96rem;
  line-height: 1.28;
}

body.is-service-page .spv2-best-for {
  margin: 1rem 1.15rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(205,193,180,0.72);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 12px 32px rgba(31,24,18,0.045);
}

body.is-service-page .spv2-best-for span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--spv2-brown);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-service-page .spv2-best-for p {
  margin: 0;
  color: rgba(31,28,24,0.74);
  line-height: 1.62;
}

/* NAV */
body.is-service-page .spv2-nav {
  position: sticky;
  top: var(--header-height, 72px);
  z-index: 40;
  background: rgba(250,247,243,0.88);
  border-block: 1px solid rgba(205,193,180,0.56);
  backdrop-filter: blur(16px);
}

body.is-service-page .spv2-nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  overflow-x: auto;
  scrollbar-width: none;
}

body.is-service-page .spv2-nav__inner::-webkit-scrollbar {
  display: none;
}

body.is-service-page .spv2-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 3.35rem;
  color: rgba(31, 28, 24, 0.66);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body.is-service-page .spv2-nav a:hover,
body.is-service-page .spv2-nav a:focus-visible {
  color: var(--spv2-black);
}

/* COMMON CONTENT */
body.is-service-page .spv2-two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

body.is-service-page .spv2-section-head {
  position: sticky;
  top: calc(var(--header-height, 72px) + 4.5rem);
}

body.is-service-page .spv2-section-head h2,
body.is-service-page .spv2-fit__intro h2,
body.is-service-page .spv2-cta-card h2 {
  max-width: 12ch;
  margin: 0.85rem 0 0;
  color: var(--spv2-black);
  font-size: clamp(2.45rem, 4.4vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.066em;
  text-wrap: balance;
}

body.is-service-page .spv2-section-head--center {
  position: static;
  max-width: 820px;
  margin: 0 auto clamp(1.65rem, 3vw, 2.4rem);
  text-align: center;
}

body.is-service-page .spv2-section-head--center .spv2-eyebrow {
  justify-content: center;
}

body.is-service-page .spv2-section-head--center h2 {
  max-width: 13ch;
  margin-inline: auto;
}

body.is-service-page .spv2-section-head--row {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
}

body.is-service-page .spv2-lead-text {
  max-width: 72ch;
  margin: 0;
  color: rgba(35,31,28,0.78);
  font-size: clamp(1.05rem, 0.45vw + 0.98rem, 1.22rem);
  line-height: 1.78;
}

body.is-service-page .spv2-check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.is-service-page .spv2-check-list p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin: 0;
  padding: 1rem 1.05rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--spv2-line);
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(31,24,18,0.035);
  color: rgba(35,31,28,0.74);
  line-height: 1.68;
}

body.is-service-page .spv2-check-list p span {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--spv2-black);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

/* MODULES */
body.is-service-page .spv2-modules,
body.is-service-page .spv2-related {
  background:
    radial-gradient(circle at 86% 0%, rgba(171,146,118,0.14), transparent 32%),
    linear-gradient(180deg, var(--spv2-bg-soft) 0%, var(--spv2-bg) 100%);
}

body.is-service-page .spv2-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}

body.is-service-page .spv2-module-card,
body.is-service-page .spv2-fit-card,
body.is-service-page .spv2-result-card,
body.is-service-page .spv2-related-card {
  min-width: 0;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--spv2-line);
  border-radius: var(--spv2-radius-md);
  box-shadow: var(--spv2-soft-shadow);
}

body.is-service-page .spv2-module-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.is-service-page .spv2-module-card:hover,
body.is-service-page .spv2-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(171,146,118,0.78);
  box-shadow: 0 24px 58px rgba(31,24,18,0.08);
}

body.is-service-page .spv2-module-card__index {
  display: inline-flex;
  margin-bottom: clamp(2.2rem, 4vw, 3rem);
  color: rgba(171,146,118,0.62);
  font-family: var(--font-heading, serif);
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

body.is-service-page .spv2-module-card h3,
body.is-service-page .spv2-fit-card h3,
body.is-service-page .spv2-process-item h3 {
  margin: 0 0 0.7rem;
  color: var(--spv2-black);
  font-size: clamp(1.35rem, 1vw + 1rem, 1.9rem);
  line-height: 1.04;
  letter-spacing: -0.046em;
  text-wrap: balance;
}

body.is-service-page .spv2-module-card p,
body.is-service-page .spv2-fit__intro p,
body.is-service-page .spv2-fit-card li,
body.is-service-page .spv2-process-item p,
body.is-service-page .spv2-faq-item p,
body.is-service-page .spv2-cta-card p {
  color: var(--spv2-muted);
  line-height: 1.72;
}

body.is-service-page .spv2-module-card p {
  margin: 0;
}

/* FIT */
body.is-service-page .spv2-fit {
  background: #fff;
}

body.is-service-page .spv2-fit__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

body.is-service-page .spv2-fit__intro {
  padding: clamp(1.25rem, 2.2vw, 1.75rem) 0;
}

body.is-service-page .spv2-fit__intro h2 {
  max-width: 11ch;
}

body.is-service-page .spv2-fit__intro p {
  max-width: 42ch;
  margin: 1rem 0 0;
}

body.is-service-page .spv2-fit-card {
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
}

body.is-service-page .spv2-fit-card--yes {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(250,247,243,0.88)),
    radial-gradient(circle at top right, rgba(171,146,118,0.18), transparent 35%);
}

body.is-service-page .spv2-fit-card--no {
  background: #fbf8f4;
}

body.is-service-page .spv2-fit-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
}

body.is-service-page .spv2-fit-card li::marker {
  color: var(--spv2-brown);
}

/* PROCESS */
body.is-service-page .spv2-process {
  background: var(--spv2-bg);
}

body.is-service-page .spv2-process-list {
  display: grid;
  border-top: 1px solid var(--spv2-line);
}

body.is-service-page .spv2-process-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1.25rem, 2vw, 1.75rem) 0;
  border-bottom: 1px solid var(--spv2-line);
}

body.is-service-page .spv2-process-item > span {
  display: inline-grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  border: 1px solid rgba(171,146,118,0.42);
  border-radius: 999px;
  background: #fff;
  color: var(--spv2-brown);
  font-family: var(--font-heading, serif);
  font-size: 1rem;
  line-height: 1;
}

body.is-service-page .spv2-process-item p {
  max-width: 62ch;
  margin: 0;
}

/* RESULTS */
body.is-service-page .spv2-results {
  background: #181512;
  color: #fff;
}

body.is-service-page .spv2-results .spv2-eyebrow,
body.is-service-page .spv2-results .spv2-section-head h2 {
  color: #fff;
}

body.is-service-page .spv2-results .spv2-eyebrow {
  opacity: 0.72;
}

body.is-service-page .spv2-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}

body.is-service-page .spv2-result-card {
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

body.is-service-page .spv2-result-card span {
  display: block;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: rgba(255,255,255,0.42);
  font-family: var(--font-heading, serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

body.is-service-page .spv2-result-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* FAQ */
body.is-service-page .spv2-faq {
  background: #fff;
}

body.is-service-page .spv2-faq-list {
  border-top: 1px solid var(--spv2-line);
}

body.is-service-page .spv2-faq-item {
  border-bottom: 1px solid var(--spv2-line);
}

body.is-service-page .spv2-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  color: var(--spv2-black);
  font-family: var(--font-heading, serif);
  font-size: clamp(1.38rem, 0.95vw + 1rem, 1.95rem);
  line-height: 1.06;
  letter-spacing: -0.044em;
  cursor: pointer;
  list-style: none;
}

body.is-service-page .spv2-faq-item summary::-webkit-details-marker {
  display: none;
}

body.is-service-page .spv2-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--spv2-brown);
  font-family: var(--font-body, sans-serif);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

body.is-service-page .spv2-faq-item[open] summary::after {
  transform: rotate(45deg);
}

body.is-service-page .spv2-faq-item div {
  padding-bottom: 1.35rem;
}

body.is-service-page .spv2-faq-item p {
  max-width: 68ch;
  margin: 0;
}

/* RELATED */
body.is-service-page .spv2-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.35rem);
}

body.is-service-page .spv2-related-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.is-service-page .spv2-related-card::after {
  content: "→";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  color: var(--spv2-brown);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

body.is-service-page .spv2-related-card:hover::after {
  transform: translateX(4px);
}

body.is-service-page .spv2-related-card span {
  color: rgba(171,146,118,0.58);
  font-family: var(--font-heading, serif);
  font-size: 2.6rem;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

body.is-service-page .spv2-related-card strong {
  margin-top: 0.65rem;
  color: var(--spv2-black);
  font-family: var(--font-heading, serif);
  font-size: clamp(1.85rem, 2.7vw, 2.75rem);
  line-height: 0.92;
  letter-spacing: -0.058em;
}

body.is-service-page .spv2-related-card em {
  margin-top: 0.55rem;
  color: var(--spv2-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* CTA */
body.is-service-page .spv2-cta {
  background: #fff;
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

body.is-service-page .spv2-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  border: 1px solid var(--spv2-line);
  border-radius: var(--spv2-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(171,146,118,0.22), transparent 34%),
    linear-gradient(135deg, var(--spv2-bg-soft) 0%, #fff 100%);
  box-shadow: 0 24px 66px rgba(31,24,18,0.075);
  overflow: hidden;
}

body.is-service-page .spv2-cta-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(171,146,118,0.15);
  border-radius: calc(var(--spv2-radius-lg) - 0.65rem);
  pointer-events: none;
}

body.is-service-page .spv2-cta-card > * {
  position: relative;
  z-index: 1;
}

body.is-service-page .spv2-cta-card h2 {
  max-width: 15ch;
}

body.is-service-page .spv2-cta-card p {
  max-width: 62ch;
  margin: 1rem 0 0;
  font-size: 1.03rem;
}

/* Mobile fixed CTA */
body.is-service-page .spv2-mobile-cta {
  display: none;
}

/* Service-specific accents */
body.is-service-page .service-page-v2--hr-fundament {
  --spv2-brown: #9b7b5a;
}

body.is-service-page .service-page-v2--hr-fundament .spv2-results {
  background:
    radial-gradient(circle at 82% 10%, rgba(171,146,118,0.14), transparent 34%),
    #151413;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  body.is-service-page .spv2-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    gap: 2.25rem;
  }

  body.is-service-page .spv2-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.is-service-page .spv2-fit__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-service-page .spv2-fit__intro {
    grid-column: 1 / -1;
    padding: 0;
  }

  body.is-service-page .spv2-fit__intro h2,
  body.is-service-page .spv2-fit__intro p {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  body.is-service-page .spv2-hero__grid,
  body.is-service-page .spv2-two-col,
  body.is-service-page .spv2-cta-card {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv2-section-head {
    position: static;
  }

  body.is-service-page .spv2-hero__aside {
    max-width: 620px;
  }

  body.is-service-page .spv2-hero__media {
    min-height: auto;
  }

  body.is-service-page .spv2-cta-card {
    align-items: start;
  }
}

@media (max-width: 767px) {
  body.is-service-page .service-page-v2 {
    padding-bottom: 4.45rem;
  }

  body.is-service-page .spv2-section {
    padding-block: 3.75rem;
  }

  body.is-service-page .spv2-hero {
    padding-block: 5.75rem 3.75rem;
  }

  body.is-service-page .spv2-hero__title {
    max-width: 9.5ch;
    font-size: clamp(3rem, 15vw, 4.95rem);
    line-height: 0.88;
    letter-spacing: -0.072em;
  }

  body.is-service-page .service-page-v2--hr-fundament .spv2-hero__title,
  body.is-service-page .service-page-v2--klarownosc-plus .spv2-hero__title {
    max-width: 10.5ch;
  }

  body.is-service-page .spv2-number {
    font-size: clamp(2.5rem, 13vw, 4.25rem);
  }

  body.is-service-page .spv2-actions {
    display: grid;
    align-items: stretch;
  }

  body.is-service-page .spv2-actions .btn,
  body.is-service-page .spv2-cta-card .btn {
    width: 100%;
    justify-content: center;
  }

  body.is-service-page .spv2-hero__media {
    aspect-ratio: 4 / 4.65;
    border-radius: 1.4rem;
  }

  body.is-service-page .spv2-hero__media::after {
    inset: 0.7rem;
    border-radius: 0.95rem;
  }

  body.is-service-page .spv2-summary-card {
    grid-template-columns: 1fr;
    margin: -1.35rem 0.8rem 0;
  }

  body.is-service-page .spv2-summary-card__item + .spv2-summary-card__item {
    border-left: 0;
    border-top: 1px solid rgba(205,193,180,0.58);
  }

  body.is-service-page .spv2-best-for {
    margin-inline: 0.8rem;
  }

  body.is-service-page .spv2-nav {
    top: var(--header-height, 64px);
  }

  body.is-service-page .spv2-section-head h2,
  body.is-service-page .spv2-fit__intro h2,
  body.is-service-page .spv2-cta-card h2 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 11vw, 3.55rem);
    line-height: 0.94;
  }

  body.is-service-page .spv2-module-grid,
  body.is-service-page .spv2-fit__grid,
  body.is-service-page .spv2-results-grid,
  body.is-service-page .spv2-related-grid {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv2-module-card {
    min-height: auto;
  }

  body.is-service-page .spv2-module-card__index,
  body.is-service-page .spv2-result-card span {
    margin-bottom: 1.35rem;
  }

  body.is-service-page .spv2-process-item {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  body.is-service-page .spv2-section-head--row {
    display: grid;
    align-items: start;
  }

  body.is-service-page .spv2-cta-card {
    padding: 1.25rem;
    border-radius: 1.4rem;
  }

  body.is-service-page .spv2-cta-card::before {
    inset: 0.7rem;
    border-radius: 1rem;
  }

  body.is-service-page .spv2-mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    display: block;
    padding: 0.75rem;
    background: rgba(250,247,243,0.9);
    border-top: 1px solid rgba(205,193,180,0.62);
    backdrop-filter: blur(16px);
  }

  body.is-service-page .spv2-mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  body.is-service-page .spv2-hero__title {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  body.is-service-page .spv2-promise,
  body.is-service-page .spv2-check-list p,
  body.is-service-page .spv2-module-card,
  body.is-service-page .spv2-fit-card,
  body.is-service-page .spv2-result-card {
    border-radius: 1rem;
  }

  body.is-service-page .spv2-related-card {
    min-height: 165px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-service-page .service-page-v2 *,
  body.is-service-page .service-page-v2 *::before,
  body.is-service-page .service-page-v2 *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  body.is-service-page .spv2-module-card:hover,
  body.is-service-page .spv2-related-card:hover,
  body.is-service-page .spv2-back:hover,
  body.is-service-page .spv2-text-link:hover {
    transform: none;
  }
}


/* ==========================================================
   SERVICE PAGES REFINED v1.2.1
   HR Fundament / Klarowność / Klarowność+
   Scoped only to body.is-service-page .service-page-v3
   ========================================================== */

body.is-service-page .service-page-v3 {
  --spv3-bg: #faf7f3;
  --spv3-surface: rgba(255, 255, 255, 0.76);
  --spv3-surface-strong: #fffaf5;
  --spv3-ink: #181716;
  --spv3-muted: rgba(35, 31, 28, 0.72);
  --spv3-soft: rgba(205, 193, 180, 0.72);
  --spv3-soft-2: rgba(205, 193, 180, 0.48);
  --spv3-accent: #a88b69;
  --spv3-accent-dark: #80664b;
  --spv3-radius: 1.65rem;
  --spv3-radius-lg: 2.2rem;
  --spv3-shadow: 0 24px 70px rgba(31, 24, 18, 0.08);
  --spv3-shadow-soft: 0 16px 42px rgba(31, 24, 18, 0.055);
  background:
    radial-gradient(circle at 88% 4%, rgba(168, 139, 105, 0.16), transparent 32rem),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.88), transparent 28rem),
    var(--spv3-bg);
  color: var(--spv3-ink);
  overflow: clip;
}

body.is-service-page .service-page-v3 *,
body.is-service-page .service-page-v3 *::before,
body.is-service-page .service-page-v3 *::after {
  box-sizing: border-box;
}

body.is-service-page .service-page-v3--hr-fundament {
  --spv3-accent: #9b7b5a;
  --spv3-accent-dark: #72593f;
}

body.is-service-page .service-page-v3--klarownosc-plus {
  --spv3-accent: #aa8b67;
  --spv3-accent-dark: #735c43;
}

body.is-service-page .service-page-v3 .container {
  width: min(100% - 2rem, 1220px);
}

body.is-service-page .spv3-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7rem, 9vw, 10.25rem) clamp(3.5rem, 6vw, 5.5rem);
}

body.is-service-page .spv3-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(168, 139, 105, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 139, 105, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 86%);
  pointer-events: none;
}

body.is-service-page .spv3-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.47fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

body.is-service-page .spv3-hero__content {
  min-width: 0;
}

body.is-service-page .spv3-back,
body.is-service-page .spv3-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--spv3-ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

body.is-service-page .spv3-back {
  margin-bottom: 1.35rem;
  color: rgba(24, 23, 22, 0.68);
}

body.is-service-page .spv3-back:hover,
body.is-service-page .spv3-link:hover {
  color: var(--spv3-accent-dark);
}

body.is-service-page .spv3-meta-row,
body.is-service-page .spv3-chip-row,
body.is-service-page .spv3-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

body.is-service-page .spv3-meta-row {
  margin-bottom: clamp(1.1rem, 2vw, 1.55rem);
}

body.is-service-page .spv3-kicker,
body.is-service-page .spv3-index,
body.is-service-page .spv3-chip,
body.is-service-page .spv3-promise span,
body.is-service-page .spv3-best-for span,
body.is-service-page .spv3-summary__item span {
  color: var(--spv3-accent-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.is-service-page .spv3-index,
body.is-service-page .spv3-chip {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.74rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--spv3-soft);
  border-radius: 999px;
  color: rgba(24, 23, 22, 0.72);
  box-shadow: 0 8px 22px rgba(31,24,18,0.035);
}

body.is-service-page .spv3-hero__title {
  max-width: 10.5ch;
  margin: 0;
  color: var(--spv3-ink);
  font-family: var(--font-heading, serif);
  font-size: clamp(4.25rem, 8.5vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: -0.083em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

body.is-service-page .service-page-v3--hr-fundament .spv3-hero__title {
  max-width: 9.5ch;
}

body.is-service-page .service-page-v3--klarownosc-plus .spv3-hero__title {
  max-width: 9ch;
}

body.is-service-page .spv3-hero__subtitle {
  max-width: 62ch;
  margin: clamp(1.15rem, 2vw, 1.65rem) 0 0;
  color: rgba(24, 23, 22, 0.9);
  font-size: clamp(1.12rem, 0.7vw + 1rem, 1.42rem);
  line-height: 1.56;
  text-wrap: balance;
}

body.is-service-page .spv3-hero__description {
  max-width: 70ch;
  margin-top: 1.15rem;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(168, 139, 105, 0.45);
}

body.is-service-page .spv3-hero__description p,
body.is-service-page .spv3-section-head p,
body.is-service-page .spv3-fit__intro p,
body.is-service-page .spv3-cta-card p {
  margin: 0;
  color: var(--spv3-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

body.is-service-page .spv3-chip-row {
  margin-top: 1.35rem;
}

body.is-service-page .spv3-actions {
  margin-top: clamp(1.6rem, 3vw, 2.35rem);
}

body.is-service-page .spv3-actions__primary,
body.is-service-page .spv3-cta-card__button {
  min-height: 3.35rem;
  padding-inline: 1.45rem;
  border-radius: 999px;
}

body.is-service-page .spv3-hero-card {
  min-width: 0;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--spv3-soft);
  border-radius: var(--spv3-radius-lg);
  box-shadow: var(--spv3-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

body.is-service-page .spv3-hero-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.05;
  margin: 0;
  overflow: hidden;
  background: #eadfd4;
}

body.is-service-page .spv3-hero-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(20,18,16,0.28)),
    radial-gradient(circle at 18% 15%, rgba(255,255,255,0.35), transparent 30%);
  pointer-events: none;
}

body.is-service-page .spv3-hero-card__media img,
body.is-service-page .spv3-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.is-service-page .spv3-hero-card__body {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

body.is-service-page .spv3-promise,
body.is-service-page .spv3-best-for,
body.is-service-page .spv3-summary {
  background: rgba(250,247,243,0.86);
  border: 1px solid var(--spv3-soft-2);
  border-radius: 1.25rem;
}

body.is-service-page .spv3-promise,
body.is-service-page .spv3-best-for {
  padding: 1rem;
}

body.is-service-page .spv3-promise p,
body.is-service-page .spv3-best-for p {
  margin: 0.48rem 0 0;
  color: rgba(24,23,22,0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

body.is-service-page .spv3-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

body.is-service-page .spv3-summary__item {
  min-width: 0;
  padding: 0.92rem;
}

body.is-service-page .spv3-summary__item + .spv3-summary__item {
  border-left: 1px solid var(--spv3-soft-2);
}

body.is-service-page .spv3-summary__item strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--spv3-ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

body.is-service-page .spv3-nav {
  position: sticky;
  top: var(--header-height, 74px);
  z-index: 45;
  background: rgba(250,247,243,0.78);
  border-block: 1px solid rgba(205,193,180,0.58);
  backdrop-filter: blur(16px);
}

body.is-service-page .spv3-nav__inner {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 0.5rem;
}

body.is-service-page .spv3-nav__inner::-webkit-scrollbar {
  display: none;
}

body.is-service-page .spv3-nav a {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: rgba(24, 23, 22, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body.is-service-page .spv3-nav a:hover {
  background: rgba(255,255,255,0.72);
  color: var(--spv3-ink);
}

body.is-service-page .spv3-section {
  padding-block: clamp(4.25rem, 7vw, 7rem);
  scroll-margin-top: calc(var(--header-height, 74px) + 4rem);
}

body.is-service-page .spv3-overview,
body.is-service-page .spv3-process,
body.is-service-page .spv3-related {
  background: #fffaf5;
}

body.is-service-page .spv3-overview__grid,
body.is-service-page .spv3-process__grid,
body.is-service-page .spv3-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

body.is-service-page .spv3-section-head {
  min-width: 0;
}

body.is-service-page .spv3-section-head h2,
body.is-service-page .spv3-fit__intro h2,
body.is-service-page .spv3-cta-card h2 {
  max-width: 13ch;
  margin: 0.75rem 0 1rem;
  color: var(--spv3-ink);
  font-family: var(--font-heading, serif);
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

body.is-service-page .spv3-section-head--center {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
  text-align: center;
}

body.is-service-page .spv3-section-head--center h2 {
  max-width: 14ch;
  margin-inline: auto;
}

body.is-service-page .spv3-section-head--light h2,
body.is-service-page .spv3-section-head--light p {
  color: #fff;
}

body.is-service-page .spv3-section-head--light .spv3-kicker {
  color: rgba(255,255,255,0.62);
}

body.is-service-page .spv3-section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

body.is-service-page .spv3-lead-cards {
  display: grid;
  gap: 1rem;
}

body.is-service-page .spv3-lead-card,
body.is-service-page .spv3-scope-card,
body.is-service-page .spv3-fit-card,
body.is-service-page .spv3-process-item,
body.is-service-page .spv3-faq-item,
body.is-service-page .spv3-related-card {
  background: var(--spv3-surface);
  border: 1px solid var(--spv3-soft);
  border-radius: var(--spv3-radius);
  box-shadow: var(--spv3-shadow-soft);
}

body.is-service-page .spv3-lead-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

body.is-service-page .spv3-lead-card span,
body.is-service-page .spv3-scope-card__top span,
body.is-service-page .spv3-process-item > span,
body.is-service-page .spv3-result-card span,
body.is-service-page .spv3-related-card > span {
  color: rgba(168,139,105,0.64);
  font-family: var(--font-heading, serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.85;
  letter-spacing: -0.065em;
}

body.is-service-page .spv3-lead-card p,
body.is-service-page .spv3-scope-card p,
body.is-service-page .spv3-fit-card li,
body.is-service-page .spv3-process-item p,
body.is-service-page .spv3-result-card p,
body.is-service-page .spv3-faq-item p {
  margin: 0;
  color: var(--spv3-muted);
  line-height: 1.74;
}

body.is-service-page .spv3-scope {
  background:
    radial-gradient(circle at 10% 0%, rgba(168,139,105,0.12), transparent 30rem),
    var(--spv3-bg);
}

body.is-service-page .spv3-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.is-service-page .spv3-scope-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.2vw, 1.65rem);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

body.is-service-page .spv3-scope-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(168,139,105,0.12), transparent 35%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

body.is-service-page .spv3-scope-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,139,105,0.8);
  box-shadow: 0 22px 64px rgba(31,24,18,0.08);
}

body.is-service-page .spv3-scope-card:hover::before {
  opacity: 1;
}

body.is-service-page .spv3-scope-card__top {
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

body.is-service-page .spv3-scope-card h3,
body.is-service-page .spv3-fit-card h3,
body.is-service-page .spv3-process-item h3 {
  margin: 0 0 0.75rem;
  color: var(--spv3-ink);
  font-size: clamp(1.35rem, 1.1vw + 1rem, 1.95rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.is-service-page .spv3-fit {
  background: linear-gradient(180deg, #fffaf5 0%, #f4eee7 100%);
}

body.is-service-page .spv3-fit__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

body.is-service-page .spv3-fit__intro {
  align-self: center;
  padding-right: clamp(0rem, 2vw, 1.2rem);
}

body.is-service-page .spv3-fit-card {
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

body.is-service-page .spv3-fit-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

body.is-service-page .spv3-fit-card li {
  position: relative;
  padding-left: 1.55rem;
}

body.is-service-page .spv3-fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--spv3-accent);
  box-shadow: 0 0 0 0.35rem rgba(168,139,105,0.12);
}

body.is-service-page .spv3-fit-card--note {
  background: rgba(24, 23, 22, 0.94);
  border-color: rgba(24,23,22,0.2);
}

body.is-service-page .spv3-fit-card--note h3,
body.is-service-page .spv3-fit-card--note li {
  color: rgba(255,255,255,0.9);
}

body.is-service-page .spv3-fit-card--note li::before {
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 0 0.35rem rgba(255,255,255,0.12);
}

body.is-service-page .spv3-process-list {
  display: grid;
  gap: 1rem;
}

body.is-service-page .spv3-process-item {
  display: grid;
  grid-template-columns: minmax(3rem, auto) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
}

body.is-service-page .spv3-results {
  background:
    radial-gradient(circle at 78% 12%, rgba(168,139,105,0.22), transparent 30rem),
    radial-gradient(circle at 8% 80%, rgba(255,255,255,0.08), transparent 20rem),
    #151413;
}

body.is-service-page .spv3-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.is-service-page .spv3-result-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--spv3-radius);
}

body.is-service-page .spv3-result-card span {
  color: rgba(255,255,255,0.42);
}

body.is-service-page .spv3-result-card p {
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.12rem, 0.9vw + 1rem, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

body.is-service-page .spv3-faq {
  background: var(--spv3-bg);
}

body.is-service-page .spv3-faq-list {
  display: grid;
  gap: 0.85rem;
}

body.is-service-page .spv3-faq-item {
  overflow: hidden;
}

body.is-service-page .spv3-faq-item summary {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: var(--spv3-ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

body.is-service-page .spv3-faq-item summary::-webkit-details-marker {
  display: none;
}

body.is-service-page .spv3-faq-item summary::after {
  content: "+";
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--spv3-soft);
  border-radius: 50%;
  color: var(--spv3-accent-dark);
  font-size: 1.25rem;
  line-height: 1;
}

body.is-service-page .spv3-faq-item[open] summary::after {
  content: "−";
}

body.is-service-page .spv3-faq-item div {
  padding: 0 1.25rem 1.25rem;
}

body.is-service-page .spv3-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.is-service-page .spv3-related-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--spv3-ink);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body.is-service-page .spv3-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,139,105,0.82);
  box-shadow: 0 22px 64px rgba(31,24,18,0.08);
}

body.is-service-page .spv3-related-card strong {
  max-width: 10ch;
  color: var(--spv3-ink);
  font-family: var(--font-heading, serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.068em;
}

body.is-service-page .spv3-related-card em {
  color: var(--spv3-muted);
  font-style: normal;
  font-weight: 700;
}

body.is-service-page .spv3-cta {
  background: linear-gradient(180deg, #fffaf5 0%, #faf7f3 100%);
}

body.is-service-page .spv3-cta-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(1.5rem, 4vw, 3.3rem);
  background:
    radial-gradient(circle at 88% 0%, rgba(168,139,105,0.18), transparent 34%),
    rgba(255,255,255,0.78);
  border: 1px solid var(--spv3-soft);
  border-radius: var(--spv3-radius-lg);
  box-shadow: var(--spv3-shadow);
  overflow: hidden;
}

body.is-service-page .spv3-cta-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(168,139,105,0.18);
  border-radius: calc(var(--spv3-radius-lg) - 0.65rem);
  pointer-events: none;
}

body.is-service-page .spv3-cta-card h2 {
  max-width: 15ch;
}

body.is-service-page .spv3-mobile-cta {
  display: none;
}

body.is-service-page .service-page-v3 a:focus-visible,
body.is-service-page .service-page-v3 button:focus-visible,
body.is-service-page .service-page-v3 summary:focus-visible {
  outline: 2px solid var(--spv3-accent);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  body.is-service-page .spv3-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.55fr);
    gap: 2.25rem;
  }

  body.is-service-page .spv3-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.is-service-page .spv3-fit__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-service-page .spv3-fit__intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-fit__intro p {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  body.is-service-page .spv3-hero__grid,
  body.is-service-page .spv3-overview__grid,
  body.is-service-page .spv3-process__grid,
  body.is-service-page .spv3-faq__grid,
  body.is-service-page .spv3-cta-card {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-hero-card {
    max-width: 660px;
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-section-head p {
    max-width: none;
  }

  body.is-service-page .spv3-cta-card {
    align-items: start;
  }
}

@media (max-width: 767px) {
  body.is-service-page .service-page-v3 {
    padding-bottom: 4.6rem;
  }

  body.is-service-page .service-page-v3 .container {
    width: min(100% - 1.1rem, 100%);
  }

  body.is-service-page .spv3-hero {
    padding-block: 5.8rem 3.4rem;
  }

  body.is-service-page .spv3-hero__title {
    max-width: 10ch;
    font-size: clamp(3.1rem, 16vw, 5.15rem);
    line-height: 0.87;
    letter-spacing: -0.076em;
  }

  body.is-service-page .service-page-v3--hr-fundament .spv3-hero__title {
    max-width: 9.4ch;
  }

  body.is-service-page .service-page-v3--klarownosc-plus .spv3-hero__title {
    max-width: 8.6ch;
  }

  body.is-service-page .spv3-hero__subtitle {
    font-size: 1.08rem;
  }

  body.is-service-page .spv3-hero__description {
    padding-left: 0.9rem;
  }

  body.is-service-page .spv3-actions,
  body.is-service-page .spv3-actions .btn,
  body.is-service-page .spv3-cta-card .btn {
    width: 100%;
  }

  body.is-service-page .spv3-actions {
    display: grid;
  }

  body.is-service-page .spv3-actions .btn,
  body.is-service-page .spv3-cta-card .btn {
    justify-content: center;
  }

  body.is-service-page .spv3-hero-card,
  body.is-service-page .spv3-cta-card,
  body.is-service-page .spv3-lead-card,
  body.is-service-page .spv3-scope-card,
  body.is-service-page .spv3-fit-card,
  body.is-service-page .spv3-process-item,
  body.is-service-page .spv3-faq-item,
  body.is-service-page .spv3-related-card {
    border-radius: 1.25rem;
  }

  body.is-service-page .spv3-hero-card__media {
    aspect-ratio: 4 / 3.4;
  }

  body.is-service-page .spv3-summary {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-summary__item + .spv3-summary__item {
    border-left: 0;
    border-top: 1px solid var(--spv3-soft-2);
  }

  body.is-service-page .spv3-nav {
    top: var(--header-height, 64px);
  }

  body.is-service-page .spv3-section {
    padding-block: 3.65rem;
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-cta-card h2 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 11vw, 3.55rem);
    line-height: 0.93;
  }

  body.is-service-page .spv3-lead-card,
  body.is-service-page .spv3-process-item {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-scope-grid,
  body.is-service-page .spv3-fit__grid,
  body.is-service-page .spv3-results-grid,
  body.is-service-page .spv3-related-grid {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-result-card {
    min-height: 220px;
  }

  body.is-service-page .spv3-section-head--row {
    display: grid;
    align-items: start;
  }

  body.is-service-page .spv3-cta-card {
    padding: 1.25rem;
  }

  body.is-service-page .spv3-cta-card::before {
    inset: 0.65rem;
    border-radius: 0.9rem;
  }

  body.is-service-page .spv3-mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    display: block;
    padding: 0.75rem;
    background: rgba(250,247,243,0.9);
    border-top: 1px solid rgba(205,193,180,0.62);
    backdrop-filter: blur(16px);
  }

  body.is-service-page .spv3-mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  body.is-service-page .spv3-hero__title {
    font-size: clamp(2.75rem, 15vw, 4.15rem);
  }

  body.is-service-page .spv3-hero__subtitle,
  body.is-service-page .spv3-hero__description p,
  body.is-service-page .spv3-section-head p,
  body.is-service-page .spv3-fit__intro p,
  body.is-service-page .spv3-cta-card p {
    font-size: 0.98rem;
  }

  body.is-service-page .spv3-related-card {
    min-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-service-page .service-page-v3 *,
  body.is-service-page .service-page-v3 *::before,
  body.is-service-page .service-page-v3 *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  body.is-service-page .spv3-scope-card:hover,
  body.is-service-page .spv3-related-card:hover {
    transform: none;
  }
}

/* ==========================================================
   SERVICE PAGES LAYOUT FIX v1.2.2
   Fix: overlap / rozjechany layout w sekcjach O usłudze,
   Dla kogo, Proces i FAQ na desktopie.
   ========================================================== */
body.is-service-page .spv3-overview__grid,
body.is-service-page .spv3-process__grid,
body.is-service-page .spv3-faq__grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

body.is-service-page .spv3-fit__grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

body.is-service-page .spv3-section-head,
body.is-service-page .spv3-fit__intro {
  min-width: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

body.is-service-page .spv3-section-head h2,
body.is-service-page .spv3-fit__intro h2,
body.is-service-page .spv3-cta-card h2 {
  max-width: 8.2ch;
  font-size: clamp(2.45rem, 3.5vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: -0.064em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

body.is-service-page .spv3-section-head p,
body.is-service-page .spv3-fit__intro p {
  max-width: 28rem;
}

body.is-service-page .spv3-lead-card,
body.is-service-page .spv3-process-item {
  grid-template-columns: minmax(3.25rem, 4rem) minmax(0, 1fr);
  gap: clamp(1rem, 1.8vw, 1.35rem);
}

body.is-service-page .spv3-lead-card span,
body.is-service-page .spv3-process-item > span {
  font-size: clamp(1.95rem, 2.2vw, 2.7rem);
}

body.is-service-page .spv3-lead-card p,
body.is-service-page .spv3-process-item p,
body.is-service-page .spv3-faq-item p,
body.is-service-page .spv3-fit-card li {
  max-width: 68ch;
}

body.is-service-page .spv3-fit-card {
  align-self: start;
}

body.is-service-page .spv3-fit-card--note {
  min-height: 0;
}

body.is-service-page .spv3-fit-card h3,
body.is-service-page .spv3-process-item h3 {
  max-width: 14ch;
  font-size: clamp(1.45rem, 1.2vw + 1rem, 2.1rem);
  line-height: 1.02;
}

body.is-service-page .spv3-faq-item summary {
  min-height: 4rem;
  padding: 1rem 1.15rem;
}

@media (max-width: 1360px) {
  body.is-service-page .spv3-overview__grid,
  body.is-service-page .spv3-process__grid,
  body.is-service-page .spv3-faq__grid {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  }

  body.is-service-page .spv3-fit__grid {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) minmax(0, 1fr);
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-cta-card h2 {
    max-width: 8.8ch;
    font-size: clamp(2.35rem, 3.2vw, 4rem);
  }
}

@media (max-width: 1180px) {
  body.is-service-page .spv3-fit__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-service-page .spv3-fit__intro {
    grid-column: 1 / -1;
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-cta-card h2 {
    max-width: 10ch;
  }
}

@media (max-width: 1024px) {
  body.is-service-page .spv3-overview__grid,
  body.is-service-page .spv3-process__grid,
  body.is-service-page .spv3-faq__grid,
  body.is-service-page .spv3-fit__grid {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-section-head p,
  body.is-service-page .spv3-fit__intro p {
    max-width: none;
  }
}

@media (max-width: 767px) {
  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-cta-card h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10.5vw, 3.4rem);
  }

  body.is-service-page .spv3-lead-card,
  body.is-service-page .spv3-process-item {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   SERVICE PAGES FINAL POLISH v1.2.3
   HR Fundament / Klarowność / Klarowność+
   Cel: spójny premium layout, bez nachodzenia nagłówków,
   lepszy hero, CTA, FAQ, sekcje i mobile.
   ========================================================== */

body.is-service-page .service-page-v3 {
  --spv3-final-bg: #fbf7f2;
  --spv3-final-surface: rgba(255, 255, 255, 0.82);
  --spv3-final-border: rgba(204, 193, 180, 0.78);
  --spv3-final-ink: #171615;
  --spv3-final-muted: rgba(35, 31, 28, 0.70);
  --spv3-final-soft: rgba(168, 139, 105, 0.14);
  --spv3-final-radius: clamp(1.25rem, 2vw, 1.85rem);
  background:
    radial-gradient(circle at 82% 2%, rgba(168, 139, 105, 0.14), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.84), transparent 26rem),
    linear-gradient(180deg, #fbf7f2 0%, #f4eee7 42%, #fbf7f2 100%);
  overflow-x: clip;
}

body.is-service-page .service-page-v3 *,
body.is-service-page .service-page-v3 *::before,
body.is-service-page .service-page-v3 *::after {
  box-sizing: border-box;
}

/* HERO */
body.is-service-page .spv3-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7rem, 9vw, 10rem) clamp(3.5rem, 6vw, 5.25rem);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.65), transparent 40%),
    radial-gradient(circle at 74% 18%, rgba(168,139,105,0.15), transparent 30rem);
}

body.is-service-page .spv3-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(168,139,105,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,139,105,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.42), transparent 74%);
  pointer-events: none;
}

body.is-service-page .spv3-hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.58fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

body.is-service-page .spv3-back {
  width: fit-content;
  padding: 0.55rem 0.8rem;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(204,193,180,0.68);
  border-radius: 999px;
  color: rgba(35,31,28,0.72);
}

body.is-service-page .spv3-back:hover {
  background: #fff;
  color: var(--spv3-final-ink);
}

body.is-service-page .spv3-meta-row {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

body.is-service-page .spv3-hero__title {
  max-width: 9.8ch;
  margin-top: 0.85rem;
  font-size: clamp(4.15rem, 8vw, 8.2rem);
  line-height: 0.84;
  letter-spacing: -0.082em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

body.is-service-page .service-page-v3--hr-fundament .spv3-hero__title {
  max-width: 8.6ch;
}

body.is-service-page .service-page-v3--klarownosc-plus .spv3-hero__title {
  max-width: 8.4ch;
}

body.is-service-page .spv3-hero__subtitle {
  max-width: 58ch;
  color: rgba(31,28,24,0.82);
}

body.is-service-page .spv3-hero__description {
  max-width: 68ch;
  border-left-color: rgba(168,139,105,0.55);
}

body.is-service-page .spv3-chip-row {
  margin-top: 1.45rem;
}

body.is-service-page .spv3-chip {
  background: rgba(255,255,255,0.62);
  border-color: rgba(204,193,180,0.72);
  color: rgba(31,28,24,0.72);
}

body.is-service-page .spv3-actions {
  margin-top: clamp(1.6rem, 3vw, 2.3rem);
}

body.is-service-page .spv3-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
}

body.is-service-page .spv3-hero-trust li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.55rem 0.78rem;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(204,193,180,0.62);
  border-radius: 999px;
  color: rgba(35,31,28,0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

body.is-service-page .spv3-hero-trust li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(168,139,105,0.84);
}

/* HERO CARD */
body.is-service-page .spv3-hero-card {
  border-radius: clamp(1.45rem, 2vw, 2rem);
  background: rgba(255,255,255,0.78);
  border-color: rgba(204,193,180,0.78);
  box-shadow: 0 28px 90px rgba(31,24,18,0.12);
  backdrop-filter: blur(16px);
}

body.is-service-page .spv3-hero-card__media {
  background: #efe6dc;
}

body.is-service-page .spv3-hero-card__media::after {
  opacity: 0.22;
}

body.is-service-page .spv3-hero-card__body {
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
}

body.is-service-page .spv3-promise,
body.is-service-page .spv3-best-for {
  background: rgba(250,247,243,0.78);
  border: 1px solid rgba(204,193,180,0.62);
  border-radius: 1.15rem;
  padding: 1rem;
}

body.is-service-page .spv3-summary {
  overflow: hidden;
  border-radius: 1.15rem;
}

/* NAV */
body.is-service-page .spv3-nav {
  background: rgba(251,247,242,0.82);
  border-block: 1px solid rgba(204,193,180,0.58);
  backdrop-filter: blur(18px);
}

body.is-service-page .spv3-nav__inner {
  justify-content: center;
  gap: 0.4rem;
}

body.is-service-page .spv3-nav a {
  border-radius: 999px;
}

/* SECTIONS */
body.is-service-page .spv3-section {
  padding-block: clamp(4.6rem, 7vw, 7.4rem);
}

body.is-service-page .spv3-overview__grid,
body.is-service-page .spv3-process__grid,
body.is-service-page .spv3-faq__grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.25rem);
  align-items: start;
}

body.is-service-page .spv3-fit__grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: start;
}

body.is-service-page .spv3-overview__grid > .spv3-section-head,
body.is-service-page .spv3-process__grid > .spv3-section-head,
body.is-service-page .spv3-faq__grid > .spv3-section-head,
body.is-service-page .spv3-fit__intro {
  position: sticky;
  top: calc(var(--header-height, 76px) + 5.25rem);
  z-index: 1;
  align-self: start;
  min-width: 0;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(204,193,180,0.56);
  border-radius: var(--spv3-final-radius);
  box-shadow: 0 18px 52px rgba(31,24,18,0.045);
  backdrop-filter: blur(10px);
}

body.is-service-page .spv3-section-head h2,
body.is-service-page .spv3-fit__intro h2,
body.is-service-page .spv3-cta-card h2 {
  max-width: 9ch;
  font-size: clamp(2.35rem, 3.45vw, 4.25rem);
  line-height: 0.93;
  letter-spacing: -0.064em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

body.is-service-page .spv3-section-head p,
body.is-service-page .spv3-fit__intro p {
  max-width: 28rem;
  color: rgba(35,31,28,0.68);
}

body.is-service-page .spv3-section-head--center {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

/* O USŁUDZE / PROCESS CARDS */
body.is-service-page .spv3-lead-cards,
body.is-service-page .spv3-process-list,
body.is-service-page .spv3-faq-list {
  gap: 1rem;
}

body.is-service-page .spv3-lead-card,
body.is-service-page .spv3-process-item,
body.is-service-page .spv3-faq-item {
  border-color: rgba(204,193,180,0.74);
  box-shadow: 0 18px 54px rgba(31,24,18,0.055);
}

body.is-service-page .spv3-lead-card,
body.is-service-page .spv3-process-item {
  grid-template-columns: minmax(3.3rem, 4.4rem) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
}

body.is-service-page .spv3-lead-card span,
body.is-service-page .spv3-process-item > span {
  font-size: clamp(2rem, 2.45vw, 2.8rem);
}

body.is-service-page .spv3-lead-card p,
body.is-service-page .spv3-process-item p {
  max-width: 72ch;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.08rem);
}

/* ZAKRES */
body.is-service-page .spv3-scope-grid {
  gap: clamp(0.95rem, 2vw, 1.45rem);
}

body.is-service-page .spv3-scope-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  border-color: rgba(204,193,180,0.76);
  background:
    radial-gradient(circle at 100% 0%, rgba(168,139,105,0.10), transparent 42%),
    rgba(255,255,255,0.78);
  box-shadow: 0 18px 56px rgba(31,24,18,0.055);
}

body.is-service-page .spv3-scope-card__top {
  margin-bottom: auto;
  padding-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

body.is-service-page .spv3-scope-card h3 {
  max-width: 13ch;
}

/* DLA KOGO */
body.is-service-page .spv3-fit-card {
  align-self: start;
  min-height: 0;
  border-color: rgba(204,193,180,0.76);
  box-shadow: 0 20px 64px rgba(31,24,18,0.065);
}

body.is-service-page .spv3-fit-card h3 {
  max-width: 14ch;
}

body.is-service-page .spv3-fit-card--yes {
  background:
    radial-gradient(circle at 95% 0%, rgba(168,139,105,0.12), transparent 34%),
    rgba(255,255,255,0.86);
}

body.is-service-page .spv3-fit-card--note {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(255,255,255,0.11), transparent 32%),
    linear-gradient(145deg, #242220 0%, #171615 100%);
}

body.is-service-page .spv3-fit-card--note::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

body.is-service-page .spv3-fit-card li {
  max-width: 62ch;
}

/* EFEKTY */
body.is-service-page .spv3-results {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body.is-service-page .spv3-results::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2rem;
  pointer-events: none;
}

body.is-service-page .spv3-result-card {
  min-height: 230px;
  border-radius: var(--spv3-final-radius);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

body.is-service-page .spv3-result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
}

/* FAQ */
body.is-service-page .spv3-faq-item {
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.82);
}

body.is-service-page .spv3-faq-item summary {
  min-height: 4.15rem;
  padding: 1.05rem 1.2rem;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.12rem);
}

body.is-service-page .spv3-faq-item summary::after {
  background: #fffaf5;
  transition: transform .2s ease, background-color .2s ease;
}

body.is-service-page .spv3-faq-item[open] summary::after {
  transform: rotate(180deg);
  background: #f1e8de;
}

body.is-service-page .spv3-faq-item div {
  padding-inline: 1.2rem;
}

body.is-service-page .spv3-faq-item p {
  max-width: 76ch;
}

/* RELATED + CTA */
body.is-service-page .spv3-related-card {
  min-height: 190px;
  background:
    radial-gradient(circle at 95% 0%, rgba(168,139,105,0.13), transparent 36%),
    rgba(255,255,255,0.80);
}

body.is-service-page .spv3-cta {
  padding-top: clamp(3.8rem, 6vw, 6rem);
}

body.is-service-page .spv3-cta-card {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  background:
    radial-gradient(circle at 82% 0%, rgba(168,139,105,0.21), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(250,247,243,0.78));
}

body.is-service-page .spv3-cta-card h2 {
  max-width: 18ch;
}

body.is-service-page .spv3-cta-card p {
  max-width: 68ch;
}

body.is-service-page .spv3-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

body.is-service-page .spv3-cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.78rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(204,193,180,0.62);
  border-radius: 999px;
  color: rgba(35,31,28,0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

body.is-service-page .spv3-cta-points li::before {
  content: "✓";
  color: rgba(168,139,105,0.95);
  font-weight: 900;
}

body.is-service-page .spv3-cta-card__button {
  min-width: 220px;
  justify-content: center;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 1360px) {
  body.is-service-page .spv3-hero__title {
    font-size: clamp(3.85rem, 7.4vw, 7.25rem);
  }

  body.is-service-page .spv3-overview__grid,
  body.is-service-page .spv3-process__grid,
  body.is-service-page .spv3-faq__grid {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  }

  body.is-service-page .spv3-fit__grid {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) minmax(0, 1fr);
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2 {
    max-width: 8.6ch;
    font-size: clamp(2.25rem, 3.2vw, 3.8rem);
  }
}

@media (max-width: 1180px) {
  body.is-service-page .spv3-hero__grid,
  body.is-service-page .spv3-overview__grid,
  body.is-service-page .spv3-process__grid,
  body.is-service-page .spv3-faq__grid {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-hero-card {
    max-width: 680px;
  }

  body.is-service-page .spv3-overview__grid > .spv3-section-head,
  body.is-service-page .spv3-process__grid > .spv3-section-head,
  body.is-service-page .spv3-faq__grid > .spv3-section-head,
  body.is-service-page .spv3-fit__intro {
    position: static;
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2 {
    max-width: 13ch;
  }

  body.is-service-page .spv3-fit__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-service-page .spv3-fit__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  body.is-service-page .spv3-scope-grid,
  body.is-service-page .spv3-fit__grid,
  body.is-service-page .spv3-results-grid,
  body.is-service-page .spv3-related-grid,
  body.is-service-page .spv3-cta-card {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-cta-card__button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.is-service-page .spv3-hero {
    padding-block: 5.8rem 3.25rem;
  }

  body.is-service-page .spv3-hero__title,
  body.is-service-page .service-page-v3--hr-fundament .spv3-hero__title,
  body.is-service-page .service-page-v3--klarownosc-plus .spv3-hero__title {
    max-width: 10ch;
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 0.88;
  }

  body.is-service-page .spv3-section {
    padding-block: 3.5rem;
  }

  body.is-service-page .spv3-overview__grid > .spv3-section-head,
  body.is-service-page .spv3-process__grid > .spv3-section-head,
  body.is-service-page .spv3-faq__grid > .spv3-section-head,
  body.is-service-page .spv3-fit__intro {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-cta-card h2 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  body.is-service-page .spv3-lead-card,
  body.is-service-page .spv3-process-item {
    grid-template-columns: 1fr;
  }

  body.is-service-page .spv3-hero-trust,
  body.is-service-page .spv3-cta-points {
    display: grid;
  }

  body.is-service-page .spv3-hero-trust li,
  body.is-service-page .spv3-cta-points li {
    width: 100%;
  }

  body.is-service-page .spv3-scope-card,
  body.is-service-page .spv3-result-card,
  body.is-service-page .spv3-related-card {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  body.is-service-page .spv3-hero__title,
  body.is-service-page .service-page-v3--hr-fundament .spv3-hero__title,
  body.is-service-page .service-page-v3--klarownosc-plus .spv3-hero__title {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  body.is-service-page .spv3-section-head h2,
  body.is-service-page .spv3-fit__intro h2,
  body.is-service-page .spv3-cta-card h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
}

/* ==========================================================
   FOOTER MOBILE FINAL POLISH v1.2.4
   Cel: bardziej premium, czytelna i kompaktowa stopka na mobile.
   Scoped do .site-footer, bez wpływu na stronę główną i sekcje body.
   ========================================================== */

@media (max-width: 760px) {
  .site-footer {
    --footer-mobile-bg: #15100d;
    --footer-mobile-card: rgba(255, 255, 255, 0.055);
    --footer-mobile-card-strong: rgba(255, 255, 255, 0.075);
    --footer-mobile-line: rgba(255, 255, 255, 0.105);
    --footer-mobile-text: rgba(255, 255, 255, 0.84);
    --footer-mobile-muted: rgba(255, 255, 255, 0.58);
    background:
      radial-gradient(circle at 50% -8%, rgba(168, 139, 105, 0.18), transparent 22rem),
      radial-gradient(circle at 0% 28%, rgba(255, 255, 255, 0.035), transparent 18rem),
      var(--footer-mobile-bg) !important;
    border-top: 1px solid rgba(168, 139, 105, 0.34) !important;
  }

  .site-footer .footer-main {
    padding: clamp(2rem, 7vw, 2.75rem) 0 0 !important;
    background: transparent !important;
  }

  .site-footer .footer-main > .container,
  .site-footer .footer-bottom > .container {
    width: min(100% - 2rem, 100%) !important;
  }

  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.95rem !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .site-footer .footer-col {
    min-width: 0 !important;
    padding: 1.08rem !important;
    background: var(--footer-mobile-card) !important;
    border: 1px solid var(--footer-mobile-line) !important;
    border-radius: 1.35rem !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14) !important;
  }

  .site-footer .footer-col--brand {
    padding: clamp(1.15rem, 5vw, 1.45rem) !important;
    text-align: center !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
    border-radius: 1.55rem !important;
  }

  .site-footer .footer-col--brand::before {
    left: 50% !important;
    top: 0 !important;
    width: min(180px, 48%) !important;
    height: 2px !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, var(--c-brown), transparent) !important;
  }

  .site-footer .footer-logo {
    display: inline-flex !important;
    justify-content: center !important;
    margin: 0 0 0.85rem !important;
    color: #fff !important;
    font-size: clamp(1.45rem, 7vw, 1.9rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
  }

  .site-footer .footer-desc {
    max-width: 31ch !important;
    margin: 0 auto 1.05rem !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: clamp(0.94rem, 3.5vw, 1.02rem) !important;
    line-height: 1.65 !important;
    text-wrap: balance !important;
  }

  .site-footer .footer-badges {
    justify-content: center !important;
    gap: 0.46rem !important;
    margin: 0 0 1.05rem !important;
  }

  .site-footer .footer-badge {
    min-height: 2rem !important;
    padding: 0.46rem 0.72rem !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.035em !important;
  }

  .site-footer .footer-social {
    justify-content: center !important;
    gap: 0.65rem !important;
    margin-top: 0 !important;
  }

  .site-footer .footer-social__link {
    width: 2.75rem !important;
    height: 2.75rem !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
  }

  .site-footer .footer-col:not(.footer-col--brand) {
    display: grid !important;
    gap: 0.8rem !important;
  }

  .site-footer .footer-col__title,
  .site-footer .footer-col h4 {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    color: rgba(255, 255, 255, 0.54) !important;
    font-size: 0.72rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.14em !important;
    text-align: left !important;
  }

  .site-footer .footer-col__title::after,
  .site-footer .footer-col h4::after {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    background: linear-gradient(90deg, rgba(168, 139, 105, 0.42), transparent);
  }

  .site-footer .footer-menu {
    width: 100% !important;
    display: grid !important;
    align-items: stretch !important;
    gap: 0.48rem !important;
  }

  .site-footer .footer-menu li {
    margin: 0 !important;
  }

  .site-footer .footer-menu a,
  .site-footer .footer-contact-link,
  .site-footer .footer-location {
    width: 100% !important;
    min-height: 2.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.72rem !important;
    padding: 0.72rem 0.78rem !important;
    color: var(--footer-mobile-text) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.065) !important;
    border-radius: 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    text-decoration: none !important;
  }

  .site-footer .footer-menu a:hover,
  .site-footer .footer-contact-link:hover,
  .site-footer .footer-location:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(168, 139, 105, 0.26) !important;
    text-decoration: none !important;
  }

  .site-footer .footer-contact-link svg,
  .site-footer .footer-location svg {
    width: 1rem !important;
    height: 1rem !important;
    flex: 0 0 1rem !important;
    color: #c4aa8c !important;
    opacity: 1 !important;
  }

  .site-footer .footer-contact-link[href^="mailto"] {
    font-size: 0.9rem !important;
    overflow-wrap: anywhere !important;
  }

  .site-footer .footer-bottom {
    margin-top: 1.25rem !important;
    padding: 1.1rem 0 max(1rem, env(safe-area-inset-bottom)) !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.075) !important;
  }

  .site-footer .footer-bottom__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.78rem !important;
    align-items: stretch !important;
    text-align: left !important;
  }

  .site-footer .footer-copyright,
  .site-footer .footer-made {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }

  .site-footer .footer-made {
    margin-top: -0.2rem !important;
  }

  .site-footer .footer-backtop {
    width: 100% !important;
    min-height: 3rem !important;
    justify-content: center !important;
    margin-top: 0.1rem !important;
    color: rgba(255, 255, 255, 0.84) !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    border-radius: 999px !important;
    font-size: 0.92rem !important;
    font-weight: 850 !important;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-main > .container,
  .site-footer .footer-bottom > .container {
    width: min(100% - 1.25rem, 100%) !important;
  }

  .site-footer .footer-grid {
    gap: 0.82rem !important;
  }

  .site-footer .footer-col {
    border-radius: 1.16rem !important;
  }

  .site-footer .footer-col--brand {
    border-radius: 1.36rem !important;
  }

  .site-footer .footer-social__link {
    width: 2.65rem !important;
    height: 2.65rem !important;
  }
}

@media (min-width: 481px) and (max-width: 760px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-footer .footer-col--brand,
  .site-footer .footer-col:nth-child(3) {
    grid-column: 1 / -1 !important;
  }
}

/* ==========================================================
   HERO MOBILE / TABLET PREMIUM FINAL
   v1.2.5
   Fix: zdjęcie w hero na mniejszych urządzeniach
   ========================================================== */

@media (max-width: 1180px) {
  .hero.hero--split {
    min-height: auto;
    padding-top: calc(var(--header-height, 76px) + clamp(1.5rem, 4vw, 3rem));
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  }

  .hero__inner {
    width: min(100% - 2rem, 980px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(1.75rem, 4vw, 3rem);
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__title {
    max-width: 10ch;
  }

  .hero__visual {
    min-height: 500px;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero__portrait {
    width: min(350px, 100%);
    border-radius: 2rem;
    background-position: center 18%;
    box-shadow:
      0 26px 70px rgba(31, 24, 18, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  }

  .hero__decor--blob {
    width: min(300px, 72vw);
    height: min(370px, 82vw);
    top: 2rem;
    right: 50%;
    transform: translateX(48%) rotate(-10deg);
  }

  .hero__decor--frame {
    width: min(260px, 62vw);
    height: min(340px, 78vw);
    left: 50%;
    bottom: 2rem;
    transform: translateX(-48%) rotate(7deg);
    border-radius: 2rem;
    opacity: 0.5;
  }

  .hero__decor--accent {
    width: 96px;
    height: 96px;
    right: 1rem;
    bottom: 1.5rem;
    opacity: 0.8;
  }
}

@media (max-width: 991px) {
  .hero.hero--split {
    padding-top: calc(var(--header-height, 76px) + 1.75rem);
    padding-bottom: 4rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(100% - 2rem, 720px);
    align-items: start;
  }

  .hero__content {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .hero__label {
    margin-bottom: 1rem;
  }

  .hero__title {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(3.15rem, 8.8vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.068em;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: 2;
    min-height: 430px;
    max-width: 420px;
    margin-inline: auto;
    margin-top: 0.25rem;
  }

  .hero__portrait {
    width: min(330px, 76vw);
    aspect-ratio: 4 / 5;
    border-radius: 2rem;
    background-position: center 16%;
  }

  .hero__decor--blob {
    width: min(285px, 66vw);
    height: min(350px, 78vw);
    top: 0.75rem;
    right: 50%;
    transform: translateX(50%) rotate(-10deg);
    opacity: 0.9;
  }

  .hero__decor--frame {
    width: min(235px, 56vw);
    height: min(310px, 70vw);
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%) rotate(7deg);
    opacity: 0.38;
  }

  .hero__decor--accent {
    width: 82px;
    height: 82px;
    right: 1.4rem;
    bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .hero.hero--split {
    padding-top: calc(var(--header-height, 76px) + 1.25rem);
    padding-bottom: 3.25rem;
  }

  .hero__inner {
    width: min(100% - 1.35rem, 100%);
    gap: 1.65rem;
  }

  .hero__content {
    text-align: left;
  }

  .hero__label {
    display: block;
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    line-height: 1.3;
    letter-spacing: 0.27em;
  }

  .hero__title {
    max-width: 9.4ch;
    margin-inline: 0;
    margin-bottom: 1.25rem;
    font-size: clamp(3.05rem, 13vw, 4.65rem);
    line-height: 0.91;
    letter-spacing: -0.072em;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: min(100%, 320px);
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 4rem;
    justify-content: center;
  }

  .hero__visual {
    min-height: 340px;
    width: min(100%, 340px);
    max-width: 340px;
    margin-inline: auto;
    margin-top: 0;
  }

  .hero__portrait {
    width: min(265px, 68vw);
    border-radius: 1.55rem;
    background-position: center 15%;
    box-shadow:
      0 22px 58px rgba(31, 24, 18, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  .hero__decor--blob {
    width: min(235px, 62vw);
    height: min(290px, 72vw);
    top: 0.45rem;
    opacity: 0.88;
  }

  .hero__decor--frame {
    width: min(195px, 52vw);
    height: min(250px, 64vw);
    bottom: 1rem;
    opacity: 0.28;
  }

  .hero__decor--accent {
    width: 68px;
    height: 68px;
    right: 0.35rem;
    bottom: 0.7rem;
    opacity: 0.72;
  }
}

@media (max-width: 480px) {
  .hero.hero--split {
    padding-top: calc(var(--header-height, 76px) + 1rem);
    padding-bottom: 2.75rem;
  }

  .hero__inner {
    gap: 1.35rem;
  }

  .hero__title {
    max-width: 8.7ch;
    font-size: clamp(2.75rem, 12.2vw, 3.85rem);
    line-height: 0.93;
  }

  .hero__actions {
    width: min(100%, 285px);
  }

  .hero__actions .btn {
    min-height: 3.75rem;
  }

  .hero__visual {
    min-height: 292px;
    width: min(100%, 300px);
    max-width: 300px;
  }

  .hero__portrait {
    width: min(220px, 62vw);
    border-radius: 1.25rem;
    background-position: center 12%;
  }

  .hero__decor--blob {
    width: min(205px, 58vw);
    height: min(250px, 66vw);
    top: 0.25rem;
  }

  .hero__decor--frame {
    display: none;
  }

  .hero__decor--accent {
    width: 56px;
    height: 56px;
    right: 0.2rem;
    bottom: 0.9rem;
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .hero__visual {
    min-height: 260px;
  }

  .hero__portrait {
    width: min(205px, 58vw);
  }

  .hero__decor--blob {
    width: min(190px, 54vw);
    height: min(230px, 62vw);
  }

  .hero__decor--accent {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__portrait,
  .hero__decor--blob,
  .hero__decor--frame,
  .hero__decor--accent {
    transition: none !important;
    animation: none !important;
  }
}

/* ==========================================================
   ABOUT PAGE MOBILE / TABLET FINAL POLISH v1.2.6
   Fix: spójny hero, zdjęcie, statystyki, intro i historia na mobile/tablet
   ========================================================== */

body.is-about-page .about-premium,
body.is-about-page .about-premium--v2 {
  overflow-x: clip;
}

body.is-about-page .about-hero,
body.is-about-page .about-hero * {
  box-sizing: border-box;
}

@media (max-width: 1180px) {
  body.is-about-page .about-hero {
    min-height: auto;
    padding-top: calc(var(--header-height, 78px) + clamp(2.25rem, 5vw, 4rem));
    padding-bottom: clamp(3rem, 6vw, 4.75rem);
  }

  body.is-about-page .about-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: clamp(2rem, 5vw, 3.25rem);
    align-items: center;
  }

  body.is-about-page .about-hero__content {
    min-width: 0;
    max-width: 620px;
  }

  body.is-about-page .about-hero__title {
    max-width: 10.5ch;
    font-size: clamp(3.55rem, 7.4vw, 6.25rem);
    line-height: 0.88;
    letter-spacing: -0.074em;
  }

  body.is-about-page .about-hero__lead {
    max-width: 50ch;
    font-size: clamp(1.02rem, 0.45vw + 0.95rem, 1.18rem);
    line-height: 1.7;
  }

  body.is-about-page .about-hero__visual {
    width: min(100%, 420px);
    justify-self: center;
  }

  body.is-about-page .about-hero__portrait {
    border-radius: 1.8rem;
  }

  body.is-about-page .about-hero__note {
    right: 0.8rem;
    bottom: 0.8rem;
    width: min(calc(100% - 1.6rem), 300px);
  }
}

@media (max-width: 991px) {
  body.is-about-page .about-hero {
    padding-top: calc(var(--header-height, 78px) + 2rem);
    padding-bottom: 0;
    background:
      radial-gradient(circle at 85% 20%, rgba(202, 178, 149, 0.18), transparent 18rem),
      radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.08), transparent 16rem),
      linear-gradient(145deg, #16120f 0%, #261d16 58%, #100d0b 100%);
  }

  body.is-about-page .about-hero__grid {
    width: min(100% - 2rem, 760px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.is-about-page .about-hero__content {
    max-width: 660px;
  }

  body.is-about-page .about-hero__title {
    max-width: 9.6ch;
    margin-bottom: 1.05rem;
    font-size: clamp(3.4rem, 9vw, 5.65rem);
    line-height: 0.9;
  }

  body.is-about-page .about-hero__lead {
    max-width: 56ch;
    margin-bottom: 1.35rem;
  }

  body.is-about-page .about-hero__badges {
    margin: 1.25rem 0 1.65rem;
    gap: 0.55rem;
  }

  body.is-about-page .about-hero__badges span {
    min-height: 2.35rem;
    padding: 0.52rem 0.78rem;
    font-size: 0.78rem;
  }

  body.is-about-page .about-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 520px;
  }

  body.is-about-page .about-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  body.is-about-page .about-hero__visual {
    width: min(100%, 520px);
    margin-inline: auto;
    padding-bottom: 2rem;
  }

  body.is-about-page .about-hero__visual::before {
    inset: auto 0 0 auto;
    width: 15rem;
    opacity: 0.85;
  }

  body.is-about-page .about-hero__portrait {
    aspect-ratio: 4 / 4.95;
    border-radius: 1.75rem;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
  }

  body.is-about-page .about-hero__portrait img {
    object-position: center 18%;
  }

  body.is-about-page .about-hero__note {
    right: 1rem;
    bottom: 3rem;
    width: min(calc(100% - 2rem), 330px);
    padding: 0.95rem 1rem;
    background: rgba(25, 21, 17, 0.78);
  }

  body.is-about-page .about-hero__note strong {
    color: rgba(255, 250, 244, 0.96);
  }

  body.is-about-page .about-proof {
    margin-top: 0;
    padding-block: 1.5rem 0;
    background: linear-gradient(180deg, #17120f 0%, #f7f1ea 76%);
  }

  body.is-about-page .about-proof__grid {
    width: min(100% - 2rem, 760px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.is-about-page .about-proof__item {
    min-height: 112px;
    padding: 1rem;
    border-radius: 1.25rem;
  }

  body.is-about-page .about-proof__item + .about-proof__item {
    border-left: 1px solid var(--page-line);
    border-top: 1px solid var(--page-line);
  }

  body.is-about-page .about-proof__item strong {
    font-size: clamp(1.9rem, 5.2vw, 3.2rem);
  }

  body.is-about-page .about-proof__item span {
    font-size: 0.76rem;
    line-height: 1.35;
    letter-spacing: 0.09em;
  }

  body.is-about-page .about-intro-section {
    padding-top: clamp(3rem, 7vw, 4.5rem);
  }

  body.is-about-page .about-intro-v2,
  body.is-about-page .about-story__grid,
  body.is-about-page .about-timeline-v2 {
    width: min(100% - 2rem, 760px);
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 4vw, 2rem);
  }

  body.is-about-page .about-intro-v2__media {
    position: static;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  body.is-about-page .about-intro-v2__image {
    aspect-ratio: 4 / 4.6;
    border-radius: 1.35rem;
    box-shadow: 0 18px 50px rgba(31, 24, 18, 0.08);
  }

  body.is-about-page .about-intro-v2__image img {
    object-position: center 18%;
  }

  body.is-about-page .about-intro-v2__caption {
    display: none;
  }

  body.is-about-page .about-intro-v2__content {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid rgba(205, 193, 180, 0.64);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 44px rgba(31, 24, 18, 0.045);
  }

  body.is-about-page .about-intro-v2__content h2 {
    font-size: clamp(2.15rem, 6vw, 3.35rem);
    line-height: 0.98;
  }

  body.is-about-page .about-intro-v2__text p,
  body.is-about-page .about-story__content p {
    font-size: clamp(1rem, 0.45vw + 0.96rem, 1.08rem);
    line-height: 1.78;
  }

  body.is-about-page .about-story {
    padding-block: clamp(3rem, 7vw, 4.8rem);
  }

  body.is-about-page .about-story__heading {
    text-align: center;
  }

  body.is-about-page .about-story__heading h2 {
    max-width: 10ch;
    margin-inline: auto;
    font-size: clamp(2.6rem, 7vw, 4.2rem);
  }

  body.is-about-page .about-story__content {
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border-radius: 1.35rem;
  }
}

@media (max-width: 767px) {
  body.is-about-page .about-hero {
    padding-top: calc(var(--header-height, 76px) + 1.45rem);
  }

  body.is-about-page .about-hero__grid {
    width: min(100% - 1.35rem, 100%);
    gap: 1.65rem;
  }

  body.is-about-page .about-hero__title {
    max-width: 8.7ch;
    margin-top: 0.9rem;
    font-size: clamp(3rem, 14.5vw, 4.45rem);
    line-height: 0.9;
    letter-spacing: -0.078em;
  }

  body.is-about-page .about-hero__lead {
    max-width: 34rem;
    font-size: 1.02rem;
    line-height: 1.64;
  }

  body.is-about-page .about-hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 290px);
    margin-bottom: 1.45rem;
  }

  body.is-about-page .about-hero__badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body.is-about-page .about-hero__actions {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  body.is-about-page .about-hero__actions .btn {
    min-height: 4rem;
  }

  body.is-about-page .about-hero__actions .btn--secondary {
    color: rgba(255, 250, 244, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.055);
  }

  body.is-about-page .about-hero__visual {
    width: 100%;
    padding-bottom: 1.5rem;
  }

  body.is-about-page .about-hero__portrait {
    width: 100%;
    aspect-ratio: 4 / 5.05;
    border-radius: 1.5rem;
  }

  body.is-about-page .about-hero__portrait::before {
    inset: 0.75rem;
  }

  body.is-about-page .about-hero__note {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 2.4rem;
    width: auto;
    max-width: none;
    border-radius: 1rem;
    text-align: left;
  }

  body.is-about-page .about-proof {
    padding-top: 1.1rem;
  }

  body.is-about-page .about-proof__grid {
    width: min(100% - 1.35rem, 100%);
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  body.is-about-page .about-proof__item {
    min-height: auto;
    padding: 1.25rem 1.1rem;
    border: 1px solid rgba(205, 193, 180, 0.66);
    border-radius: 1.2rem;
    background: rgba(255, 250, 245, 0.94);
  }

  body.is-about-page .about-proof__item + .about-proof__item {
    border-left: 1px solid rgba(205, 193, 180, 0.66);
    border-top: 1px solid rgba(205, 193, 180, 0.66);
  }

  body.is-about-page .about-proof__item strong {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  body.is-about-page .about-proof__item span {
    font-size: 0.78rem;
  }

  body.is-about-page .about-intro-section,
  body.is-about-page .about-approach,
  body.is-about-page .about-values,
  body.is-about-page .about-timeline-section,
  body.is-about-page .about-final-cta {
    padding-block: clamp(2.8rem, 10vw, 4rem);
  }

  body.is-about-page .about-intro-v2,
  body.is-about-page .about-story__grid,
  body.is-about-page .about-timeline-v2 {
    width: min(100% - 1.35rem, 100%);
  }

  body.is-about-page .about-intro-v2__media {
    width: 100%;
  }

  body.is-about-page .about-intro-v2__image {
    aspect-ratio: 4 / 4.65;
    border-radius: 1.15rem;
  }

  body.is-about-page .about-intro-v2__image::before {
    inset: 0.7rem;
  }

  body.is-about-page .about-intro-v2__content {
    padding: 1.2rem;
    border-radius: 1.15rem;
  }

  body.is-about-page .about-intro-v2__content h2,
  body.is-about-page .about-timeline-v2__intro h2,
  body.is-about-page .section-header__title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
  }

  body.is-about-page .about-intro-v2__text p,
  body.is-about-page .about-story__content p,
  body.is-about-page .about-timeline-v2__intro p {
    font-size: 1rem;
    line-height: 1.76;
  }

  body.is-about-page .about-signature {
    margin-top: 1.1rem;
  }

  body.is-about-page .about-story {
    padding-block: 3.2rem;
  }

  body.is-about-page .about-story__heading {
    text-align: left;
  }

  body.is-about-page .about-story__heading h2 {
    max-width: 8ch;
    margin-inline: 0;
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  body.is-about-page .about-story__content {
    padding: 1.25rem;
    border-radius: 1.15rem;
  }

  body.is-about-page .about-approach__grid,
  body.is-about-page .values__grid--v2 {
    gap: 0.85rem;
  }

  body.is-about-page .about-approach__card,
  body.is-about-page .value-card {
    min-height: auto;
    padding: 1.25rem;
    border-radius: 1.15rem;
  }

  body.is-about-page .about-approach__card span,
  body.is-about-page .value-card__number {
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  body.is-about-page .about-approach__card h3,
  body.is-about-page .value-card h3 {
    max-width: none;
    margin-top: 0;
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  body.is-about-page .about-mission__card {
    padding: 1.35rem;
    border-radius: 1.15rem;
  }

  body.is-about-page .about-mission__card h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
  }

  body.is-about-page .timeline--v2 .timeline__item {
    padding: 1rem 0 1rem 2.6rem;
  }

  body.is-about-page .timeline--v2::before {
    left: 0.65rem;
  }

  body.is-about-page .timeline--v2 .timeline__dot {
    left: 0.33rem;
  }

  body.is-about-page .about-final-cta__card {
    padding: 1.35rem;
    border-radius: 1.15rem;
  }

  body.is-about-page .about-final-cta__card h2 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }
}

@media (max-width: 420px) {
  body.is-about-page .about-hero__title {
    max-width: 8ch;
    font-size: clamp(2.62rem, 13.2vw, 3.85rem);
  }

  body.is-about-page .about-hero__lead {
    font-size: 0.98rem;
  }

  body.is-about-page .about-hero__actions .btn {
    min-height: 3.75rem;
    padding-inline: 1rem;
  }

  body.is-about-page .about-hero__note {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 2.1rem;
  }

  body.is-about-page .about-intro-v2__content,
  body.is-about-page .about-story__content {
    padding: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-about-page .about-hero__portrait,
  body.is-about-page .about-hero__note,
  body.is-about-page .about-proof__item,
  body.is-about-page .about-intro-v2__image {
    transition: none !important;
    animation: none !important;
  }
}

/* ==========================================================
   OFFER PAGE HUB v1.2.7
   Oferta: HR Fundament / Klarowność / Klarowność+
   Scoped: body.is-services-page + .offer-page
   ========================================================== */
body.is-services-page {
  background: #f7f2ec;
}

body.is-services-page .offer-page {
  overflow: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(177, 151, 119, 0.16), transparent 32rem),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.92), transparent 30rem),
    linear-gradient(180deg, #f7f2ec 0%, #fbf8f4 50%, #f5efe8 100%);
}

body.is-services-page .offer-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7.5rem, 11vw, 11rem) clamp(3.5rem, 7vw, 6rem);
}

body.is-services-page .offer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(168, 139, 105, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 139, 105, 0.075) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.52), transparent 78%);
  pointer-events: none;
}

body.is-services-page .offer-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

body.is-services-page .offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: #9f8261;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.is-services-page .offer-eyebrow::before {
  content: "";
  width: 2.05rem;
  height: 1px;
  background: rgba(159, 130, 97, 0.62);
}

body.is-services-page .offer-hero__title {
  max-width: 12ch;
  margin: 1rem 0 0;
  color: #171514;
  font-size: clamp(3.7rem, 7.4vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

body.is-services-page .offer-hero__title em {
  color: #9f8261;
  font-style: italic;
}

body.is-services-page .offer-hero__lead {
  max-width: 62ch;
  margin: clamp(1.25rem, 2vw, 1.75rem) 0 0;
  color: rgba(35, 31, 28, .76);
  font-size: clamp(1.06rem, .45vw + .98rem, 1.28rem);
  line-height: 1.72;
}

body.is-services-page .offer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

body.is-services-page .offer-hero__card {
  padding: clamp(1.3rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(205, 193, 180, 0.76);
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(31, 24, 18, 0.09);
  backdrop-filter: blur(14px);
}

body.is-services-page .offer-hero__card-top {
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(205, 193, 180, 0.72);
}

body.is-services-page .offer-hero__card-top span {
  display: block;
  margin-bottom: 0.45rem;
  color: #9f8261;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.is-services-page .offer-hero__card-top strong {
  display: block;
  color: #171514;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 1.2vw + 1.2rem, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

body.is-services-page .offer-hero__card p,
body.is-services-page .offer-section-head p,
body.is-services-page .offer-fit__intro p,
body.is-services-page .offer-cta__card p {
  color: rgba(35, 31, 28, 0.72);
  line-height: 1.72;
}

body.is-services-page .offer-hero__checks {
  display: grid;
  gap: 0.72rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

body.is-services-page .offer-hero__checks li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgba(35, 31, 28, .76);
  font-weight: 700;
}

body.is-services-page .offer-hero__checks li::before,
body.is-services-page .offer-card__features li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: #171514;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

body.is-services-page .offer-services,
body.is-services-page .offer-compare {
  background: rgba(255, 255, 255, 0.46);
}

body.is-services-page .offer-section-head {
  max-width: 760px;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

body.is-services-page .offer-section-head--center {
  margin-inline: auto;
  text-align: center;
}

body.is-services-page .offer-section-head--center .offer-eyebrow {
  justify-content: center;
}

body.is-services-page .offer-section-head h2,
body.is-services-page .offer-fit__intro h2,
body.is-services-page .offer-cta__card h2 {
  margin: 0.85rem 0 1rem;
  color: #171514;
  font-size: clamp(2.65rem, 4.7vw, 5.35rem);
  line-height: 0.9;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

body.is-services-page .offer-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

body.is-services-page .offer-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.3vw, 1.85rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(205, 193, 180, 0.76);
  border-radius: 2rem;
  box-shadow: 0 20px 58px rgba(31, 24, 18, 0.06);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

body.is-services-page .offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 130, 97, 0.78);
  box-shadow: 0 28px 74px rgba(31, 24, 18, 0.1);
}

body.is-services-page .offer-card--plus {
  background:
    radial-gradient(circle at top right, rgba(177, 151, 119, 0.24), transparent 38%),
    linear-gradient(145deg, #27231f 0%, #171514 100%);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

body.is-services-page .offer-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.15rem);
}

body.is-services-page .offer-card__number {
  color: rgba(159, 130, 97, .62);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

body.is-services-page .offer-card--plus .offer-card__number {
  color: rgba(255,255,255,.42);
}

body.is-services-page .offer-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.62rem;
  border: 1px solid rgba(159, 130, 97, 0.32);
  border-radius: 999px;
  color: #806647;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.is-services-page .offer-card--plus .offer-card__badge {
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
}

body.is-services-page .offer-card__label {
  margin: 0 0 0.55rem;
  color: #9f8261;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.is-services-page .offer-card--plus .offer-card__label {
  color: rgba(255,255,255,.62);
}

body.is-services-page .offer-card__title {
  margin: 0;
  color: #171514;
  font-size: clamp(2rem, 2.5vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

body.is-services-page .offer-card--plus .offer-card__title,
body.is-services-page .offer-card--plus .offer-card__lead,
body.is-services-page .offer-card--plus .offer-card__features li,
body.is-services-page .offer-card--plus .offer-card__link {
  color: #fff;
}

body.is-services-page .offer-card__lead {
  margin: 1rem 0 0;
  color: rgba(35, 31, 28, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

body.is-services-page .offer-card--plus .offer-card__lead {
  color: rgba(255,255,255,.72);
}

body.is-services-page .offer-card__features {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

body.is-services-page .offer-card__features li {
  display: flex;
  gap: 0.7rem;
  color: rgba(35, 31, 28, 0.72);
  line-height: 1.55;
}

body.is-services-page .offer-card--plus .offer-card__features li::before {
  background: #fff;
  color: #171514;
}

body.is-services-page .offer-card__outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 1.45rem;
}

body.is-services-page .offer-card__outcomes span {
  display: inline-flex;
  padding: 0.45rem 0.64rem;
  border: 1px solid rgba(205, 193, 180, 0.72);
  border-radius: 999px;
  color: rgba(35,31,28,.72);
  font-size: 0.78rem;
  font-weight: 800;
}

body.is-services-page .offer-card--plus .offer-card__outcomes span {
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
}

body.is-services-page .offer-card__footer {
  margin-top: auto;
  padding-top: 1.55rem;
}

body.is-services-page .offer-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.4rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: #171514;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

body.is-services-page .offer-card--plus .offer-card__link {
  background: #fff;
  color: #171514;
}

body.is-services-page .offer-fit__grid,
body.is-services-page .offer-process__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

body.is-services-page .offer-fit__intro,
body.is-services-page .offer-process .offer-section-head {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.5rem);
}

body.is-services-page .offer-fit__cards,
body.is-services-page .offer-process__steps {
  display: grid;
  gap: 1rem;
}

body.is-services-page .offer-fit-card,
body.is-services-page .offer-step {
  padding: clamp(1.2rem, 2.4vw, 1.85rem);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(205, 193, 180, 0.76);
  border-radius: 1.6rem;
  box-shadow: 0 18px 52px rgba(31, 24, 18, 0.055);
}

body.is-services-page .offer-fit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

body.is-services-page .offer-fit-card span {
  color: rgba(35,31,28,.72);
  line-height: 1.55;
}

body.is-services-page .offer-fit-card strong {
  color: #171514;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 1.2vw + 1rem, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  white-space: nowrap;
}

body.is-services-page .offer-fit-card--dark {
  background: #171514;
  border-color: rgba(255,255,255,.12);
}

body.is-services-page .offer-fit-card--dark span,
body.is-services-page .offer-fit-card--dark strong {
  color: #fff;
}

body.is-services-page .offer-compare__table {
  overflow: hidden;
  border: 1px solid rgba(205, 193, 180, 0.78);
  border-radius: 1.8rem;
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 64px rgba(31, 24, 18, 0.06);
}

body.is-services-page .offer-compare__row {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr) minmax(220px, .38fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  border-top: 1px solid rgba(205, 193, 180, 0.58);
}

body.is-services-page .offer-compare__row:first-child {
  border-top: 0;
}

body.is-services-page .offer-compare__row--head {
  background: #171514;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-services-page .offer-compare__row:not(.offer-compare__row--head) {
  color: rgba(35,31,28,.72);
  line-height: 1.6;
}

body.is-services-page .offer-compare__row strong {
  color: #171514;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.046em;
}

body.is-services-page .offer-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem 1.15rem;
}

body.is-services-page .offer-step span {
  grid-row: 1 / span 2;
  color: rgba(159, 130, 97, .62);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

body.is-services-page .offer-step h3 {
  margin: 0;
  color: #171514;
  font-size: clamp(1.45rem, 1.2vw + 1rem, 2.2rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

body.is-services-page .offer-step p {
  margin: 0;
  color: rgba(35,31,28,.72);
  line-height: 1.65;
}

body.is-services-page .offer-cta {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

body.is-services-page .offer-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  background:
    radial-gradient(circle at top right, rgba(177, 151, 119, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
  border: 1px solid rgba(205, 193, 180, 0.78);
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(31, 24, 18, 0.08);
}

body.is-services-page .offer-cta__card h2 {
  max-width: 12ch;
}

body.is-services-page .offer-page a:focus-visible,
body.is-services-page .offer-page button:focus-visible {
  outline: 2px solid #9f8261;
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  body.is-services-page .offer-services__grid {
    grid-template-columns: 1fr;
  }

  body.is-services-page .offer-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .34fr);
    gap: 1.2rem;
  }

  body.is-services-page .offer-card__top,
  body.is-services-page .offer-card__label,
  body.is-services-page .offer-card__title,
  body.is-services-page .offer-card__lead,
  body.is-services-page .offer-card__features {
    grid-column: 1;
  }

  body.is-services-page .offer-card__outcomes,
  body.is-services-page .offer-card__footer {
    grid-column: 2;
  }

  body.is-services-page .offer-card__outcomes {
    align-content: start;
    margin-top: 0;
  }

  body.is-services-page .offer-card__footer {
    align-self: end;
    padding-top: 0;
  }
}

@media (max-width: 1024px) {
  body.is-services-page .offer-hero__grid,
  body.is-services-page .offer-fit__grid,
  body.is-services-page .offer-process__grid,
  body.is-services-page .offer-cta__card {
    grid-template-columns: 1fr;
  }

  body.is-services-page .offer-fit__intro,
  body.is-services-page .offer-process .offer-section-head {
    position: static;
  }

  body.is-services-page .offer-hero__title {
    max-width: 11ch;
  }

  body.is-services-page .offer-cta__card {
    align-items: start;
  }
}

@media (max-width: 767px) {
  body.is-services-page .offer-hero {
    padding-block: calc(var(--header-height, 76px) + 1.4rem) 2.75rem;
  }

  body.is-services-page .offer-hero__grid {
    gap: 1.4rem;
  }

  body.is-services-page .offer-hero__title {
    max-width: 9.6ch;
    font-size: clamp(3rem, 13vw, 4.6rem);
    line-height: 0.9;
  }

  body.is-services-page .offer-hero__actions {
    display: grid;
    width: min(100%, 320px);
  }

  body.is-services-page .offer-hero__actions .btn,
  body.is-services-page .offer-cta__card .btn {
    width: 100%;
    justify-content: center;
  }

  body.is-services-page .offer-hero__card,
  body.is-services-page .offer-card,
  body.is-services-page .offer-fit-card,
  body.is-services-page .offer-step,
  body.is-services-page .offer-compare__table,
  body.is-services-page .offer-cta__card {
    border-radius: 1.35rem;
  }

  body.is-services-page .offer-section-head h2,
  body.is-services-page .offer-fit__intro h2,
  body.is-services-page .offer-cta__card h2 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 10.8vw, 3.65rem);
  }

  body.is-services-page .offer-card {
    display: flex;
    gap: 0;
  }

  body.is-services-page .offer-card__outcomes {
    margin-top: 1.35rem;
  }

  body.is-services-page .offer-fit-card {
    grid-template-columns: 1fr;
  }

  body.is-services-page .offer-fit-card strong {
    white-space: normal;
  }

  body.is-services-page .offer-compare__table {
    display: grid;
    gap: 0.85rem;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.is-services-page .offer-compare__row,
  body.is-services-page .offer-compare__row--head {
    grid-template-columns: 1fr;
    border: 1px solid rgba(205,193,180,.76);
    border-radius: 1.25rem;
    background: rgba(255,255,255,.82);
  }

  body.is-services-page .offer-compare__row--head {
    display: none;
  }

  body.is-services-page .offer-compare__row > div:nth-child(2)::before {
    content: "Najlepsza, gdy…";
  }

  body.is-services-page .offer-compare__row > div:nth-child(3)::before {
    content: "Efekt";
  }

  body.is-services-page .offer-compare__row > div:nth-child(2)::before,
  body.is-services-page .offer-compare__row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 0.28rem;
    color: #9f8261;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  body.is-services-page .offer-step {
    grid-template-columns: 1fr;
  }

  body.is-services-page .offer-step span {
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  body.is-services-page .offer-hero__title {
    font-size: clamp(2.72rem, 12.4vw, 3.65rem);
  }

  body.is-services-page .offer-card,
  body.is-services-page .offer-hero__card,
  body.is-services-page .offer-cta__card {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-services-page .offer-card {
    transition: none;
  }

  body.is-services-page .offer-card:hover {
    transform: none;
  }
}
