.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');


/*
  KANCELARIA MARTA LAMPART — wspólne tokeny (kolory, fonty, szerokość strony)
  Wklej TEN plik jako pierwszy w "Dodatkowy CSS" (Wygląd → Dostosuj), przed hero.css,
  stats.css i każdym kolejnym plikiem CSS sekcji. Dzięki temu każda sekcja odwołuje się
  do tych samych zmiennych i zmiana koloru/fontu w jednym miejscu działa wszędzie.
*/

:root {
  --ml-blue: #1C9BD8;
  --ml-blue-deep: #157DAE;
  --ml-blue-tint: rgba(28, 155, 216, 0.08);
  --ml-graphite: #333333;
  --ml-gray: #4D4D4D;
  --ml-mustard: #F5B84C;
  --ml-black: #1A1A1A;
  --ml-white: #FFFFFF;
  --ml-offwhite: #FAFAFA;

  --ml-container: 1300px;

  --ml-font-display: 'Fraunces', Georgia, serif;
  --ml-font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
}


/* ---------- reveal on scroll ---------- */
[data-ml-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-ml-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-ml-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- typografia sekcji ---------- */

.ml-eyebrow {
  display: inline-block;
  font-family: var(--ml-font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-blue-deep);
}

.ml-section-heading {
  margin: 0.7rem 0 0;
  font-family: var(--ml-font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.6vw + 1.5rem, 2.75rem);
  line-height: 1.15;
  color: var(--ml-graphite);
  letter-spacing: -0.01em;
}

.ml-lead {
  margin: 1rem 0 0;
  max-width: 62ch;
  font-family: var(--ml-font-body);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.12rem);
  line-height: 1.7;
  color: var(--ml-gray);
}

/* ---------- przyciski ---------- */

.ml-btn {
  font-family: var(--ml-font-body) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

/* !important poniżej celowo: wiele motywów WP ma globalne reguły na "a"
   (kolor, podkreślenie) o wyższej specyficzności niż sama klasa .ml-btn--primary,
   co potrafi "zjeść" biały tekst na niebieskim tle przycisku. */

.ml-btn--primary {
  background: var(--ml-blue) !important;
  color: var(--ml-white) !important;
  box-shadow: 0 10px 22px -10px rgba(28,155,216,0.55);
}

.ml-btn--primary:hover {
  background: var(--ml-blue-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(21,125,174,0.5);
}

.ml-btn__arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.ml-btn--primary:hover .ml-btn__arrow,
.ml-btn--ghost:hover .ml-btn__arrow {
  transform: translateX(3px);
}

.ml-btn--ghost {
  background: transparent !important;
  color: var(--ml-graphite) !important;
  border-color: rgba(51,51,51,0.25);
}

.ml-btn--ghost:hover {
  border-color: var(--ml-graphite);
  background: var(--ml-blue-tint) !important;
}

.ml-btn:focus-visible {
  outline: 2px solid var(--ml-blue-deep);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .ml-btn { width: 100%; justify-content: center; }
}


:root {
  /* Kolory marki */
  --color-primary: #1C9BD8;        /* niebieski z logo */
  --color-primary-dark: #147AAE;   /* hover / stany aktywne */
  --color-primary-light: #E8F5FC;  /* jasne tło np. pod kafle, badge */
 
  --color-accent: #F5B84C;         /* żółty — akcent, używany oszczędnie */
  --color-accent-dark: #E8A530;
 
  --color-ink: #2B2B2B;            /* grafit — nagłówki, mocny tekst */
  --color-text: #4A4A4A;           /* tekst podstawowy (akapity) */
  --color-text-muted: #7A7A7A;     /* tekst drugorzędny, podpisy */
 
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAFAF8;         /* delikatne tło naprzemiennych sekcji */
  --color-bg-dark: #232323;        /* stopka / sekcje kontrastowe */
 
  --color-border: #E7E5E0;
 
  /* Typografia */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
 
  /* Odstępy / promienie / cienie — spójne z zaokrąglonymi kwadratami z brandingu */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
 
  --shadow-sm: 0 2px 10px rgba(43, 43, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(28, 155, 216, 0.12);
 
  --container-width: 1180px;
  --section-padding: clamp(60px, 8vw, 120px);
}
 
/* ---- 3. RESET / BAZA ---- */
*, *::before, *::after { box-sizing: border-box; }
 
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
 
img { max-width: 100%; height: auto; display: block; }
 
/* ---- 4. NAGŁÓWKI ---- */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}
 
h1 { font-size: clamp(2.25rem, 1.4rem + 3.2vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}
 
/* "Eyebrow" — mały nagłówek nad h2, z akcentową kreską (nawiązanie do
   podkreślenia w grafice "Lunch z Marką") — używać nad sekcjami */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}
 
/* ---- 5. TEKST / AKAPITY ---- */
p {
  color: var(--color-text);
  margin: 0 0 1.2em 0;
}
p.lead {
  font-size: 1.15rem;
  color: var(--color-ink);
  font-weight: 500;
}
small, .text-muted {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
 
/* ---- 6. LINKI ---- */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--color-primary-dark); }
 
/* linki w treści akapitów — podkreślenie akcentowe */
p a, li a {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
 
/* ---- 7. LISTY ---- */
ul, ol { padding-left: 1.3em; margin: 0 0 1.2em 0; }
li { margin-bottom: 0.5em; color: var(--color-text); }
 
/* listy usług / ofert ze znacznikiem w kolorze marki zamiast kropki */
ul.styled-list { list-style: none; padding-left: 0; }
ul.styled-list li {
  position: relative;
  padding-left: 28px;
}
ul.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 3px; /* zaokrąglony kwadracik — motyw z brandingu */
  background: var(--color-primary);
}
 
/* ---- 8. PRZYCISKI ---- */
.btn, .elementor-button, a.elementor-button {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
 
/* Primary — niebieski, główne wezwania do działania */
.btn-primary, .elementor-button {
  background-color: var(--color-primary);
  color: #ffffff;
}
.btn-primary:hover, .elementor-button:hover {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
 
/* Secondary — obrys, hover wypełnia żółtym (akcent, oszczędnie) */
.btn-secondary {
  background-color: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-ink);
  transform: translateY(-2px);
}
 
/* Ghost — do linków typu "Czytaj więcej" w kartach */
.btn-ghost {
  padding: 0;
  color: var(--color-primary);
  font-weight: 700;
  border: none;
}
.btn-ghost::after {
  content: "→";
  margin-left: 6px;
  transition: margin-left 0.25s ease;
}
.btn-ghost:hover::after { margin-left: 12px; }
 
/* ---- 9. KARTY (np. obszary prawa, wpisy blogowe, produkty) ---- */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
 
/* ---- 10. SEKCJE / KONTENERY ---- */
.section { padding: var(--section-padding) 0; }
.section-alt { background-color: var(--color-bg-alt); }
.section-dark {
  background-color: var(--color-bg-dark);
  color: #E5E5E5;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}
.section-dark p { color: #C9C9C9; }
 
.container-custom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
 
/* ---- 11. BADGE / TAGI (np. kategorie na blogu, obszary prawa) ---- */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}
.badge-accent {
  background-color: #FDF1DC;
  color: var(--color-accent-dark);
}
 
/* ---- 12. RESPONSYWNOŚĆ BAZOWA ---- */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: clamp(48px, 10vw, 72px) 0; }
  .btn, .elementor-button { width: 100%; }
}
 
/* ---- 13. DOSTĘPNOŚĆ ---- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
 
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.ml-offer {
  position: relative;
  background: var(--ml-white);
  font-family: var(--ml-font-body);
}

.ml-offer, .ml-offer *, .ml-offer *::before, .ml-offer *::after {
  box-sizing: border-box;
}

.ml-offer .ml-offer__inner {
  max-width: var(--ml-container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.ml-offer .ml-offer__intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.ml-offer .ml-offer__intro .ml-lead {
  margin-left: auto;
  margin-right: auto;
}

.ml-offer .ml-offer__grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.ml-offer .ml-offer-card {
  position: relative;
  overflow: hidden;
  background: var(--ml-offwhite);
  border: 1px solid rgba(51, 51, 51, 0.09);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ml-offer .ml-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -28px rgba(26, 26, 26, 0.28);
  border-color: transparent;
}

.ml-offer .ml-offer-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ml-mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.ml-offer .ml-offer-card:hover .ml-offer-card__bar {
  transform: scaleX(1);
}

.ml-offer .ml-offer-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(51, 51, 51, 0.18);
  color: var(--ml-graphite);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.ml-offer .ml-offer-card__badge svg {
  width: 26px;
  height: 26px;
}

.ml-offer .ml-offer-card:hover .ml-offer-card__badge {
  background: var(--ml-blue);
  border-color: var(--ml-blue);
  color: var(--ml-white);
}

.ml-offer .ml-offer-card__title {
  margin: 1.25rem 0 0;
  font-family: var(--ml-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ml-graphite);
}

.ml-offer .ml-offer-card__text {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ml-gray);
}

.ml-offer .ml-offer-card__link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ml-blue-deep);
  text-decoration: none;
}

.ml-offer .ml-offer-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.ml-offer .ml-offer-card__link:hover svg {
  transform: translateX(3px);
}

.ml-offer .ml-offer-card__link:focus-visible,
.ml-offer .ml-offer-card:focus-within {
  outline: 2px solid var(--ml-blue-deep);
  outline-offset: 3px;
}

/* ---------- wariant "otwartej" karty (Inne sprawy) ---------- */

.ml-offer .ml-offer-card--open {
  background: rgba(245, 184, 76, 0.08);
  border: 1.5px dashed rgba(245, 184, 76, 0.55);
}

.ml-offer .ml-offer-card--open .ml-offer-card__badge {
  border-color: rgba(245, 184, 76, 0.55);
  color: var(--ml-graphite);
}

.ml-offer .ml-offer-card--open:hover .ml-offer-card__badge {
  background: var(--ml-mustard);
  border-color: var(--ml-mustard);
  color: var(--ml-graphite);
}

.ml-offer .ml-offer-card--open:hover {
  box-shadow: 0 24px 44px -28px rgba(245, 184, 76, 0.4);
}

/* ---------- responsywność ---------- */

@media (max-width: 900px) {
  .ml-offer .ml-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ml-offer .ml-offer__intro {
    text-align: left;
  }
  .ml-offer .ml-offer__intro .ml-lead {
    margin-left: 0;
  }
  .ml-offer .ml-offer__grid {
    grid-template-columns: 1fr;
  }
}


/*
  KANCELARIA MARTA LAMPART — style dla sekcji "Proces współpracy"
*/

.ml-process {
  position: relative;
  background: var(--ml-offwhite);
  font-family: var(--ml-font-body);
}

.ml-process, 
.ml-process *, 
.ml-process *::before, 
.ml-process *::after {
  box-sizing: border-box;
}

.ml-process .ml-process__inner {
  max-width: var(--ml-container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.ml-process .ml-process__content {
  min-width: 0;
}

.ml-process .ml-process__intro {
  max-width: 640px;
}

.ml-process .ml-process__timeline {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: none;
}

.ml-process .ml-process__line {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 2px;
  background: rgba(51, 51, 51, 0.13);
}

.ml-process .ml-process__line-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--ml-blue), var(--ml-mustard));
  transform: scaleY(0);
  transform-origin: top;
}

.ml-process .ml-process__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ml-process .ml-process-step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.ml-process .ml-process-step + .ml-process-step {
  margin-top: 2.25rem;
}

.ml-process .ml-process-step__num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ml-white);
  border: 2px solid rgba(51, 51, 51, 0.18);
  font-family: var(--ml-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ml-graphite);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ml-process .ml-process-step.is-visible .ml-process-step__num {
  background: var(--ml-blue);
  border-color: var(--ml-blue);
  color: var(--ml-white);
}

.ml-process .ml-process-step__body {
  padding-top: 0.5rem;
}

.ml-process .ml-process-step__title {
  margin: 0;
  font-family: var(--ml-font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ml-graphite);
}

.ml-process .ml-process-step__text {
  margin: 0.5rem 0 0;
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ml-gray);
}

/* ---------- zdjęcie po prawej ---------- */

.ml-process .ml-process__visual {
  position: sticky;
  top: 120px;
  align-self: start;
}

.ml-process .ml-process__image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ---------- redukcja ruchu ---------- */

@media (prefers-reduced-motion: reduce) {
  .ml-process .ml-process__line-fill {
    transform: scaleY(1) !important;
  }
}

/* ---------- responsywność ---------- */

@media (max-width: 960px) {
  .ml-process .ml-process__inner {
    grid-template-columns: 1fr;
  }

  .ml-process .ml-process__visual {
    position: relative;
    top: auto;
    order: -1;
    margin-bottom: 2rem;
  }

  .ml-process .ml-process__image {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .ml-process .ml-process-step {
    gap: 1rem;
  }

  .ml-process .ml-process__line {
    left: 19px;
  }

  .ml-process .ml-process-step__num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}


#o-mnie {
  position: relative;
  background: var(--ml-white);
  overflow: hidden;
  font-family: var(--ml-font-body);
}

#o-mnie, #o-mnie *, #o-mnie *::before, #o-mnie *::after {
  box-sizing: border-box;
}

#o-mnie .ml-about__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 55% at 12% 15%, rgba(28,155,216,0.07), transparent 65%),
    radial-gradient(40% 40% at 92% 85%, rgba(245,184,76,0.09), transparent 65%);
  pointer-events: none;
}

#o-mnie .ml-about__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ml-container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

#o-mnie .ml-about__visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 420px;
}

#o-mnie .ml-about__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

#o-mnie .ml-about__text {
  margin: 1rem 0 0;
  max-width: 58ch;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.08rem);
  line-height: 1.7;
  color: var(--ml-gray);
}

#o-mnie .ml-about__quote {
  margin: 1.75rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--ml-mustard);
  font-family: var(--ml-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 0.5vw + 1.05rem, 1.4rem);
  line-height: 1.5;
  color: var(--ml-graphite);
}

#o-mnie .ml-btn {
  margin-top: 2rem;
}

/* ---------- responsywność ---------- */

@media (max-width: 900px) {
  #o-mnie .ml-about__inner {
    grid-template-columns: 1fr;
  }
  #o-mnie .ml-about__visual {
    max-width: 320px;
  }
}


/* =========================================================
   FORMULARZ KONTAKTOWY — MARTA LAMPART
========================================================= */

form[name="New Form"] {
  width: 100%;
  margin: 0;
  font-family: var(--ml-font-body);
}

form[name="New Form"] .elementor-form-fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}


/* GRUPY PÓL */

form[name="New Form"] .elementor-field-group {
  width: 100% !important;
  margin: 0 0 1.4rem !important;
  padding: 0 !important;
}


/* ETYKIETY */

form[name="New Form"] .elementor-field-label {
  display: block !important;
  margin: 0 0 0.55rem !important;
  padding: 0 !important;

  font-family: var(--ml-font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;

  color: var(--ml-blue) !important;
}


/* INPUTY I TEXTAREA */

form[name="New Form"] input.elementor-field,
form[name="New Form"] textarea.elementor-field {
  width: 100% !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 0.95rem 1.1rem !important;

  border: 1px solid rgba(35, 43, 49, 0.16) !important;
  border-radius: 0 !important;

  background: #ffffff !important;

  font-family: var(--ml-font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;

  color: var(--ml-graphite) !important;

  outline: none !important;
  box-shadow: none !important;

  appearance: none;
  -webkit-appearance: none;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}


/* TEXTAREA */

form[name="New Form"] textarea.elementor-field {
  min-height: 180px !important;
  padding-top: 1rem !important;
  resize: vertical;
}


/* PLACEHOLDER */

form[name="New Form"] input.elementor-field::placeholder,
form[name="New Form"] textarea.elementor-field::placeholder {
  color: rgba(35, 43, 49, 0.4) !important;
  opacity: 1 !important;
}


/* FOCUS */

form[name="New Form"] input.elementor-field:focus,
form[name="New Form"] textarea.elementor-field:focus {
  border-color: var(--ml-blue) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(28, 155, 216, 0.08) !important;
}


/* PRZYCISK */

form[name="New Form"] .elementor-field-type-submit {
  margin-top: 0.25rem !important;
  margin-bottom: 0 !important;
}

form[name="New Form"] button.elementor-button {
  width: 100% !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 1rem 1.5rem !important;

  border: 1px solid var(--ml-graphite) !important;
  border-radius: 50px !important;

  background: var(--ml-graphite) !important;

  font-family: var(--ml-font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;

  color: #ffffff !important;

  box-shadow: none !important;
  cursor: pointer;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

form[name="New Form"] button.elementor-button:hover {
  border-color: var(--ml-blue) !important;
  background: var(--ml-blue) !important;
  transform: translateY(-2px);
}

form[name="New Form"] .elementor-button-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

form[name="New Form"] .elementor-button-text {
  color: inherit !important;
}


/* KOMUNIKATY */

form[name="New Form"] .elementor-message {
  margin-top: 1rem !important;
  font-family: var(--ml-font-body) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}
/* =========================================================
   CHECKBOX RODO — RESET STYLÓW ELEMENTORA
========================================================= */

form[name="New Form"]
.elementor-field-type-acceptance
.elementor-field-option {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 10px !important;

  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* Checkbox — nadpisanie stylów zwykłych inputów */

form[name="New Form"]
input.elementor-acceptance-field[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;

  display: block !important;
  flex: none !important;

  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;

  margin: 2px 0 0 !important;
  padding: 0 !important;

  border: 1px solid rgba(35, 43, 49, 0.4) !important;
  border-radius: 0 !important;
  background-color: #fff !important;
  background-image: none !important;

  box-shadow: none !important;
  cursor: pointer !important;
}


/* Zaznaczony checkbox */

form[name="New Form"]
input.elementor-acceptance-field[type="checkbox"]:checked {
  border-color: var(--ml-blue) !important;
  background-color: var(--ml-blue) !important;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.2 6.3 11.5 13 4.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;

  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 13px 13px !important;
}


/* Tekst zgody */

form[name="New Form"]
.elementor-field-type-acceptance
.elementor-field-option > label {
  display: block !important;

  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;

  font-family: var(--ml-font-body) !important;
  font-size: 9px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;

  color: rgba(35, 43, 49, 0.68) !important;
  cursor: pointer;
}

form[name="New Form"]
.elementor-field-type-acceptance
.elementor-field-option > label a {
  font-size: inherit !important;
  font-weight: 700 !important;
  color: var(--ml-blue) !important;
  text-decoration: none;
}

form[name="New Form"]
.elementor-field-type-acceptance
.elementor-field-option > label strong {
  font-size: inherit !important;
  font-weight: inherit !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}/* End custom CSS */