/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 :root {
  --eggen-blue: #0090C6;
  --eggen-blue-dark: #00749F;
  --eggen-dark: #20282D;
  --eggen-gray: #5F6B73;
  /* --eggen-light: #F5F7F8; */
  --eggen-light: #e9ebec;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--eggen-blue);
  --bs-btn-border-color: var(--eggen-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--eggen-blue-dark);
  --bs-btn-hover-border-color: var(--eggen-blue-dark);
  --bs-btn-focus-shadow-rgb: 0, 144, 198;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--eggen-blue-dark);
  --bs-btn-active-border-color: var(--eggen-blue-dark);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--eggen-blue);
  --bs-btn-disabled-border-color: var(--eggen-blue);
}

.navbar {
  border-bottom: 2px solid color-mix(in srgb, var(--eggen-blue) 28%, white);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--eggen-blue) 14%, transparent);
}

.navbar .nav-link {
  color: var(--eggen-dark);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
  color: var(--eggen-blue);
}

.navbar-top {
  display: flex;
  align-items: center;
  min-width: 0;
}

.navbar-brand {
  min-width: 0;
  margin-right: 0.75rem;
}

.navbar-brand img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 100%;
}

.navbar-toggler {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger__icon {
  display: block;
  width: 34px;
  height: 4px;
  margin: 4px 0;
  border-radius: 1px;
  background-color: #444446;
  transition: 0.5s;
}

.navbar-toggler[aria-expanded="true"] .icon1 {
  transform: translateY(11px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .icon2 {
  opacity: 0;
  transform: translateX(-50px);
}

.navbar-toggler[aria-expanded="true"] .icon3 {
  transform: translateY(-13px) rotate(45deg);
}

@media (max-width: 767.98px) {
  .navbar-top {
    width: 100%;
  }

  .navbar-brand {
    flex: 1 1 0%;
  }

  .navbar .nav-link {
    padding: 10px;
  }
}

/* .home-block {
  min-height: calc(100svh - 4.5rem);
} */

.home-block--alt {
  background-color: var(--eggen-light);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 1fr);
  min-height: calc(100svh - 4.5rem);
  background-color: #daddea;
  background-image: var(--home-intro-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-intro__media {
  min-height: 0;
}

.home-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 3.25rem 4.5rem 2.75rem;
  background: color-mix(in srgb, #daddea 78%, transparent);
}

.home-intro__accent {
  position: relative;
}

.home-intro__accent::before,
.home-intro__accent::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 78%;
  height:calc(80%);
  /* height: calc(100% + 0.4rem); */
  /* opacity: 0.38; */
}

.home-intro__accent::before {
  /* top: 1.6rem;
  left: -2.4rem;
  background: var(--eggen-blue); */
  top: 5rem;
  left: -1.6rem;
  background: #00A0CD;
}

.home-intro__accent::after {
  top: -1.8rem;
  right: -1.5rem;
  background: #0549D5;
  /* top: -1.6rem;
  right: -2.4rem;
  background: var(--eggen-blue-dark); */
}

.home-intro__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--eggen-blue) 18%, white);
  border-left: 3px solid var(--eggen-blue);
  padding: 1.75rem 1.75rem 1.5rem;
}

.home-intro__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eggen-gray);
}

.home-intro__title {
  margin: 0 0 1.25rem;
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.home-intro__text {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

@media (max-width: 767.98px) {
  .home-intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-intro__media {
    min-height: 40vh;
  }

  .home-intro__copy {
    padding: 2.5rem 1.5rem 3rem;
  }

  .home-intro__accent::before,
  .home-intro__accent::after {
    width: 72%;
    height: calc(100% + 0.15rem);
    opacity: 0.32;
  }

  .home-intro__accent::before {
    top: 1.1rem;
    left: -0.85rem;
  }

  .home-intro__accent::after {
    top: -1.1rem;
    right: -0.85rem;
  }
}

.home-projects {
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  min-height: calc(70svh);
}

.home-projects__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.home-projects__text {
  margin: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.home-projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home-projects__grid figure {
  margin: 0;
}

.home-projects__grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-projects__grid figcaption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--eggen-dark);
}

@media (max-width: 767.98px) {
  .home-projects {
    padding: 2.5rem 0 3rem;
  }

  .home-projects__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.home-lots {
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
}

.home-lots__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  color: var(--eggen-dark);
}

.home-lots__copy {
  /* max-width: 46rem; */
  margin: 0 auto;
}

.home-lots__copy p {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.home-lots__sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

.home-lots__sizes .btn {
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.9rem 1rem;
}

.home-lots__location {
  max-width: 46rem;
  margin: 2rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--eggen-dark);
}

.home-lots__media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .home-lots {
    padding: 2.5rem 0 3rem;
  }

  .home-lots__sizes {
    grid-template-columns: 1fr;
  }
}

.home-land {
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
}

.home-land__title {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.home-land__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.home-land__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--eggen-blue) 18%, white);
  border-left: 3px solid var(--eggen-blue);
  padding: 1.5rem 1.5rem 1.25rem;
}

.home-land__box p {
  margin: 0 0 1.85rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--eggen-gray);
}

.home-land__box p:last-child {
  margin-bottom: 0;
}

.home-land__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.home-land__cta {
  text-align: center;
}

.home-land__cta .btn {
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
}

@media (max-width: 767.98px) {
  .home-land {
    padding: 2.5rem 0 3rem;
  }

  .home-land__row {
    grid-template-columns: 1fr;
  }
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
  background: var(--eggen-dark);
  color: #e8eef1;
}

.site-footer__inner {
  padding: 3rem 0 2.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #c5d0d5;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 0.4rem;
}

.site-footer__link {
  color: #c5d0d5;
  text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--eggen-blue);
}

.site-footer__bar {
  padding: 0.75rem 0;
  border-top: 1px solid color-mix(in srgb, var(--eggen-blue) 35%, var(--eggen-dark));
  font-size: 0.85rem;
  color: #9aa8ae;
  text-align: center;
}

.site-footer__bar-sep {
  margin: 0 0.45rem;
}

.site-footer__bar-link {
  color: inherit;
  text-decoration: none;
}

.site-footer__bar-link:hover {
  color: #fff;
}

.site-footer__disclaimer {
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .site-footer__inner {
    padding: 2.25rem 0 1.75rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.projects-page {
  padding: 3rem 0 4.5rem;
}

.projects-page__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.project-filters__btn {
  border: 1.5px solid var(--eggen-blue);
  border-radius: 999px;
  background: #fff;
  color: var(--eggen-blue);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
}

.project-filters__btn:hover,
.project-filters__btn:focus-visible {
  background: color-mix(in srgb, var(--eggen-blue) 10%, white);
}

.project-filters__btn.is-active {
  background: var(--eggen-blue);
  color: #fff;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-gallery__item {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.project-gallery__item:focus-visible {
  outline: 2px solid var(--eggen-blue);
  outline-offset: 3px;
}

.project-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .project-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .projects-page {
    padding: 2rem 0 3rem;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.contact-page {
  padding: 3rem 0 4.5rem;
}

.contact-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.contact-page__intro {
  margin: 0 0 2rem;
  max-width: 46rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.contact-page__notice {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--eggen-blue) 12%, white);
  color: var(--eggen-dark);
  font-weight: 600;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(14rem, 0.7fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-form__errors {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: #fdecea;
  color: #8a1f11;
}

.contact-form__errors p {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.contact-form__errors ul {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-form__field {
  margin-bottom: 1rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.contact-form .btn {
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.contact-page__aside {
  background: var(--eggen-light);
  padding: 1.5rem 1.35rem;
}

.contact-page__aside-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.contact-page__aside-title:not(:first-child) {
  margin-top: 1.5rem;
}

.contact-page__aside p {
  margin: 0;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.contact-page__aside a {
  color: var(--eggen-blue);
  text-decoration: none;
}

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

@media (max-width: 767.98px) {
  .contact-page {
    padding: 2rem 0 3rem;
  }

  .contact-page__layout {
    grid-template-columns: 1fr;
  }
}

.lot-page {
  padding: 1.5rem 0 4rem;
  background: #fff;
}

.lot-page__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--eggen-gray);
}

.lot-page__crumb a {
  color: var(--eggen-blue);
  text-decoration: none;
}

.lot-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.5rem;
  gap: 2rem;
  align-items: start;
}

.lot-gallery__hero {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.lot-gallery__main {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--eggen-light);
}

.lot-gallery__count {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.25rem;
  background: rgba(20, 24, 26, 0.72);
  color: #fff;
  font-size: 0.85rem;
  pointer-events: none;
}

body.lot-lightbox-open {
  overflow: hidden;
}

.lot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  background: rgba(18, 22, 25, 0.96);
  color: #fff;
}

.lot-lightbox[hidden] {
  display: none;
}

.lot-lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.lot-lightbox__counter {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.lot-lightbox__close,
.lot-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lot-lightbox__close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.lot-lightbox__close:hover,
.lot-lightbox__nav:hover,
.lot-lightbox__thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lot-lightbox__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 4.5rem;
  overflow: hidden;
}

.lot-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.lot-lightbox__image.is-zoomed {
  cursor: zoom-out;
  touch-action: none;
}

.lot-lightbox__image.is-dragging {
  cursor: grabbing;
}

.lot-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}

.lot-lightbox__nav--prev {
  left: 0.85rem;
}

.lot-lightbox__nav--next {
  right: 0.85rem;
}

.lot-lightbox__thumbs {
  display: flex;
  justify-content: safe center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1.15rem;
  overflow-x: auto;
}

.lot-lightbox__thumb {
  width: 5.5rem;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
}

.lot-lightbox__thumb.is-active {
  border-color: #fff;
}

.lot-lightbox__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .lot-lightbox__stage {
    padding: 0 3.25rem;
  }

  .lot-lightbox__thumb {
    width: 4.25rem;
  }
}

.lot-gallery__thumbs-row {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) 2.25rem;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.5rem;
}

.lot-gallery__thumbs-row.is-static {
  grid-template-columns: minmax(0, 1fr);
}

.lot-gallery__thumbs-row.is-static .lot-gallery__shift {
  display: none;
}

.lot-gallery__thumbs-viewport {
  overflow: hidden;
  container-type: inline-size;
}

.lot-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  transition: transform 0.28s ease;
}

.lot-gallery__thumb {
  flex: 0 0 calc((100cqi - 1rem) / 3);
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
}

.lot-gallery__thumbs-row.is-static .lot-gallery__thumb {
  flex: 1 1 0;
}

.lot-gallery__shift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--eggen-blue);
  cursor: pointer;
}

.lot-gallery__shift:hover {
  background: var(--eggen-blue-dark);
}

.lot-gallery__thumb.is-active {
  border-color: var(--eggen-blue);
}

.lot-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lot-page__header {
  margin: 1.5rem 0 0;
}

.lot-page__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eggen-blue);
}

.lot-page__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 600;
  color: var(--eggen-dark);
}

.lot-page__city {
  margin: 0.2rem 0 0.75rem;
  color: var(--eggen-gray);
}

.lot-page__price {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--eggen-dark);
}

.lot-page__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--eggen-gray);
}

.lot-page__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--eggen-dark);
}

.lot-section {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e4eaed;
}

.lot-section h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.lot-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--eggen-gray);
}

.lot-section p {
  margin: 0 0 0.9rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.lot-specs {
  display: grid;
  margin: 0;
}

.lot-specs div {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eef2f4;
}

.lot-specs dt {
  margin: 0;
  color: var(--eggen-gray);
}

.lot-specs dd {
  margin: 0;
  color: var(--eggen-dark);
}

.lot-map {
  overflow: hidden;
  background: var(--eggen-light);
}

.lot-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.lot-map__caption {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.lot-map__caption a {
  color: var(--eggen-blue);
}

.lot-popularity {
  background: var(--eggen-light);
  padding: 1.25rem 1.35rem;
  border-top: none;
}

.lot-popularity h2 {
  margin-bottom: 0.4rem;
}

.lot-popularity p {
  margin: 0;
}

.lot-cta {
  position: sticky;
  top: 5.5rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--eggen-blue) 22%, white);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--eggen-blue) 10%, transparent);
}

.lot-cta__price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--eggen-dark);
}

.lot-cta__meta {
  margin: 0.25rem 0 1rem;
  font-size: 0.92rem;
  color: var(--eggen-gray);
}

.lot-cta .btn {
  border-radius: 0.5rem;
  font-weight: 600;
}

.lot-cta__note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--eggen-gray);
}

@media (max-width: 767.98px) {
  .lot-page {
    padding: 1rem 0 3rem;
  }

  .lot-page__layout {
    grid-template-columns: 1fr;
  }

  .lot-cta {
    position: static;
  }

  .lot-specs div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.lots-index {
  padding: 3rem 0 4.5rem;
}

.lots-index__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.lots-index__copy {
  max-width: 42rem;
  margin: 0 0 1.5rem;
}

.lots-index__copy p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.lots-index__copy h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--eggen-dark);
}

.lots-index__copy h2:first-of-type {
  margin-top: 1.25rem;
}

.lots-index__copy ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.lots-index__hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin-bottom: 2rem;
}

.lots-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.lot-card {
  display: flex;
  flex-direction: column;
  background: #e4eaed;
  border: 1px solid #e4eaed;
}

.lot-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lot-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.25rem;
}

.lot-card__kicker {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eggen-blue);
}

.lot-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.lot-card__address,
.lot-card__meta {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--eggen-gray);
}

.lot-card__price {
  margin: 0.75rem 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--eggen-dark);
}

.lot-card .btn {
  margin-top: auto;
  align-self: flex-start;
  border-radius: 0.5rem;
  font-weight: 600;
}

.lots-index__map {
  margin-top: 2.5rem;
}

.lots-index__map h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.lots-index__land {
  scroll-margin-top: 5.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--eggen-blue) 18%, white);
}

.lots-index__land h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--eggen-dark);
}

.lots-index__land-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.lots-index__land-copy p {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.lots-index__land-copy .btn {
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.lots-index__land-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .lots-index {
    padding: 2rem 0 3rem;
  }

  .lots-index__hero {
    aspect-ratio: 16 / 10;
  }

  .lots-index__grid {
    grid-template-columns: 1fr;
  }

  .lots-index__land-row {
    grid-template-columns: 1fr;
  }
}

.contact-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__privacy {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--eggen-gray);
}

.contact-form__privacy a {
  color: var(--eggen-blue);
}

.legal-page {
  padding: 3rem 0 4.5rem;
}

.legal-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--eggen-dark);
}

.legal-page__lead {
  margin: 0 0 0.5rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.legal-page__meta {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--eggen-gray);
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.legal-page p,
.legal-page li {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eggen-gray);
}

.legal-page a {
  color: var(--eggen-blue);
}

.legal-page ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

@media (max-width: 767.98px) {
  .legal-page {
    padding: 2rem 0 3rem;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 1080;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 28rem;
  margin-right: auto;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--eggen-blue) 28%, white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--eggen-dark) 16%, transparent);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--eggen-dark);
}

.cookie-banner__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--eggen-gray);
}

.cookie-banner__text a {
  color: var(--eggen-blue);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--eggen-blue);
  font: inherit;
  line-height: inherit;
  text-decoration: underline;
  cursor: pointer;
}


