/* base */
@font-face {
  font-family: Figtree;
  src: url('/fonts/figtree-regular.woff2') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Figtree;
  src: url('/fonts/figtree-medium.woff2') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Figtree;
  src: url('/fonts/figtree-semibold.woff2') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Figtree;
  src: url('/fonts/figtree-bold.woff2') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

:root {
  --main-color: #c2aa7a;
  --alt-text-color: #555c62;
  --border-color: gainsboro;
  --placeholder-color: #757575;
  --alt-text-light-color: #a7a7a7;
  --main-color-light: #f2d499;
  --alt-bg-color: #f0f0f0;
  --text-color: #000;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --navigate: .75s var(--ease)
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background-color: #fff
}

[transitioning] {
  scroll-behavior: auto
}

body {
  margin: unset;
  color: var(--text-color);
  font-family: Figtree, sans-serif;
  font-size: 1.125rem;
  line-height: 1.2
}

::-webkit-scrollbar {
  display: none
}

/* scrollbar */
app-scrollbar {
  position: fixed;
  top: 50svh;
  right: calc(3.75vw - 2.75px / 2);
  transform: translateY(-50%);
  width: 2.75px;
  height: 72px;
  background: rgba(0, 0, 0, .08);
  border-radius: 1.5px;
  z-index: 2;
  pointer-events: none;
  transition: background-color var(--navigate)
}

app-scrollbar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--scrollbar-height, 0);
  background: var(--text-color);
  border-radius: inherit;
  transition: background-color var(--navigate)
}

[transitioning] app-scrollbar span {
  transition: background-color var(--navigate),
    height var(--navigate)
}

app-scrollbar[hero-visible] {
  background: rgba(255, 255, 255, .2)
}

app-scrollbar[hero-visible] span {
  background: #fff
}

main {
  z-index: 1;
  width: 100%;
  position: relative;
  display: block;
  background-color: #fff;
  transition: opacity var(--navigate)
}

main+main {
  position: fixed;
  top: 0;
  opacity: 0;
  width: 100%
}

[transitioning] main+main {
  opacity: 1
}

h1 {
  margin-block: 0;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 1.2
}

h2 {
  margin-block: 0;
  font-size: 2.6875rem;
  font-weight: 600;
  line-height: 1.2
}

p {
  margin: unset;
  font-weight: 500
}

button {
  border: unset;
  font-family: inherit;
  background: unset;
  cursor: pointer
}

a {
  color: var(--text-color);
  letter-spacing: .75px;
  padding: 0;
  line-height: 1.3;
  text-decoration: none;
  overflow: hidden
}

a:focus-visible,
button:focus-visible,
.uploadcare--widget__button:focus-visible {
  outline-color: var(--main-color);
  outline-offset: 1.5px;
  border-radius: .05rem;
  outline-width: 2px;
  outline-style: solid
}

blockquote {
  row-gap: 1rem;
  border-left: 2px solid var(--text-color);
  flex-direction: column;
  margin: unset;
  padding: 0 0 .25rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex
}

/* app styles */
html:has(.header[open]) {
  overflow-y: hidden
}

[class$="_landing-section"] {
  box-sizing: border-box;
  height: 100vh;
  padding-top: 8.5rem;
  z-index: 0;
  color: #fff;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative
}

.landing-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

input,
textarea {
  font: inherit
}

input:focus,
textarea:focus {
  outline: none
}

/* link styles */
.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none
}

.link::before {
  content: ''
}

.link[aria-current="page"]::before,
.link[aria-current="page"]::after {
  transform: scale3d(1, 1, 1)
}

.underline-trail::before {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform var(--navigate);
  height: 2px
}

.underline-trail:hover::before,
.legend-link:hover .underline-trail::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1)
}

/* header */
.header {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  height: 8.5rem;
  padding-inline: 4rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto
}

[transitioning] .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0
}

.header .link {
  transition: color var(--navigate)
}

.header .underline-trail::before {
  transition: transform .5s var(--ease),
    background-color var(--navigate)
}

.header-logo {
  position: relative;
  overflow: visible
}

.header-nav {
  column-gap: 2rem;
  justify-content: space-between;
  align-items: flex-end;
  display: flex
}

.header-right {
  justify-content: flex-end;
  width: 8.5rem;
  display: flex
}

.btn {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: var(--text-color);
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 20px -10px #00000040
}

.link {
  color: #fff;
  letter-spacing: .75px;
  font-weight: 600;
  position: relative;
  overflow: visible
}

.link[aria-current='page'] {
  line-height: 1.29
}

.link.light-text {
  color: var(--alt-text-color);
  line-height: 1.3;
  transition: color var(--navigate);
  overflow: hidden
}

.link.light-text:hover,
.link.light-text[aria-current="page"] {
  color: var(--text-color)
}

.link.light-text::before {
  display: none
}

.link.mobile {
  display: none
}

[invert] .link.underline-trail {
  color: var(--text-color)
}

[invert] .link.underline-trail.legend {
  font-size: 1.375rem;
  line-height: 1.1
}

.container {
  max-width: 100%;
  height: 100%;
  padding-inline: 5.5rem
}

.footer {
  column-gap: 0px;
  row-gap: 4rem;
  border-top: 1px solid var(--border-color);
  color: var(--alt-text-color);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 6.5rem 5.5rem 4.5rem;
  display: flex
}

.footer-nav {
  column-gap: 2rem;
  row-gap: 1rem;
  flex-flow: wrap;
  align-items: flex-start;
  display: flex
}

.footer-bottom {
  column-gap: 2rem;
  justify-content: space-between;
  font-weight: 500;
  display: flex
}

.footer-bottom small {
  font-size: inherit
}

.credit {
  color: var(--alt-text-color);
  transition: color var(--navigate);
  letter-spacing: 0
}

.credit:hover {
  color: var(--text-color)
}

.landing-text {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex
}

.landing-title-line {
  display: block;
  width: 100%;
  clear: left;
  margin-bottom: -.75rem;
  overflow: hidden;
  white-space: nowrap
}

.landing-bg {
  z-index: -1;
  position: absolute;
  inset: 0%;
  width: 100%
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%
}

.overlay.home {
  background-color: #00000073
}

.overlay.services {
  background-color: #0009
}

.overlay.gallery {
  background-color: #00000073
}

.overlay.about {
  background-color: #0000008c
}

.title-medium {
  font-size: 2.25rem;
  font-weight: 600
}

.title-medium.home {
  white-space: nowrap
}

.light-text {
  line-height: 1.7;
  color: var(--alt-text-color);
}

.landing-legend {
  column-gap: 5.75vw;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  height: 11rem;
  display: flex
}

.landing-legend.left-align {
  margin-right: auto
}

.landing-legend.right-align {
  margin-left: auto
}

.legend-link {
  row-gap: .15rem;
  color: var(--alt-text-light-color);
  letter-spacing: 0;
  flex-direction: column;
  transition: color var(--navigate);
  display: flex
}

.legend-link:hover {
  color: var(--alt-text-color)
}

.btn-open {
  display: none
}

.close-right-line,
.close-left-line {
  background-color: var(--text-color);
  width: 2px;
  height: 1.5rem;
  position: absolute
}

.btn-close {
  display: none
}

.nav-label,
.commercial-list-wrapper {
  display: none
}

.logo-image {
  width: 8.5rem;
  height: auto
}

.image-preview-styles,
.uploader-input {
  margin-bottom: 0;
  display: none
}

.services_faq-section {
  padding-bottom: 7.5rem
}


.home_intro-section p.title-medium {
  grid-area: span 1 / span 2 / span 1 / span 2
}

.home_intro-section p.light-text {
  grid-area: span 1 / span 1 / span 1 / span 1
}

@media screen and (min-width: 1280px) {

  .container,
  .footer {
    padding-inline: 11rem
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding-inline: 3rem
  }

  .header-nav {
    row-gap: 1.5rem;
    background-color: var(--text-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 3rem;
    position: fixed;
    inset: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 1.1s var(--ease), visibility 0s 1.1s
  }

  [open] .header-nav {
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s
  }

  .header-nav .link,
  .header-nav .nav-label {
    opacity: 0;
    transform: translateX(1.5rem);
    transition: opacity 1.7s var(--ease), transform 1.7s var(--ease)
  }

  [open] .header-nav .link:nth-child(1) {
    transition-delay: .05s
  }

  [open] .header-nav .link:nth-child(2) {
    transition-delay: .1s
  }

  [open] .header-nav .link:nth-child(3) {
    transition-delay: .15s
  }

  [open] .header-nav .link:nth-child(4) {
    transition-delay: .2s
  }

  [open] .header-nav .link:nth-child(5) {
    transition-delay: .25s
  }

  [open] .header-nav .link,
  [open] .header-nav .nav-label {
    opacity: 1;
    transform: translateX(0)
  }

  .header-right {
    display: none
  }

  .link {
    font-size: 1.75rem
  }

  .link.light-text {
    font-size: 1.125rem
  }

  .link.mobile {
    display: block
  }

  [invert] .link.underline-trail {
    color: #fff
  }

  .link.underline-trail.legend {
    color: var(--text-color)
  }

  .container,
  .footer {
    padding-left: 3rem;
    padding-right: 3rem
  }

  .landing-title-line {
    font-size: 4rem
  }

  .title-medium {
    font-size: 2.25rem
  }

  .landing-legend.left-align.container {
    column-gap: 4rem
  }

  .btn-close {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    position: absolute;
    inset: 2.75rem 3rem auto auto
  }

  .close-right-line {
    background-color: #fff;
    height: 1.25rem;
    transform: rotate(45deg)
  }

  .close-left-line {
    background-color: #fff;
    height: 1.25rem;
    transform: rotate(-45deg)
  }

  .btn-open {
    row-gap: .1875rem;
    background-color: #fff;
    border-radius: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    flex: none;
    transition: background-color var(--navigate)
  }

  [invert] .btn-open {
    background-color: var(--text-color)
  }

  .menu-line {
    width: 1rem;
    position: static;
    background-color: var(--text-color);
    height: 2px;
    transition: background-color var(--navigate)
  }

  [invert] .menu-line {
    background-color: #fff
  }

  .nav-label {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-items: center;
    height: 3rem;
    font-size: .75rem;
    display: flex;
    position: absolute;
    inset: 2.75rem auto auto 3rem
  }

  .commercial-list-wrapper,
  .landing-scroll-item.container {
    display: none
  }
}


@media screen and (max-width: 767px) {

  .header,
  .header-nav,
  .container,
  .footer {
    padding-inline: 1.75rem
  }

  .landing-title-line {
    font-size: 9vw
  }

  .title-medium {
    font-size: 2rem
  }

  .landing-legend.left-align.container {
    column-gap: 2rem
  }

  .btn-close {
    right: 1.75rem
  }

  .nav-label {
    left: 1.75rem
  }

  .title-big {
    margin-bottom: 3rem;
    font-size: 2.625rem
  }

}


@media screen and (max-width: 479px) {

  .header,
  .header-nav,
  .container,
  .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  .footer-nav {
    flex-direction: column
  }

  .landing-title-line {
    font-size: 11.25vw;
    line-height: 1.4
  }

  .landing-title-line.home {
    font-size: 9.25vw
  }

  .landing-gallery-text {
    width: 100%
  }

  .landing-legend {
    height: 12rem
  }

  .landing-legend.left-align.container,
  .landing-legend.right-align.container {
    row-gap: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
  }

  .nav-label {
    display: flex
  }

  .home_intro-section p.title-medium,
  .contact_form-section textarea,
  .contact_form-section .btn {
    grid-column: span 1 / span 1
  }

  .title-big {
    font-size: 9vw
  }
}