


:root {
  --color-primary: #4a7c6f;
  --color-primary-dark: #35614f;
  --color-primary-light: #6fa898;
  --color-secondary: #8b6f4e;
  --color-accent: #c9a96e;
  --color-accent-light: #e8d5b0;

  --color-bg: #f7f5f0;
  --color-bg-soft: #f0ede6;
  --color-bg-card: #faf9f6;
  --color-bg-dark: #2a3a32;
  --color-bg-hero: #eef5f2;

  --color-text: #2c3a30;
  --color-text-muted: #6b7c6f;
  --color-text-light: #9aac9e;
  --color-white: #fefefe;

  --shadow-sm: 0 1px 3px rgba(44,58,48,0.06), 0 1px 2px rgba(44,58,48,0.04);
  --shadow-md: 0 4px 12px rgba(44,58,48,0.08), 0 2px 4px rgba(44,58,48,0.05);
  --shadow-lg: 0 8px 30px rgba(44,58,48,0.12), 0 4px 10px rgba(44,58,48,0.07);
  --shadow-xl: 0 20px 60px rgba(44,58,48,0.15), 0 8px 20px rgba(44,58,48,0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-blob: 60% 40% 50% 60% / 40% 60% 50% 60%;

  --font-body: 'Work Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
address { font-style: normal; }


.global-cookie-bar {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 10px 24px;
  transition: var(--transition-slow);
  overflow: hidden;
}
.global-cookie-bar.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.global-cookie-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.global-cookie-bar__text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.global-cookie-bar__text a {
  color: var(--color-accent-light);
  text-decoration: underline;
}
.global-cookie-bar__actions { display: flex; gap: 8px; flex-shrink: 0; }
.global-cookie-bar__btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-family: var(--font-body);
}
.global-cookie-bar__btn--accept {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.global-cookie-bar__btn--accept:hover { background: var(--color-primary-dark); }
.global-cookie-bar__btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.global-cookie-bar__btn--reject:hover { color: var(--color-white); border-color: rgba(255,255,255,0.7); }


.global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}
.global-header--solid,
.global-header.scrolled {
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.global-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.global-header__logo-img {
  height: 40px;
  width: auto;
}
.global-nav__list {
  display: flex;
  gap: 8px;
  align-items: center;
}
.global-nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
}
.global-nav__link:hover,
.global-nav__link--active {
  color: var(--color-primary);
  background: rgba(74,124,111,0.08);
}
.global-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.global-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.global-header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-header__hamburger.active span:nth-child(2) { opacity: 0; }
.global-header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.global-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(247,245,240,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(74,124,111,0.1);
}
.global-mobile-menu.open { max-height: 400px; }
.global-mobile-menu__list { padding: 12px 24px 20px; }
.global-mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.global-mobile-menu__link:hover,
.global-mobile-menu__link--active {
  color: var(--color-primary);
  background: rgba(74,124,111,0.08);
}


.global-sidebar-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.global-sidebar-cta.visible {
  opacity: 1;
  pointer-events: all;
}
.global-sidebar-cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 10px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  min-height: 44px;
}
.global-sidebar-cta__link i { font-size: 18px; }
.global-sidebar-cta__link:hover {
  background: var(--color-primary-dark);
  padding-right: 14px;
  box-shadow: var(--shadow-xl);
}


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  min-height: 48px;
}
.global-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(74,124,111,0.3), 0 2px 4px rgba(74,124,111,0.2);
}
.global-btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(74,124,111,0.35), 0 4px 8px rgba(74,124,111,0.25);
  transform: translateY(-2px);
}
.global-btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.global-btn--ghost:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.global-btn--secondary {
  background: var(--color-bg-soft);
  color: var(--color-text);
  border-color: var(--color-bg-soft);
  box-shadow: var(--shadow-sm);
}
.global-btn--secondary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
}
.global-btn--white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.global-btn--white:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.global-btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.global-btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}


.global-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(74,124,111,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}


.global-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.global-link-arrow:hover { gap: 14px; color: var(--color-primary-dark); }




.home-hero {
  min-height: 92vh;
  background: var(--color-bg-hero);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 80px);
  gap: 40px;
}
.home-hero__blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
}
.home-hero__blob--1 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(ellipse, rgba(74,124,111,0.12) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: blobFloat 8s ease-in-out infinite;
}
.home-hero__blob--2 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(ellipse, rgba(201,169,110,0.15) 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.home-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vh, 140px) 0;
}
.home-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.home-hero__heading {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.home-hero__heading em {
  font-style: normal;
  color: var(--color-primary);
}
.home-hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--color-text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.home-hero__cta-wrap { display: flex; gap: 16px; flex-wrap: wrap; }
.home-hero__image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-hero__image {
  width: 100%;
  max-width: 520px;
  border-radius: 40% 60% 55% 45% / 45% 50% 60% 55%;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.home-hero__image-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.home-hero__image-badge i { color: var(--color-primary); font-size: 18px; }
.home-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.home-hero__wave svg { width: 100%; display: block; }


.home-intro {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.home-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-intro__heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text);
}
.home-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.home-intro__text .global-link-arrow { margin-top: 8px; }
.home-intro__image-stack {
  position: relative;
  height: 420px;
}
.home-intro__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.home-intro__card img { width: 100%; height: 100%; object-fit: cover; }
.home-intro__card--back {
  width: 75%;
  height: 85%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  background: var(--color-accent-light);
}
.home-intro__card--front {
  width: 70%;
  height: 80%;
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}


.home-services {
  background: var(--color-bg);
  position: relative;
}
.home-services__wave-top,
.home-services__wave-bottom { line-height: 0; }
.home-services__wave-top svg,
.home-services__wave-bottom svg { width: 100%; display: block; }
.home-services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 80px);
}
.home-services__header {
  text-align: center;
  margin-bottom: 60px;
}
.home-services__heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}
.home-services__lead {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.home-services__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(74,124,111,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.home-services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: var(--transition);
}
.home-services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.home-services__card:hover::before { opacity: 1; }
.home-services__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,124,111,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 20px;
  transition: var(--transition);
}
.home-services__card:hover .home-services__card-icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.home-services__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}
.home-services__card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.home-process {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.home-process__inner { max-width: 1200px; margin: 0 auto; }
.home-process__header {
  text-align: center;
  margin-bottom: 60px;
}
.home-process__heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--color-text);
}
.home-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.home-process__step {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.home-process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.home-process__step-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(74,124,111,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.home-process__step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.home-process__step-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.home-materials {
  background: var(--color-bg);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.home-materials__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-blob);
  background: radial-gradient(ellipse, rgba(201,169,110,0.1) 0%, transparent 70%);
  right: -100px;
  top: -50px;
  pointer-events: none;
}
.home-materials__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-materials__image {
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}
.home-materials__heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text);
}
.home-materials__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.home-materials__content .global-btn { margin-top: 8px; }


.home-area {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.home-area__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-area__heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}
.home-area__lead {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.home-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.home-area__cities span {
  background: rgba(74,124,111,0.1);
  color: var(--color-primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.home-area__cities span:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.home-area__note {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
}
.home-area__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}


.home-cta-banner {
  background: var(--color-bg-dark);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.home-cta-banner__blob {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 60% 40% 50% 60% / 40% 60% 50% 60%;
  background: radial-gradient(ellipse, rgba(74,124,111,0.2) 0%, transparent 70%);
  left: -100px;
  top: -50px;
  pointer-events: none;
}
.home-cta-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home-cta-banner__heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.home-cta-banner__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.6;
}
.home-cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


.specjalizacja-hero {
  background: var(--color-bg-hero);
  padding: clamp(100px, 15vh, 160px) clamp(24px, 5vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.specjalizacja-hero__blob {
  position: absolute;
  width: 500px;
  height: 400px;
  border-radius: var(--radius-blob);
  background: radial-gradient(ellipse, rgba(74,124,111,0.1) 0%, transparent 70%);
  right: -50px;
  top: 0;
  pointer-events: none;
}
.specjalizacja-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.specjalizacja-hero__heading {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.specjalizacja-hero__lead {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.specjalizacja-hero__wave { line-height: 0; }
.specjalizacja-hero__wave svg { width: 100%; display: block; }

.specjalizacja-service {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: var(--color-bg-soft);
}
.specjalizacja-service--alt { background: var(--color-bg); }
.specjalizacja-service__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.specjalizacja-service__icon {
  width: 56px;
  height: 56px;
  background: rgba(74,124,111,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 20px;
}
.specjalizacja-service__content h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}
.specjalizacja-service__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.specjalizacja-service__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}

.specjalizacja-stones {
  background: var(--color-bg-dark);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.specjalizacja-stones__inner { max-width: 1200px; margin: 0 auto; }
.specjalizacja-stones__header {
  text-align: center;
  margin-bottom: 60px;
}
.specjalizacja-stones__header .global-label {
  background: rgba(255,255,255,0.1);
  color: var(--color-accent-light);
}
.specjalizacja-stones__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.specjalizacja-stones__lead {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}
.specjalizacja-stones__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.specjalizacja-stones__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.specjalizacja-stones__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(74,124,111,0.4);
  transform: translateY(-4px);
}
.specjalizacja-stones__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 14px;
}
.specjalizacja-stones__card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.specjalizacja-cta {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.specjalizacja-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.specjalizacja-cta__inner h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}
.specjalizacja-cta__inner p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}


.wycena-hero {
  background: var(--color-bg-hero);
  padding: clamp(100px, 12vh, 140px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.wycena-hero__blob {
  position: absolute;
  width: 600px;
  height: 500px;
  border-radius: var(--radius-blob);
  background: radial-gradient(ellipse, rgba(74,124,111,0.08) 0%, transparent 70%);
  left: -150px;
  top: -100px;
  pointer-events: none;
}
.wycena-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.wycena-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.wycena-hero__lead {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.wycena-hero__info-cards { display: flex; flex-direction: column; gap: 16px; }
.wycena-hero__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.wycena-hero__info-card i {
  color: var(--color-primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.wycena-hero__info-card div { display: flex; flex-direction: column; }
.wycena-hero__info-card strong { font-size: 14px; font-weight: 700; color: var(--color-text); }
.wycena-hero__info-card span { font-size: 14px; color: var(--color-text-muted); }

.wycena-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
.wycena-form-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-text);
}
.wycena-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wycena-form__field { margin-bottom: 20px; }
.wycena-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.wycena-form__required { color: var(--color-primary); }
.wycena-form__optional { color: var(--color-text-muted); font-weight: 400; font-size: 12px; }
.wycena-form__field input,
.wycena-form__field select,
.wycena-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(74,124,111,0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
  min-height: 44px;
}
.wycena-form__field input:focus,
.wycena-form__field select:focus,
.wycena-form__field textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.1);
}
.wycena-form__field textarea { resize: vertical; min-height: 100px; }
.wycena-form__privacy { margin-bottom: 24px; }
.wycena-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.wycena-form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(74,124,111,0.3);
  border-radius: 4px;
  accent-color: var(--color-primary);
  margin-top: 2px;
  cursor: pointer;
}
.wycena-form__checkbox-label a { color: var(--color-primary); text-decoration: underline; }
.wycena-form__submit { width: 100%; justify-content: center; }

.wycena-faq {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.wycena-faq__inner { max-width: 1200px; margin: 0 auto; }
.wycena-faq__header { text-align: center; margin-bottom: 48px; }
.wycena-faq__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-text);
}
.wycena-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.wycena-faq__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.wycena-faq__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.wycena-faq__item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wycena-faq__item h3 i { color: var(--color-primary); font-size: 14px; }
.wycena-faq__item p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }


.materialy-hero {
  background: var(--color-bg-hero);
  padding: clamp(100px, 15vh, 160px) clamp(24px, 5vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.materialy-hero__blob {
  position: absolute;
  width: 500px;
  height: 400px;
  border-radius: var(--radius-blob);
  background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, transparent 70%);
  right: -50px;
  top: 0;
  pointer-events: none;
}
.materialy-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.materialy-hero__heading {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.materialy-hero__lead {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.materialy-hero__wave { line-height: 0; }
.materialy-hero__wave svg { width: 100%; display: block; }

.materialy-principle {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.materialy-principle__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.materialy-principle__content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}
.materialy-principle__lead {
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.materialy-principle__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.materialy-principle__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}

.materialy-categories {
  background: var(--color-bg);
  position: relative;
}
.materialy-categories__wave-top,
.materialy-categories__wave-bottom { line-height: 0; }
.materialy-categories__wave-top svg,
.materialy-categories__wave-bottom svg { width: 100%; display: block; }
.materialy-categories__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 80px);
}
.materialy-categories__header { text-align: center; margin-bottom: 48px; }
.materialy-categories__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-text);
}
.materialy-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.materialy-categories__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(74,124,111,0.06);
  transition: var(--transition);
}
.materialy-categories__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.materialy-categories__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.materialy-categories__card-header i {
  color: var(--color-primary);
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: rgba(74,124,111,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.materialy-categories__card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.materialy-categories__card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.materialy-categories__card-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(74,124,111,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
}

.materialy-dont {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.materialy-dont__inner { max-width: 900px; margin: 0 auto; }
.materialy-dont__content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}
.materialy-dont__lead {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.materialy-dont__list { display: flex; flex-direction: column; gap: 24px; }
.materialy-dont__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid #e57373;
}
.materialy-dont__item i {
  color: #e57373;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.materialy-dont__item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.materialy-dont__item p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.materialy-tools {
  background: var(--color-bg);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.materialy-tools__inner { max-width: 1200px; margin: 0 auto; }
.materialy-tools__header { text-align: center; margin-bottom: 48px; }
.materialy-tools__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-text);
}
.materialy-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.materialy-tools__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.materialy-tools__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.materialy-tools__item i {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}
.materialy-tools__item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.materialy-tools__item p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.materialy-cta {
  background: var(--color-bg-dark);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.materialy-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.materialy-cta__inner h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.materialy-cta__inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}
.materialy-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


.contact-hero {
  background: var(--color-bg-hero);
  padding: clamp(100px, 15vh, 160px) clamp(24px, 5vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.contact-hero__blob {
  position: absolute;
  width: 500px;
  height: 400px;
  border-radius: var(--radius-blob);
  background: radial-gradient(ellipse, rgba(74,124,111,0.1) 0%, transparent 70%);
  right: -50px;
  top: 0;
  pointer-events: none;
}
.contact-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.contact-hero__heading {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.contact-hero__lead {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.contact-hero__wave { line-height: 0; }
.contact-hero__wave svg { width: 100%; display: block; }

.contact-form-section {
  background: var(--color-bg-soft);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.contact-form-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}
.contact-info-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-text);
}
.contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-card__item:last-child { margin-bottom: 0; }
.contact-info-card__item i {
  color: var(--color-primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-card__item div { display: flex; flex-direction: column; gap: 2px; }
.contact-info-card__item strong { font-size: 14px; font-weight: 700; color: var(--color-text); }
.contact-info-card__item span,
.contact-info-card__item a {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.contact-info-card__item a:hover { color: var(--color-primary); }

.contact-response-info {
  background: rgba(74,124,111,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 3px solid var(--color-primary);
}
.contact-response-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-response-info h3 i { color: var(--color-primary); }
.contact-response-info p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-response-info p:last-child { margin-bottom: 0; }

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
.contact-form-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-text);
}
.contact-form__inline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__field { margin-bottom: 20px; }
.contact-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.contact-form__required { color: var(--color-primary); }
.contact-form__optional { color: var(--color-text-muted); font-weight: 400; font-size: 12px; }
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(74,124,111,0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
  min-height: 44px;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.1);
}
.contact-form__field textarea { resize: vertical; min-height: 90px; }
.contact-form__bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-muted);
}
.contact-form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.contact-form__checkbox-label a { color: var(--color-primary); text-decoration: underline; }

.contact-map-section {
  background: var(--color-bg);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.contact-map-section__inner { max-width: 1200px; margin: 0 auto; }
.contact-map-section__inner h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 28px;
}
.contact-map-section__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}


.page-thanks { min-height: 100vh; display: flex; flex-direction: column; }
.thanks-main { flex: 1; }
.thanks-hero {
  background: var(--color-primary-dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.thanks-hero__blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
}
.thanks-hero__blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.2) 0%, transparent 70%);
  left: -100px;
  top: -100px;
}
.thanks-hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  right: -50px;
  bottom: -50px;
}
.thanks-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.thanks-hero__icon {
  font-size: 72px;
  color: var(--color-accent-light);
  margin-bottom: 28px;
}
.thanks-hero__heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.thanks-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.6;
}


.legal-main {
  padding: clamp(100px, 12vh, 140px) clamp(24px, 5vw, 80px) var(--section-pad);
  min-height: 80vh;
}
.legal-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}


.legal-toc-mobile {
  display: none;
  margin-bottom: 32px;
}
.legal-toc-mobile__toggle {
  width: 100%;
  background: var(--color-bg-card);
  border: 1.5px solid rgba(74,124,111,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  min-height: 44px;
}
.legal-toc-mobile__toggle i:last-child {
  margin-left: auto;
  transition: var(--transition);
}
.legal-toc-mobile__toggle--open i:last-child { transform: rotate(180deg); }
.legal-toc-mobile__content {
  display: none;
  background: var(--color-bg-card);
  border: 1.5px solid rgba(74,124,111,0.15);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 16px;
}
.legal-toc-mobile__content--open { display: block; }
.legal-toc-mobile__content ol,
.legal-toc-mobile__content nav { display: flex; flex-direction: column; gap: 4px; }
.legal-toc-mobile__content a,
.legal-toc-mobile__content li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.legal-toc-mobile__content a:hover { color: var(--color-primary); background: rgba(74,124,111,0.06); }


.legal-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.legal-sidebar__inner {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74,124,111,0.08);
}
.legal-sidebar__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.legal-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: toc;
}
.legal-sidebar__list li { counter-increment: toc; }
.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-sidebar__link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1.4;
}
.legal-sidebar__link:hover { color: var(--color-primary); background: rgba(74,124,111,0.06); }
.legal-sidebar__link--active {
  color: var(--color-primary);
  background: rgba(74,124,111,0.1);
  font-weight: 600;
}


.legal-content__header { margin-bottom: 40px; }
.legal-content__header h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}
.legal-content__meta {
  font-size: 14px;
  color: var(--color-text-muted);
}
.legal-content__intro {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 12px;
}
.legal-content > p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.legal-section {
  margin-bottom: 48px;
  padding-top: 16px;
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(74,124,111,0.12);
}
.legal-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin: 20px 0 10px;
}
.legal-section p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-section ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-section a { color: var(--color-primary); text-decoration: underline; }
.legal-section a:hover { color: var(--color-primary-dark); }


.global-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.global-footer__wave { line-height: 0; }
.global-footer__wave svg { width: 100%; display: block; }
.global-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 80px) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.global-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.global-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
  margin-bottom: 20px;
}
.global-footer__address {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
}
.global-footer__address i {
  color: var(--color-accent);
  margin-right: 6px;
  width: 16px;
}
.global-footer__address a {
  color: rgba(255,255,255,0.6);
  display: block;
  transition: var(--transition);
}
.global-footer__address a:hover { color: var(--color-accent-light); }
.global-footer__nav h4,
.global-footer__legal h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.global-footer__nav ul,
.global-footer__legal ul { display: flex; flex-direction: column; gap: 4px; }
.global-footer__nav a,
.global-footer__legal a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.global-footer__nav a:hover,
.global-footer__legal a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
  padding-left: 14px;
}
.global-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(24px, 5vw, 80px);
  text-align: center;
}
.global-footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}


@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; text-align: center; }
  .home-hero__content { padding: clamp(80px, 10vh, 120px) 0 40px; }
  .home-hero__sub { margin: 0 auto 36px; }
  .home-hero__cta-wrap { justify-content: center; }
  .home-hero__image-wrap { display: none; }
  .home-intro__inner,
  .home-materials__inner,
  .home-area__inner { grid-template-columns: 1fr; gap: 48px; }
  .home-intro__image-stack { height: 320px; }
  .specjalizacja-service__inner,
  .materialy-principle__inner { grid-template-columns: 1fr; gap: 40px; }
  .specjalizacja-service__image-wrap { order: -1; }
  .wycena-hero__inner { grid-template-columns: 1fr; }
  .contact-form-section__inner { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
  .legal-toc-mobile { display: block; }
  .global-footer__inner { grid-template-columns: 1fr 1fr; }
  .global-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .global-nav { display: none; }
  .global-header__hamburger { display: flex; }
  .home-services__grid,
  .home-process__steps { grid-template-columns: 1fr; }
  .wycena-form__row,
  .contact-form__inline-row { grid-template-columns: 1fr; }
  .global-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .global-footer__brand { grid-column: auto; }
  .contact-form__bottom-row { flex-direction: column; align-items: flex-start; }
  .contact-form__submit { width: 100%; justify-content: center; }
  .home-cta-banner__btns { flex-direction: column; align-items: center; }
  .materialy-cta__btns { flex-direction: column; align-items: center; }
  .global-sidebar-cta { display: none; }
  .specjalizacja-stones__grid { grid-template-columns: 1fr; }
  .materialy-categories__grid { grid-template-columns: 1fr; }
  .materialy-tools__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .home-hero { padding: 0 20px; }
  .wycena-form-card { padding: 28px 20px; }
  .contact-form-card { padding: 28px 20px; }
  .global-cookie-bar__inner { flex-direction: column; gap: 10px; }
}