:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #566160;
  --red: #f3212a;
  --red-light: #ff4b4f;
  --font-family: "Montserrat", sans-serif;
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
  --breakpoint-desktop: 1260px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 112px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  max-width: 100%;
  width: 1420px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  z-index: 900;
  border-bottom: 1px solid #eee;
}
.header .container {
  max-width: 100%;
  width: 1420px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.header a.logo {
  width: 25%;
}
.header nav {
  width: 68%;
}
.header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header nav ul li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.header nav ul li a:hover {
  background-color: #eee;
}
.header .cta-wrapper {
  width: 12%;
}
.header .cta-wrapper .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-left: auto;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.header .cta-wrapper .cta svg {
  width: 21px;
  height: 21px;
}
.header .cta-wrapper .cta svg path {
  stroke: var(--gray);
  transition: all 0.3s ease;
}
.header .cta-wrapper .cta:hover {
  background-color: var(--red);
}
.header .cta-wrapper .cta:hover svg path {
  stroke: var(--white);
}
.header .cta-wrapper .cta:hover span {
  color: var(--white);
}
.header .cta-wrapper .cta span {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.header {
  /* Mobile Menu */
}
.header .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}
@media (max-width: 1024px) {
  .header .burger {
    display: flex;
  }
}
.header .burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transition: all 0.3s ease;
}
.header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .burger.active span:nth-child(2) {
  opacity: 0;
}
.header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  padding: 32px;
  box-sizing: border-box;
}
.header .mobile-menu.active {
  transform: translateY(0);
}
.header .mobile-menu nav {
  width: 100%;
}
.header .mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.header .mobile-menu nav ul li a {
  font-size: 24px;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
.header .mobile-menu .cta-wrapper {
  margin-top: 32px;
  width: auto;
}
.header .mobile-menu .cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  color: var(--black);
  font-weight: bold;
}
@media (max-width: 1024px) {
  .header .container {
    justify-content: space-between;
  }
  .header .container nav,
  .header .container .cta-wrapper {
    display: none;
  }
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: var(--red-light);
}

.hero {
  width: 100%;
  padding-top: 105px;
  background-color: var(--black);
  color: var(--white);
  border-right: 46px solid var(--white);
  box-sizing: border-box;
}
.hero .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding-left: 32px;
}
.hero .wrapper .claim {
  padding-bottom: 64px;
}
.hero .wrapper .claim span {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.hero .wrapper .claim h1 {
  font-size: 70px;
  line-height: 72px;
  font-weight: 900;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  margin-block-end: 0;
}
.hero .wrapper .claim h2 {
  font-size: 40px;
  line-height: 72px;
  font-weight: 900;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  margin-block-start: 0;
}
.hero .wrapper .claim .button {
  margin-top: 105px;
}
.hero .wrapper figure {
  margin: 0;
  margin-bottom: -48px;
  margin-left: -36px;
  margin-right: 36px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.hero .wrapper figure img {
  width: auto;
  max-height: 605px;
}

.boxes {
  max-width: 100%;
  width: 1120px;
  margin: 64px auto;
}
.boxes .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  padding: 64px 32px;
}
.boxes .inner .line {
  width: 1px;
  height: auto;
  background-color: #eee;
  margin: 0;
  flex-shrink: 0;
  flex-grow: 1;
}
.boxes .inner .box {
  width: calc(25% - 12px);
  color: var(--black);
  text-decoration: none;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.boxes .inner .box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -16px;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.boxes .inner .box .icon {
  height: 42px;
  width: auto;
  margin-bottom: 26px;
  align-self: flex-start;
}
.boxes .inner .box h2 {
  font-size: 21px;
  font-weight: bold;
  line-height: 28px;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 21px;
}
.boxes .inner .box p {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  margin-bottom: 32px;
}
.boxes .inner .box .arrow {
  margin-top: auto;
  transition: all 0.3s ease;
}
.boxes .inner .box:hover:before {
  opacity: 1;
  left: 0;
}
.boxes .inner .box:hover .arrow {
  margin-left: 16px;
}

.media-text {
  margin: 64px auto;
}
.media-text .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 160px;
}
.media-text .inner figure {
  width: fit-content;
  max-width: 527px;
  margin: 0;
  position: relative;
}
.media-text .inner figure img {
    max-width: 527px;
}
.media-text .inner figure:before {
  content: "";
  display: block;
  position: absolute;
  top: -32px;
  left: -32px;
  background-color: #dddddd;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.media-text .inner .wrapper figure {
  width: inherit;
  margin: 0;
  position: relative;
}
.media-text .inner .wrapper figure:before {
  display: none;
}
.media-text .inner .wrapper {
  max-width: 530px;
}
.media-text .inner .wrapper :is(h1, h2, h4, h5, h6) {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: -0px;
  margin-top: 0;
}
.media-text .inner .wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 64px;
  margin-top: 0;
}
.media-text .inner .wrapper p {
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 16px;
}
.media-text .inner .wrapper p :is(a) {
  text-decoration: underline;
  color: inherit;
  transition: all 0.3s ease;
}
.media-text .inner .wrapper p :is(a):hover {
  background-color: #eee;
}

.our-offer {
  margin: 96px auto;
}
.our-offer .subtitle {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
}
.our-offer .title {
  text-align: center;
  font-size: 46px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 48px;
  color: var(--black);
}
.our-offer .offer-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.our-offer .offer-list .box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #dddddd;
    border: 1px solid #bdbdbd;
    text-decoration: none;
    color: #222;
    transition: .2s;
}
.our-offer .offer-list .box:hover{
    background: #d2d2d2;
}
.our-offer .offer-list .box-name{
    font-size: 16px;
    font-weight: 700;
}
.our-offer .offer-list .box-info{
    display: flex;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
}
.our-offer .offer-list .price{
    color: #8c5d2f;
    font-weight: 700;
}
.our-offer .offer-list .box-left{
    display: flex;
    align-items: center;
    gap: 15px;
}
.our-offer .offer-list .box-left .status{
    width:14px;
    height:14px;
    border-radius:50%;
    display:inline-block;
    margin-right:15px;
}
.our-offer .offer-list .box-left .status-0{
    background:#28a745; 
}

.our-offer .offer-list .box-left .status-1{
    background:#dc3545;
}

.our-offer .offer-list .box-left .status-2{
    background:#ffc107; 
}
.our-offer .box-wrapper {
  display: flex;
  flex-wrap: wrap;
  background-size: cover;
  justify-content: center;
  gap: 8px;
}
.our-offer #main-box-wrapper {
    background-image: url("../img/osiedle_calosc.png");
    position: relative;
    display: inline-block;
    min-width: 100%;
    aspect-ratio: 16/9;
}
.our-offer .box-wrapper .box {
  width: calc(33.3333333333% - 5.3333333333px);
  text-decoration: none;
  height: auto;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.our-offer .box-wrapper .box:hover img {
  transform: scale(1.05);
}
.our-offer .box-wrapper .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.our-offer .box-wrapper .box .claim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  text-align: center;
}
.our-offer .box-wrapper .box .claim span {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.our-offer .box-wrapper .box .claim span.price {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 700;
}
.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.overlay a path {
  fill: rgba(255, 255, 255, 0);
  stroke: rgba(255, 255, 255, 0);
  opacity: 0;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    fill 0.25s ease,
    stroke 0.25s ease;
}
.overlay a:hover path {
  fill: rgba(255, 255, 255, 0.5);
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 2px;
  opacity: 1;
}

.contact {
  margin: 96px auto;
}
.contact .claim {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #eee;
}
.contact .claim h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--black);
}
.contact .claim p {
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 0;
}
.contact .inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
.contact .inner .contact-info {
  width: 100%;
}
.contact .inner .inner-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 1;
  gap: 32px;
}
.contact .inner .inner-info .col {
  width: calc(50% - 16px);
  flex-shrink: 0;
  flex-grow: 1;
}
.contact .inner .inner-info .col h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  color: var(--black);
  margin-bottom: 32px;
}
.contact .inner .inner-info .col p {
  margin-left: 64px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--black);
}
.contact .inner .inner-info .col p a {
  display: block;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.contact .inner .inner-info .col p a:hover {
  text-decoration: none;
  color: var(--red);
  text-decoration: underline;
}
.contact .inner .form-wrapper h2 {
  margin-top: 64px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 48px;
}
.contact .inner .form-wrapper .form {
  width: 600px;
  max-width: 100%;
}
.contact .inner .form-wrapper .form .input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 12px;
}
.contact .inner .form-wrapper .form .input-wrapper label {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 0px;
  height: 0px;
  user-select: none;
  pointer-events: none;
}
.contact .inner .form-wrapper .form .input-wrapper input,
.contact .inner .form-wrapper .form .input-wrapper textarea {
  width: 100%;
  border: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  background-color: rgba(50, 50, 45, 0.08);
  padding: 12px 16px;
  box-sizing: border-box;
  font-family: var(--font-family);
}
.contact .inner .form-wrapper .form .input-wrapper input::placeholder,
.contact .inner .form-wrapper .form .input-wrapper textarea::placeholder {
  color: var(--gray);
}
.contact .inner .form-wrapper .form .input-wrapper input:focus,
.contact .inner .form-wrapper .form .input-wrapper textarea:focus {
  outline: 2px solid var(--red);
}
.contact .inner .form-wrapper .form .input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}
.contact .inner .form-wrapper .form .input-wrapper > div {
  width: calc(50% - 6px);
}
.contact .inner .form-wrapper .form .button {
  margin-top: 26px;
  border: 0;
  min-width: 164px;
  font-family: --var(--font-family);
  cursor: pointer;
}
.contact .inner .form-wrapper .form .button:focus {
  outline: 2px solid var(--black);
}
.contact .inner .contact-map {
  flex-shrink: 0;
  width: 460px;
  max-width: 100%;
  height: auto;
}
.contact .inner .contact-map .map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.footer span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin: 32px 0;
}

.section-text .container {
  width: 760px;
  max-width: 100%;
}
.section-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 64px auto;
  text-align: center;
  color: var(--black);
  max-width: 800px;
}
.section-text :is(p),
.section-text :is(li) {
  text-align: justify;
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-text :is(p) :is(a),
.section-text :is(li) :is(a) {
  text-decoration: underline;
  color: inherit;
  transition: all 0.3s ease;
}
.section-text :is(p) :is(a):hover,
.section-text :is(li) :is(a):hover {
  background-color: #eee;
}
.section-text :is(ul, ol) {
  margin-left: 20px;
  margin-bottom: 16px;
}
.section-text :is(h2, h3, h4, h5, h6) {
  margin-top: 48px;
  margin-bottom: 24px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  /* Hero */
  .hero {
    border-right: none;
    padding-top: 64px;
  }
  .hero .wrapper {
    flex-direction: column-reverse;
    padding-left: 0;
    gap: 32px;
  }
  .hero .wrapper figure {
    margin: 0 auto;
    padding: 0 16px;
  }
  .hero .wrapper figure img {
    margin: 0;
    max-width: 100%;
    height: auto;
  }
  .hero .wrapper .claim {
    text-align: center;
    padding: 0 16px 64px 16px;
  }
  .hero .wrapper .claim span {
    font-size: 16px;
    line-height: 1.3;
  }
  .hero .wrapper .claim h1 {
    font-size: 40px;
    line-height: normal;
  }
  .hero .wrapper .claim h2 {
    font-size: 24px;
    line-height: normal;
  }
  .hero .wrapper .claim .button {
    margin-top: 24px;
  }
  /* Boxes */
  .boxes {
    width: 100%;
    margin: 32px auto;
  }
  .boxes .inner {
    flex-wrap: wrap;
    padding: 32px 16px;
  }
  .boxes .inner .box {
    width: calc(50% - 24px); /* 2 cols on tablet */
  }
  .boxes .inner .line {
    display: none;
  }
  /* Media Text */
  .media-text .inner {
    flex-direction: column;
    gap: 64px;
    padding: 0 16px;
  }
  .media-text .inner figure {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .media-text .inner figure img {
    max-width: 100%;
    height: auto;
  }
  .media-text .inner .wrapper h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .media-text .inner .wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 64px;
  }
  /* Our Offer */
  .our-offer .box-wrapper {
    padding: 0;
  }
  .our-offer .box-wrapper .box {
    width: calc(50% - 8px);
  }
  /* Contact */
  .contact .inner {
    flex-direction: column;
  }
  .contact .inner .contact-info,
  .contact .inner .contact-map {
    width: 100%;
  }
  .contact .inner .form-wrapper .form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  /* Mobile specific adjustments */
  .boxes .inner .box {
    width: 100%;
  }
  .our-offer .title {
    font-size: 32px;
    margin-bottom: 48px;
  }
  .our-offer .box-wrapper .box {
    width: 100%;
  }
  /* Contact */
  .contact .inner .inner-info {
    flex-direction: column;
  }
  .contact .inner .inner-info .col {
    width: 100%;
  }
  .contact .inner .inner-info .col p {
    margin-left: 0;
  }
  .contact .inner .form-wrapper .form .input-wrapper {
    flex-direction: column;
  }
  .contact .inner .form-wrapper .form .input-wrapper > div {
    width: 100%;
  }
}

.claim p {margin-bottom:0px; margin-top:0px;}

/*# sourceMappingURL=styles.css.map */
