/* [project]/src/styles/globals.scss.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Garamond, Georgia, serif;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img, picture, video, canvas {
  max-width: 100%;
  display: block;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

@font-face {
  font-family: Ahganirya;
  src: url("/fonts/Ahganirya.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicBook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicDemi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futura PT;
  src: url("/fonts/FuturaCyrillicHeavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Garamond;
  src: url("/fonts/GaramondReg.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Garamond;
  src: url("/fonts/GaramondBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-family: Futura PT, sans-serif;
  font-size: 64px;
  font-weight: 500;
}

@media (max-width: 1023.98px) {
  h1 {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-family: Futura PT, sans-serif;
  font-size: 48px;
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-family: Futura PT, sans-serif;
  font-size: 48px;
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 32px;
  }
}

h4 {
  font-family: Futura PT, sans-serif;
  font-size: 48px;
}

@media (max-width: 767.98px) {
  h4 {
    font-size: 32px;
  }
}

h5 {
  font-family: Futura PT, sans-serif;
  font-size: 48px;
}

@media (max-width: 767.98px) {
  h5 {
    font-size: 32px;
  }
}

h6 {
  font-family: Futura PT, sans-serif;
  font-size: 48px;
}

@media (max-width: 767.98px) {
  h6 {
    font-size: 32px;
  }
}

p {
  color: #777;
  font-family: Garamond, Georgia, serif;
  font-size: 16px;
}

@media (max-width: 575.98px) {
  p {
    font-size: 15px;
  }
}

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

body {
  color: #111;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* [project]/src/components/header/header.scss.css [app-client] (css) */
.site-header {
  mix-blend-mode: normal;
  z-index: 100;
  opacity: 1;
  will-change: transform, opacity, filter;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  transition: transform .72s cubic-bezier(.16, 1, .3, 1), opacity .42s, filter .72s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  top: clamp(32px, 56px - 1.66667vw, 24px);
  left: 0;
  transform: translate3d(0, 0, 0);
}

.site-header.is-hidden {
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transform: translate3d(0, calc(-100% - 90px), 0);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .site-header.is-hidden {
    filter: none;
  }
}

.menu-backdrop {
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  background: none;
  border: 0;
  padding: 0;
  transition: opacity .28s cubic-bezier(.22, .61, .36, 1), background .28s cubic-bezier(.22, .61, .36, 1);
  position: fixed;
  inset: 0;
}

.menu-backdrop.open {
  pointer-events: auto;
  opacity: 1;
  background: #00000059;
}

.header-wrapper {
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  --mx: 50%;
  --my: 50%;
  background-color: #fff;
  border: 1px solid #ffffff1a;
  border-radius: clamp(60px, 4.16667vw - .0000038147px, 80px);
  justify-content: space-between;
  align-items: center;
  width: 92%;
  padding: clamp(10px, .833333vw - 2px, 14px) clamp(18px, 2.91667vw - 24px, 32px);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px #0000002e, inset 0 1px #ffffff2e, inset 0 -1px #0000001f;
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(5px) !important;
}

.header-wrapper > * {
  z-index: 3;
  position: relative;
}

.header-wrapper:before {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  inset: 1px;
}

.header-wrapper:after {
  content: "";
  display: none;
}

.logo {
  align-items: center;
  display: flex;
}

.logo img {
  width: auto;
  height: clamp(55px, 94px - 2.70833vw, 42px);
}

.nav {
  isolation: isolate;
  --active-x: 0px;
  --active-y: 0px;
  --active-w: 0px;
  --active-h: 0px;
  --active-o: 0;
  --hover-x: 0px;
  --hover-y: 0px;
  --hover-w: 0px;
  --hover-h: 0px;
  --hover-o: 0;
  align-items: center;
  gap: clamp(8px, 1.25vw - 10px, 14px);
  display: flex;
  position: relative;
}

.nav-indicator {
  pointer-events: none;
  z-index: 1;
  will-change: transform, width, height, opacity;
  border-radius: 999px;
  transition: transform .52s cubic-bezier(.22, .61, .36, 1), width .52s cubic-bezier(.22, .61, .36, 1), height .52s cubic-bezier(.22, .61, .36, 1), opacity .22s;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-indicator--active {
  width: var(--active-w);
  height: var(--active-h);
  transform: translate3d(var(--active-x), var(--active-y), 0);
  opacity: var(--active-o);
  background-color: #114135;
  background-image: linear-gradient(#ffffff24, #ffffff08), radial-gradient(260px 200px at 30% 20%, #ffffff29, #0000 60%);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  background-origin: padding-box;
  background-clip: border-box;
  border: 1px solid #ffffff42;
  box-shadow: 0 12px 26px #0000002e, inset 0 1px #ffffff38, inset 0 -1px #00000038;
}

.nav-indicator--hover {
  width: var(--hover-w);
  height: var(--hover-h);
  transform: translate3d(var(--hover-x), var(--hover-y), 0);
  opacity: var(--hover-o);
  background: #114135;
  border: 1px solid #ffffff2e;
  box-shadow: 0 12px 26px #0000001f, inset 0 1px #fff3;
}

.nav-link {
  z-index: 2;
  color: #000;
  text-shadow: 0 1px 10px #0000002e;
  background: none;
  border: 1px solid #0000;
  border-radius: clamp(28px, 2.5vw - 8px, 40px);
  padding: clamp(10px, 1.04167vw - 5px, 15px) clamp(22px, 4.16667vw - 38px, 42px);
  font-family: Futura PT, sans-serif;
  font-size: clamp(22px, 2.08333vw - 8px, 32px);
  font-weight: 500;
  transition: color .22s, transform .22s;
  position: relative;
}

.nav-link:hover {
  color: #ffffffeb;
}

.nav-link.active {
  color: #fff;
}

.menu-toggle {
  cursor: pointer;
  z-index: 110;
  background: #ffffff24;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: background .22s, box-shadow .22s, transform .22s;
  display: none;
  box-shadow: 0 10px 22px #00000024, inset 0 1px #ffffff2e;
}

.menu-toggle:hover {
  background: #ffffff2e;
  transform: translateY(-1px);
}

.menu-toggle .bar {
  background: #163d2a;
  border-radius: 2px;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  transition: transform .32s cubic-bezier(.22, .61, .36, 1), opacity .22s;
  display: block;
}

.menu-toggle.open .bar:first-child {
  transform: translateY(8px)rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px)rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-link {
  color: #000;
  border: 1px solid #0000;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: Futura PT, sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.mobile-link:hover {
  background: #ffffff24 linear-gradient(#ffffff2e, #ffffff0f);
  border-color: #ffffff2e;
}

.mobile-link.active {
  color: #fff;
  background-color: #173e35;
  background-image: linear-gradient(#ffffff24, #ffffff08), radial-gradient(240px 180px at 30% 20%, #ffffff29, #0000 60%);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  background-origin: padding-box;
  background-clip: border-box;
  border-color: #fff3;
  box-shadow: 0 12px 24px #0000002e, inset 0 1px #ffffff2e;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-wrapper {
    border-radius: 999px;
    padding: 12px 18px;
  }

  .logo img {
    height: 38px;
  }

  .mobile-nav {
    z-index: 100;
    will-change: transform, opacity;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    border: 1px solid #ffffff38;
    border-radius: 24px;
    width: 92%;
    max-width: 1400px;
    max-height: 0;
    padding: 12px;
    transition: opacity .32s cubic-bezier(.22, .61, .36, 1), transform .42s cubic-bezier(.22, .61, .36, 1), max-height .52s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .42s;
    display: block;
    position: relative;
    overflow: hidden;
    transform: translateY(-14px)scale(.985);
    box-shadow: 0 18px 45px #0000002e, inset 0 1px #ffffff40;
  }

  .mobile-nav .mobile-link {
    opacity: 0;
    transition: opacity .32s cubic-bezier(.22, .61, .36, 1), transform .42s cubic-bezier(.22, .61, .36, 1), background .2s, color .2s;
    transform: translateY(-6px);
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 520px;
    transition: opacity .32s cubic-bezier(.22, .61, .36, 1), transform .42s cubic-bezier(.22, .61, .36, 1), max-height .52s cubic-bezier(.22, .61, .36, 1), visibility;
    transform: translateY(0)scale(1);
  }

  .mobile-nav.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav.open .mobile-link:first-child {
    transition-delay: 40ms;
  }

  .mobile-nav.open .mobile-link:nth-child(2) {
    transition-delay: 80ms;
  }

  .mobile-nav.open .mobile-link:nth-child(3) {
    transition-delay: .12s;
  }

  .mobile-nav.open .mobile-link:nth-child(4) {
    transition-delay: .16s;
  }

  .mobile-nav.open .mobile-link:nth-child(5) {
    transition-delay: .2s;
  }

  .mobile-nav.open .mobile-link:nth-child(6) {
    transition-delay: .24s;
  }

  .mobile-nav.open .mobile-link:nth-child(7) {
    transition-delay: .28s;
  }

  .mobile-nav.open .mobile-link:nth-child(8) {
    transition-delay: .32s;
  }
}

/* [project]/src/components/ScrollToTop/ScrollToTop.module.scss.module.css [app-client] (css) */
.ScrollToTop-module-scss-module__fwlyfG__btn {
  z-index: 120;
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  background: #114135;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  place-items: center;
  width: clamp(44px, 1.66667vw + 20px, 52px);
  height: clamp(44px, 1.66667vw + 20px, 52px);
  transition: opacity .24s, transform .32s cubic-bezier(.22, .61, .36, 1), box-shadow .22s;
  display: grid;
  position: fixed;
  bottom: 24px;
  right: 24px;
  transform: translateY(10px)scale(.98);
  box-shadow: 0 14px 30px #0000002e, inset 0 1px #ffffff2e;
}

.ScrollToTop-module-scss-module__fwlyfG__btn:hover {
  transform: translateY(0)scale(1);
  box-shadow: 0 18px 38px #00000038, inset 0 1px #fff3;
}

.ScrollToTop-module-scss-module__fwlyfG__btn:active {
  transform: translateY(1px)scale(.98);
}

.ScrollToTop-module-scss-module__fwlyfG__btn:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #163d2aa6;
}

.ScrollToTop-module-scss-module__fwlyfG__show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)scale(1);
}

.ScrollToTop-module-scss-module__fwlyfG__icon {
  fill: #fff;
}

@media (max-width: 767.98px) {
  .ScrollToTop-module-scss-module__fwlyfG__btn {
    bottom: 16px;
    right: 16px;
  }
}

/* [project]/src/components/footer/Footer.module.scss.module.css [app-client] (css) */
.Footer-module-scss-module__kqmR4W__footer {
  color: #c2c2c2;
  background-color: #1a4d3e;
  padding: 60px 60px 0;
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__footer {
    padding: 40px 20px 0;
  }
}

.Footer-module-scss-module__kqmR4W__container {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
  display: grid;
}

@media (max-width: 1024px) {
  .Footer-module-scss-module__kqmR4W__container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__container {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.Footer-module-scss-module__kqmR4W__column {
  flex-direction: column;
  display: flex;
}

.Footer-module-scss-module__kqmR4W__column:first-child {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__column:first-child {
    align-items: center;
  }
}

.Footer-module-scss-module__kqmR4W__column:nth-child(2) {
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.Footer-module-scss-module__kqmR4W__column:last-child {
  justify-content: center;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__column:last-child {
    align-items: center;
  }
}

.Footer-module-scss-module__kqmR4W__logo {
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  display: flex;
}

.Footer-module-scss-module__kqmR4W__auroraText {
  letter-spacing: 4px;
  color: #c2c2c2;
  font-size: 32px;
  font-weight: 400;
}

.Footer-module-scss-module__kqmR4W__villasText {
  letter-spacing: 8px;
  color: #c2c2c2;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
}

.Footer-module-scss-module__kqmR4W__socialLinks {
  gap: 10px;
  display: flex;
}

.Footer-module-scss-module__kqmR4W__socialIcon {
  transition: all .3s;
}

.Footer-module-scss-module__kqmR4W__socialIcon svg {
  width: 30px;
  height: 30px;
}

.Footer-module-scss-module__kqmR4W__socialIcon:hover {
  color: #1a4d3e;
  transform: translateY(-2px);
}

.Footer-module-scss-module__kqmR4W__contactLink {
  color: #c2c2c2;
  letter-spacing: .5px;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  transition: all .3s;
}

.Footer-module-scss-module__kqmR4W__contactLink:hover {
  color: #c2c2c2;
  text-decoration: none;
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__contactLink {
    font-size: 18px;
  }
}

.Footer-module-scss-module__kqmR4W__nav {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  display: flex;
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__nav {
    align-items: center;
  }
}

.Footer-module-scss-module__kqmR4W__navLink {
  color: #c2c2c2;
  letter-spacing: .5px;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  transition: all .3s;
}

.Footer-module-scss-module__kqmR4W__navLink:hover {
  color: #c2c2c2;
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .Footer-module-scss-module__kqmR4W__navLink {
    font-size: 18px;
  }

  .Footer-module-scss-module__kqmR4W__navLink:hover {
    transform: translateX(0);
  }
}

.Footer-module-scss-module__kqmR4W__copyright {
  text-align: center;
  padding: 24px 0;
}

.Footer-module-scss-module__kqmR4W__copyright p {
  color: #c2c2c2;
  letter-spacing: .3px;
  margin: 0;
  font-family: Garamond, Georgia, serif;
  font-size: 22px;
  font-weight: 300;
}

.Footer-module-scss-module__kqmR4W__privacyLink {
  color: #c2c2c2;
  text-decoration: none;
  transition: all .3s;
}

.Footer-module-scss-module__kqmR4W__privacyLink:hover {
  color: #c2c2c2;
  text-decoration: none;
}

/*# sourceMappingURL=src_1df1b71d._.css.map*/