* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f4ef;
  color: #171717;
  overflow-x: hidden;
}

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

:root {
  --red: #ef233c;
  --dark: #171717;
  --muted: #666;
  --light: #f7f4ef;
  --white: #ffffff;
  --line: rgba(0,0,0,0.1);
  --shadow: 0 24px 70px rgba(0,0,0,0.12);
}

/* ANIMACJE */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

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

/* LOADER START */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f7f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-bg {
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(rgba(247,244,239,0.72), rgba(247,244,239,0.92)),
    url("hero.png") center/cover no-repeat;
  filter: blur(16px);
  opacity: 0.55;
  transform: scale(1.08);
  animation: loaderBgMove 1.4s ease forwards;
}

.loader-content {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 26px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.08);
  display: grid;
  justify-items: center;
  gap: 16px;
  animation: loaderLogoMove 1.35s cubic-bezier(.76,0,.24,1) forwards;
}

.loader-content img {
  width: 220px;
  max-width: 70vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.14));
}

.loader-content span {
  color: #ef233c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.page-loader.hidden {
  pointer-events: none;
  animation: loaderOut 0.75s cubic-bezier(.76,0,.24,1) forwards;
}

@keyframes loaderBgMove {
  from {
    transform: scale(1.16) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-30px);
  }
}

@keyframes loaderLogoMove {
  0% {
    opacity: 0;
    transform: scale(0.92) translateX(0);
  }

  35% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateX(-18px);
  }
}

@keyframes loaderOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* HEADER */

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 32px));
  min-height: 78px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  font-size: 14px;
  font-weight: 900;
  color: rgba(0,0,0,0.66);
  padding: 13px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #fff;
  background: var(--red);
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 170px 6% 100px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero.png") center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 15s ease-in-out infinite alternate;
  z-index: -3;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.16); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(239,35,60,0.32), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.55), rgba(0,0,0,0.74));
  z-index: -2;
}

.hero-content {
  max-width: 860px;
}

.eyebrow,
.section-title span,
.split-text span,
.cta span {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.96;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 38px;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn-primary,
.btn-secondary {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 42px rgba(239,35,60,0.25);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: #d90429;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.2);
}

.dark-btn {
  color: var(--dark);
  border: 1px solid var(--line);
  background: #fff;
}

/* QUICK INFO */

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-info div {
  padding: 36px 6%;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: none;
}

.quick-info strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 27px;
  margin-bottom: 8px;
}

.quick-info span {
  color: var(--muted);
}

/* SECTIONS */

.section {
  padding: 110px 6%;
}

.section-title {
  max-width: 820px;
  margin-bottom: 55px;
}

.section-title h2,
.split-text h2,
.cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
}

.section-title p,
.cta p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* SERVICES */

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

.service-card {
  padding: 34px 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card span,
.process-card span {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}

.service-card h3,
.process-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin: 20px 0 12px;
}

.service-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.center-btn {
  margin-top: 40px;
  text-align: center;
}

/* PROCESS */

.process-section {
  padding: 110px 6%;
  background:
    radial-gradient(circle at 8% 10%, rgba(239,35,60,0.09), transparent 30%),
    #111;
  color: #fff;
}

.compact-process {
  padding-top: 95px;
}

.process-section .section-title p {
  color: rgba(255,255,255,0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}

.process-card p {
  color: rgba(255,255,255,0.65);
}

/* HOUSE MAP */

.house-section {
  padding: 110px 0 80px;
  background: #ffffff;
}

.house-section .section-title {
  padding: 0 6%;
}

.house-map {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.house-map img {
  width: 100%;
  display: block;
}

.hotspot {
  position: absolute;
  z-index: 10;
}

.hotspot > span {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid #fff;
  box-shadow: 0 0 0 0 rgba(239,35,60,0.7);
  animation: pulse 2s infinite;
  cursor: pointer;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,35,60,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(239,35,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,35,60,0); }
}

.hotspot-info {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(20,20,20,0.94);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  pointer-events: none;
  box-shadow: 0 20px 55px rgba(0,0,0,0.25);
}

.hotspot-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  font-size: 21px;
  margin-bottom: 8px;
}

.hotspot-info p {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.6;
}

.hotspot:hover .hotspot-info,
.hotspot.active .hotspot-info {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-bathroom { top: 58%; left: 16%; }
.hotspot-kitchen { top: 37%; left: 43%; }
.hotspot-floor { top: 66%; left: 44%; }
.hotspot-stairs { top: 21%; left: 72%; }

/* SPLIT */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  background: #f7f4ef;
}

.split-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  display: block;
  box-shadow: var(--shadow);
}

.split-text p {
  margin: 26px 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
}

.check-list p {
  margin: 0;
  color: #333;
  font-weight: 800;
}

/* GALLERY */

.gallery-preview {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  cursor: zoom-in;
}

.gallery-grid img:hover {
  transform: scale(1.025);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* CTA */

.cta {
  padding: 110px 6%;
  background: #111;
  color: #fff;
}

.cta-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 50px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(239,35,60,0.26), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
}

.cta p {
  max-width: 760px;
  margin: 24px auto 38px;
  color: rgba(255,255,255,0.7);
}

.cta-buttons {
  justify-content: center;
}

/* FOOTER */

.footer {
  padding: 70px 6% 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(239,35,60,0.16), transparent 32%),
    #0c0c0f;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.footer-brand img {
  width: auto;
  height: 62px;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  font-size: 15px;
}

.footer-column h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  margin-bottom: 22px;
  color: #fff;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.62);
  font-weight: 800;
  margin: 12px 0;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: var(--red);
  transform: translateX(4px);
}

.footer-phone {
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 18px !important;
}

.footer-link {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-link:hover {
  background: var(--red);
  color: #fff !important;
  transform: translateX(0) translateY(-2px);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.42);
  font-size: 14px;
  font-weight: 700;
}

/* SUBPAGES */

.sub-hero {
  min-height: 58vh;
  padding: 160px 6% 80px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.sub-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  z-index: -3;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(239,35,60,0.2), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.42));
  z-index: -2;
}

.sub-hero-content {
  max-width: 850px;
}

.sub-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.sub-hero p {
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}

/* OFFER */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.offer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.offer-card-content {
  padding: 28px;
}

.offer-card-content span {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}

.offer-card-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 25px;
  margin: 16px 0 12px;
}

.offer-card-content p {
  color: var(--muted);
  line-height: 1.7;
}

/* REALIZATIONS */

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.realization-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 330px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  cursor: zoom-in;
}

.realization-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
  transition: 0.35s ease;
}

.realization-card:hover img {
  transform: scale(1.06);
}

.realization-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
}

.realization-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
}

.realization-card p {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-data {
  display: grid;
  gap: 18px;
}

.contact-item,
.contact-box,
.contact-note {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.contact-item span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 13px;
}

.contact-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  margin-top: 12px;
}

.contact-item strong a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-note h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-note p {
  color: var(--muted);
  line-height: 1.75;
}

.small-title {
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #f7f4ef;
  border-radius: 16px;
  padding: 15px 16px;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

/* TABLET */

@media (max-width: 1000px) {
  .header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    min-height: auto;
    padding: 12px;
    border-radius: 26px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logo img {
    height: 42px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .nav a {
    text-align: center;
    font-size: 12px;
    padding: 11px 4px;
    border-radius: 999px;
    background: rgba(0,0,0,0.04);
  }

  .hero {
    min-height: auto;
    padding: 74px 24px 74px;
    align-items: center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 20% 28%, rgba(239,35,60,0.24), transparent 34%),
      linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
  }

  .quick-info,
  .services-grid,
  .process-grid,
  .split,
  .gallery-grid,
  .footer-top,
  .offer-grid,
  .realizations-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .cta,
  .house-section,
  .process-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .house-section {
    padding-top: 80px;
  }

  .house-section .section-title {
    padding: 0;
  }

  .house-map {
    width: calc(100% + 48px);
    margin-left: -24px;
  }

  .split-image img {
    height: 380px;
  }

  .sub-hero {
    padding: 90px 24px 70px;
  }

  .footer {
    padding: 54px 24px 50px;
  }

  .footer-top {
    gap: 36px;
  }

  .footer-brand img {
    height: 50px;
    max-width: 220px;
  }

  .footer-phone {
    font-size: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 42px;
  }
}

/* MOBILE */

@media (max-width: 560px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .page-loader {
    align-items: center;
    justify-content: center;
  }

  .loader-content {
    max-width: 300px;
    padding: 22px 24px;
    border-radius: 24px;
  }

  .loader-content img {
    width: 190px;
    max-width: 72vw;
  }

  .loader-content span {
    font-size: 10px;
  }

  .header {
    width: calc(100% - 18px);
    margin-top: 9px;
    padding: 12px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  }

  .logo img {
    height: 38px;
  }

  .nav {
    gap: 7px;
  }

  .nav a {
    font-size: 11px;
    padding: 10px 2px;
  }

  .hero {
    padding: 54px 22px 64px;
  }

  .hero-bg {
    background-position: center;
  }

  .eyebrow,
  .section-title span,
  .split-text span,
  .cta span {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 37px;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 52px;
  }

  .hero-buttons,
  .cta-buttons {
    width: 100%;
  }

  .quick-info div {
    padding: 28px 24px;
  }

  .quick-info strong {
    font-size: 24px;
  }

  .section {
    padding: 78px 18px;
  }

  .process-section {
    padding: 78px 18px;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section-title h2,
  .split-text h2,
  .cta h2 {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.5px;
  }

  .section-title p,
  .cta p {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-card,
  .process-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .house-section {
    padding-top: 74px;
    padding-bottom: 64px;
  }

  .house-map {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .house-map img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .hotspot > span {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .hotspot-info {
    width: 180px;
    padding: 14px;
    bottom: 30px;
    border-radius: 15px;
  }

  .hotspot-info h3 {
    font-size: 18px;
  }

  .hotspot-info p {
    font-size: 12px;
  }

  .hotspot-bathroom { top: 58%; left: 10%; }
  .hotspot-kitchen { top: 38%; left: 42%; }
  .hotspot-floor { top: 66%; left: 42%; }
  .hotspot-stairs { top: 21%; left: 72%; }

  .split-image img {
    height: 330px;
    border-radius: 24px;
  }

  .gallery-grid img,
  .realization-card,
  .realization-card img {
    min-height: 260px;
    height: 260px;
  }

  .cta {
    padding: 80px 20px;
  }

  .cta-inner {
    padding: 46px 22px;
    border-radius: 30px;
  }

  .footer {
    padding: 50px 24px 42px;
  }

  .footer-brand img {
    height: 46px;
    max-width: 220px;
  }

  .footer-phone {
    font-size: 25px;
  }

  .sub-hero {
    min-height: 54vh;
    padding: 70px 24px 60px;
  }

  .sub-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .sub-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .offer-card img {
    height: 230px;
  }

  .realizations-grid {
    gap: 18px;
  }

  .realization-card div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .realization-card h3 {
    font-size: 20px;
  }

  .realization-card p {
    font-size: 14px;
  }

  /* KONTAKT MOBILE FIX */

  .contact-layout {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .contact-data,
  .contact-box {
    width: 100%;
    max-width: 100%;
  }

  .contact-item,
  .contact-note,
  .contact-box {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 22px;
    overflow: hidden;
  }

  .contact-item {
    margin-bottom: 16px;
  }

  .contact-item strong {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-item strong a {
    display: block;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-box {
    margin-top: 18px;
  }

  .contact-box .section-title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 26px;
  }

  .contact-box .section-title h2 {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.8px;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .contact-box .section-title p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 100%;
  }

  .form-grid,
  .form-group,
  .form-group input,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .form-group label {
    font-size: 16px;
    line-height: 1.2;
  }

  .form-group input,
  .form-group textarea {
    display: block;
    font-size: 15px;
    padding: 14px 13px;
    border-radius: 16px;
  }

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

  .contact-box .btn-primary {
    width: 100%;
    max-width: 100%;
  }
}
