/* ================================================
   MALOWANIE GDAŃSK – Global Styles
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f0eeea;
  --mid-gray: #e2dfd8;
  --text-dark: #1a1814;
  --text-mid: #4a4540;
  --text-light: #7a746c;
  --accent: #d4a853;
  /* warm gold */
  --accent-dark: #b8923e;
  --green: #25d366;
  /* WhatsApp */
  --green-dark: #1ebe5c;
  --blue-cta: #2563eb;
  --blue-dark: #1d4ed8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

.serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--off-white);
}

.section--gray {
  background: var(--light-gray);
}

/* ── Sticky CTA Bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  gap: 10px;
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.sticky-cta .btn-call {
  background: var(--blue-cta);
  color: var(--white);
}

.sticky-cta .btn-call:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.sticky-cta .btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.sticky-cta .btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.sticky-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mid-gray);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.nav__logo-text {
  color: var(--text-dark);
}

.nav__logo-text span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--accent-dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--call {
  background: var(--blue-cta);
  color: white;
}

.btn--call:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn--whatsapp {
  background: var(--green);
  color: white;
}

.btn--whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
}

.btn--outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn--xl {
  padding: 18px 38px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--mid-gray);
  gap: 4px;
}

.nav__mobile a {
  padding: 12px 8px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--light-gray);
  transition: color var(--transition);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  color: var(--accent-dark);
}

.nav__mobile a.active {
  color: var(--accent-dark);
  font-weight: 600;
}

.nav__mobile .mobile-ctarow {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.nav__mobile .mobile-ctarow a {
  border-bottom: none;
  padding: 0;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero__bg.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 8, 5, 0.6) 0%, rgba(30, 20, 10, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.5);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-family: 'Playfair Display', Georgia, serif;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
  line-height: 1.15;
}

.hero__title em {
  color: var(--accent);
  font-style: normal;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
  font-weight: 400;
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--accent);
  padding: 24px 0;
}

.stats-strip__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-item__num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.stat-item__label {
  font-size: 0.82rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  background: linear-gradient(135deg, #1a1814 0%, #2d2520 100%);
  border-color: var(--accent);
  color: white;
}

.service-card--featured::before {
  background: var(--accent);
  transform: scaleX(1);
}

.service-card--featured .service-card__title {
  color: white;
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-card--featured .service-card__icon {
  background: rgba(212, 168, 83, 0.2);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.service-card__badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

/* ── Gallery / Realizacje ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
}

.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}

/* ── Trust/Why Us ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.trust-item {
  text-align: center;
  padding: 28px 20px;
}

.trust-item__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.trust-item__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.trust-item__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Contact Form ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--mid-gray);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
}

.contact-info__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info__value a {
  color: var(--blue-cta);
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--blue-dark);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue-cta);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ── Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 120px;
  /* bottom padding for sticky CTA */
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer__brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: white;
}

.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer__contact-line svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1a1814 0%, #2d2520 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: 'Playfair Display', Georgia, serif;
  color: white;
  margin-bottom: 14px;
}

.page-hero__sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Before/After ── */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
}

.before-after__panel {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.before-after__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Team / O nas ── */
.team-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.onas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.onas-list {
  margin-top: 24px;
}

.onas-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mid-gray);
}

.onas-list li:last-child {
  border-bottom: none;
}

.onas-list__dot {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
  color: white;
}

.onas-list__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.onas-list__text strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  gap: 6px;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent-dark);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* ── Utility ── */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-24 {
  margin-bottom: 24px;
}

/* ── Scroll Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__mobile.open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .onas-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stats-strip__inner {
    gap: 12px;
  }

  .stat-item__num {
    font-size: 1.6rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* ================================================
   FIXES – svg sizing, mobile, placeholders
   ================================================ */

/* Fix: SVG icons in footer always small */
.footer__contact-line svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  flex-shrink: 0;
}

/* Fix: all inline SVGs inside footer capped */
.footer svg {
  max-width: 20px;
  max-height: 20px;
}

/* Fix: sticky CTA SVG icons */
.sticky-cta svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  flex-shrink: 0;
}

/* Fix: gallery placeholder SVG */
.gallery-placeholder svg {
  width: 36px !important;
  height: 36px !important;
}

/* Fix: realizacje placeholder SVG */
.placeholder-img svg {
  width: 44px !important;
  height: 44px !important;
}

/* Fix: mobile two-col layout */
@media (max-width: 768px) {
  .two-col-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .onas-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .featured-card-wrap {
    grid-template-columns: 1fr !important;
  }

  .featured-card-wrap>div:last-child {
    min-height: 260px !important;
  }
}

/* Fix: mobile hero CTA buttons stack */
@media (max-width: 500px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Fix: sticky CTA always visible, proper layout */
.sticky-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
}

/* Fix: footer bottom padding so sticky CTA doesn't overlap */
body {
  padding-bottom: 70px;
}