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

html {
  scroll-behavior: smooth;
}

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

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

:root {
  --black: #080808;
  --dark: #111111;
  --gray: #666666;
  --light-gray: #f1f1f1;
  --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 */

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

.loader-bg {
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(rgba(245,245,245,0.65), rgba(245,245,245,0.92)),
    url("hero.png") center/cover no-repeat;
  filter: blur(16px);
  transform: scale(1.12);
  animation: loaderBgMove 1.45s ease forwards;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.12);
  animation: loaderLogoMove 1.35s cubic-bezier(.76,0,.24,1) forwards;
}

.loader-content img {
  width: min(310px, 74vw);
  height: auto;
  filter:
    drop-shadow(0 8px 14px rgba(0,0,0,0.35))
    drop-shadow(0 22px 45px rgba(0,0,0,0.34));
}

.loader-content span {
  color: #111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  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.18) translateX(0);
  }

  to {
    transform: scale(1.1) translateX(-28px);
  }
}

@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(-20px);
  }
}

@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(1120px, 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.68);
  padding: 13px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #fff;
  background: #111;
}

/* HERO */

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

.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.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,0,0,0.08), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.76));
  z-index: -2;
}

.hero-logo-wrap {
  position: relative;
  width: min(860px, 100%);
  display: grid;
  justify-items: center;
  padding: 34px 38px;
  border-radius: 36px;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(0,0,0,0.46), rgba(0,0,0,0.22) 42%, transparent 72%);
  filter: blur(12px);
}

.hero-main-logo {
  width: min(480px, 82vw);
  height: auto;
  margin-bottom: 24px;
  animation: logoGlow 3.2s ease-in-out infinite;
  filter:
    drop-shadow(0 8px 10px rgba(0,0,0,0.58))
    drop-shadow(0 22px 45px rgba(0,0,0,0.78));
}

@keyframes logoGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter:
      drop-shadow(0 8px 10px rgba(0,0,0,0.58))
      drop-shadow(0 22px 45px rgba(0,0,0,0.78));
  }

  50% {
    transform: translateY(-5px) scale(1.01);
    filter:
      drop-shadow(0 10px 14px rgba(0,0,0,0.68))
      drop-shadow(0 28px 55px rgba(0,0,0,0.88));
  }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 12px;
  text-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.hero p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin-bottom: 34px;
  text-shadow: 0 14px 35px rgba(0,0,0,0.55);
}

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

/* BADGES */

.eyebrow,
.section-title span,
.split-text span,
.cta span {
  display: inline-block;
  color: #fff;
  background: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
}

.cta span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

/* BUTTONS */

.btn-primary,
.btn-secondary,
.btn-dark {
  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: #fff;
  color: #111;
  box-shadow: 0 18px 42px rgba(0,0,0,0.25);
}

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

.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);
}

.btn-dark {
  color: #fff;
  background: #111;
}

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

/* 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(--gray);
}

/* 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(--gray);
  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);
  background: #111;
  color: #fff;
}

.service-card span {
  color: #777;
  font-weight: 900;
  font-size: 13px;
}

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

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

.service-card:hover p {
  color: rgba(255,255,255,0.7);
}

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

/* PROPERTY MAP */

.property-section {
  padding: 110px 0 80px;
  background: #fff;
}

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

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

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

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.55);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0,0,0,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

.hotspot-info {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15,15,15,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-fence {
  top: 31%;
  left: 14%;
}

.hotspot-gate {
  top: 63%;
  left: 73%;
}

.hotspot-wicket {
  top: 68%;
  left: 49%;
}

.hotspot-drive {
  top: 63%;
  left: 88%;
}

/* SPLIT */

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

.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(--gray);
  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;
}

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

/* 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(255,255,255,0.12), 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);
}

/* FOOTER */

.footer {
  padding: 70px 6% 34px;
  background: #050505;
  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: 58px;
  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: #fff;
  transform: translateX(4px);
}

.footer-phone {
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  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: #fff;
  color: #111 !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.42);
  z-index: -3;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,0.86), 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: #777;
  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(--gray);
  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);
}

.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(--gray);
  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 {
  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: #777;
  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;
}

.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%;
  border: 1px solid var(--line);
  background: #f5f5f5;
  border-radius: 16px;
  padding: 15px 16px;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #111;
}

/* MOBILE BAR */

.bottom-contact {
  display: none;
}

/* RESPONSIVE */

@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: 80vh;
    padding: 78px 24px 74px;
    align-items: center;
  }

  .hero-main-logo {
    width: min(380px, 82vw);
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.75;
  }

  .quick-info,
  .services-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,
  .property-section {
    padding-left: 24px;
    padding-right: 24px;
  }

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

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

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

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

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

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

  .footer-top {
    gap: 36px;
  }

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

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

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

@media (max-width: 560px) {
  .loader-content {
    width: calc(100% - 42px);
    padding: 24px 20px;
  }

  .loader-content img {
    width: 230px;
    max-width: 76vw;
  }

  .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 {
    min-height: 78vh;
    padding: 54px 22px 64px;
  }

  .hero-logo-wrap {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .hero-logo-wrap::before {
    inset: 8px;
    border-radius: 26px;
    background: radial-gradient(circle, rgba(0,0,0,0.48), rgba(0,0,0,0.20) 46%, transparent 74%);
    filter: blur(10px);
  }

  .hero-main-logo {
    width: min(300px, 82vw);
    margin-bottom: 18px;
  }

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

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

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

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

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

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

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .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 {
    padding: 28px 24px;
    border-radius: 24px;
  }

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

  .property-map {
    overflow: visible;
  }

  .property-map img {
    width: 130%;
    max-width: none;
    margin-left: -15%;
  }

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

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

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

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

  .hotspot-fence {
    top: 30%;
    left: 10%;
  }

  .hotspot-gate {
    top: 63%;
    left: 70%;
  }

  .hotspot-wicket {
    top: 68%;
    left: 46%;
  }

  .hotspot-drive {
    top: 63%;
    left: 86%;
  }

  .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 96px;
  }

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

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

  .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;
  }

  .bottom-contact {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }

  .bottom-contact a {
    min-height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
  }

  .bottom-contact a:first-child {
    background: #111;
    color: #fff;
  }

  .bottom-contact a:last-child {
    background: #e9e9e9;
    color: #111;
  }
}
