/* Standalone layout — separate from Wix desktop grid (mobile only) */
@media (max-width: 1000px) {
  #MOBILE_SITE {
    display: block;
    width: 100%;
    color: #f2f2f2;
    background: #100f0e;
    font-family: futura-lt-w01-book, futura, "Trebuchet MS", sans-serif;
    line-height: 1.5;
  }
}

.eda-mobile {
  padding: 0 0 32px;
}

.eda-hero,
.eda-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eda-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(130vw, 560px);
  height: min(100vw, 420px);
  background: radial-gradient(
    ellipse at center,
    rgba(110, 82, 52, 0.22) 0%,
    rgba(110, 82, 52, 0.08) 38%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.eda-section > * {
  position: relative;
  z-index: 1;
}

.eda-hero {
  padding-top: 20px;
  text-align: left;
  background:
    radial-gradient(ellipse 130% 90% at 50% 15%, rgba(110, 82, 52, 0.28), transparent 68%),
    #100f0e;
}

.eda-hero .eda-figure {
  margin: 12px 0 0;
  text-align: center;
}

.eda-section__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  line-height: 1.15;
  font-weight: 400;
  color: #ffffff;
}

.eda-hero .eda-section__title {
  margin-bottom: 8px;
}

.eda-hero .eda-card__title,
.eda-hero .eda-subtitle {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 300;
  color: #999999;
  font-family: poppins-extralight, poppins, sans-serif;
}

.eda-section .eda-section__title {
  font-size: clamp(1.5rem, 6vw, 1.875rem);
}

.eda-text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: #999999;
  font-family: poppins-extralight, poppins, sans-serif;
}

.eda-subtitle,
.eda-card__title {
  margin: 20px 0 8px;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #ffffff;
  font-family: poppins-semibold, poppins, sans-serif;
}

.eda-card {
  margin: 24px 0;
  padding: 0;
}

.eda-card .eda-card__title {
  margin-top: 0;
}

.eda-card .eda-figure {
  margin-bottom: 16px;
}

.eda-list {
  margin: 8px 0 20px;
  padding-left: 1.25rem;
  color: #cccccc;
}

.eda-list li {
  margin: 0 0 10px;
  line-height: 1.5;
}

.eda-section--services {
  padding-top: 28px;
  padding-bottom: 36px;
}

.eda-section--services .eda-section__title {
  margin-bottom: 16px;
}

.eda-section--services .eda-text {
  margin-bottom: 22px;
}

.eda-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.eda-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  padding: 18px 20px 18px 28px;
  border-radius: 20px;
  background: rgb(31, 31, 31);
  box-sizing: border-box;
  overflow: hidden;
}

.eda-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  border-radius: 20px 0 0 20px;
}

.eda-service-card--gold::before {
  background: rgb(242, 221, 156);
}

.eda-service-card--green::before {
  background: rgb(138, 167, 136);
}

.eda-service-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #ffffff;
  font-family: poppins-semibold, poppins, sans-serif;
}

.eda-service-card__text {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #999999;
  font-family: poppins-extralight, poppins, sans-serif;
}

.eda-service-card--step {
  min-height: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

.eda-service-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eda-service-card__step {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(242, 221, 156);
  color: rgb(16, 15, 14);
  font-size: 1rem;
  font-family: poppins-semibold, poppins, sans-serif;
  line-height: 1;
}

.eda-service-card--green .eda-service-card__step {
  background: rgb(138, 167, 136);
}

.eda-service-card--step .eda-service-card__title {
  flex: 1;
  min-width: 0;
}

.eda-figure {
  margin: 20px 0;
  text-align: center;
  overflow: visible;
}

#MOBILE_SITE .eda-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

#MOBILE_SITE img {
  object-fit: contain !important;
  max-height: none !important;
}

.eda-mobile--about .eda-hero .eda-text {
  text-align: center;
}

.eda-section--contact {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 40px;
}

.eda-section--contact .eda-section__title {
  margin-bottom: 12px;
}

.eda-contact-intro {
  margin: 0 auto 24px;
  max-width: 34rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

.eda-contact-form {
  margin: 0 auto;
  max-width: 28rem;
  text-align: left;
}

.eda-contact-form__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px 20px;
  border-radius: 22px;
  background: rgba(38, 39, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.eda-contact-form__field {
  display: block;
}

#MOBILE_SITE .eda-contact-form input,
#MOBILE_SITE .eda-contact-form textarea,
#PAGES_CONTAINER .eda-contact-form input,
#PAGES_CONTAINER .eda-contact-form textarea,
.eda-contact-form input,
.eda-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0 !important;
  outline: none;
  background: #ffffff !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a;
  font: inherit;
  font-size: 1rem;
  font-family: poppins-extralight, poppins, sans-serif;
  appearance: none;
  -webkit-appearance: none;
}

#MOBILE_SITE .eda-contact-form input,
#PAGES_CONTAINER .eda-contact-form input,
.eda-contact-form input {
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
}

#MOBILE_SITE .eda-contact-form input::placeholder,
#MOBILE_SITE .eda-contact-form textarea::placeholder,
#PAGES_CONTAINER .eda-contact-form input::placeholder,
#PAGES_CONTAINER .eda-contact-form textarea::placeholder,
.eda-contact-form input::placeholder,
.eda-contact-form textarea::placeholder {
  color: #9a9a9a !important;
  opacity: 1;
}

#MOBILE_SITE .eda-contact-form textarea,
#PAGES_CONTAINER .eda-contact-form textarea,
.eda-contact-form textarea {
  min-height: 148px;
  padding: 18px 22px;
  border-radius: 22px;
  resize: vertical;
}

.eda-contact-form__submit {
  display: block;
  width: 100%;
  margin-top: 4px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #8aa788;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-family: poppins-semibold, poppins, sans-serif;
  cursor: pointer;
}

.eda-contact-form__submit:active {
  transform: translateY(1px);
}

.eda-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1000px) {
  /* Header: logo + burger on one row, vertically centered */
  #SITE_HEADER,
  #SITE_HEADER .kBvIHj,
  [data-mesh-id="SITE_HEADERinlineContent"] {
    width: 100% !important;
  }

  [data-mesh-id="SITE_HEADERinlineContent-gridContainer"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
    min-height: 80px !important;
    padding: 20px 20px 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box;
    grid-template: none !important;
  }

  [data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > #MENU_AS_CONTAINER_TOGGLE,
  [data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > #comp-kr3jkrsz,
  [data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > interact-element > #MENU_AS_CONTAINER_TOGGLE,
  [data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > interact-element > #comp-kr3jkrsz {
    position: relative !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    grid-area: unset !important;
    align-self: center !important;
    justify-self: auto !important;
  }

  #MENU_AS_CONTAINER_TOGGLE {
    order: 1;
    flex: 0 0 44px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 1;
  }

  #MENU_AS_CONTAINER_TOGGLE[aria-expanded="true"] {
    position: relative !important;
    z-index: 100002 !important;
  }

  #MENU_AS_CONTAINER_TOGGLE .vlJDcR {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  #MENU_AS_CONTAINER_TOGGLE .pp3XSB {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative;
    width: 22px !important;
    height: 16px !important;
  }

  #MENU_AS_CONTAINER_TOGGLE .Z_qSkN {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: #ffffff !important;
    border-radius: 1px;
  }

  #MENU_AS_CONTAINER_TOGGLE[aria-expanded="true"] .pp3XSB span {
    opacity: 0 !important;
  }

  #MENU_AS_CONTAINER_TOGGLE[aria-expanded="true"] .pp3XSB::after {
    content: "×";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
  }

  #comp-kr3jkrsz {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto !important;
    margin-right: 0 !important;
    max-width: 130px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-height: 40px;
    width: 130px !important;
    height: 40px !important;
    padding-right: 0 !important;
  }

  #comp-kr3jkrsz .apPOZK {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 130px !important;
    height: 40px !important;
    margin-left: auto;
  }

  #comp-kr3jkrsz img {
    display: block !important;
    width: 130px !important;
    height: 40px !important;
    max-width: 130px !important;
    object-fit: contain !important;
    object-position: right center !important;
    margin-left: auto;
  }

  #eda-lang-switcher {
    order: 3;
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    gap: 0.35rem;
    margin: 0 !important;
    z-index: 100;
    pointer-events: auto !important;
  }

  [data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > #eda-lang-switcher {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    grid-area: unset !important;
  }

  #comp-kr4smc0t {
    display: none !important;
  }

  /* Burger menu: full-screen overlay; panel stacked on top (not below) overlay */
  #MENU_AS_CONTAINER.MENU_AS_CONTAINER {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    top: 0 !important;
    z-index: 100001 !important;
    overflow: hidden !important;
  }

  body.device-mobile-optimized #MENU_AS_CONTAINER,
  body.device-mobile-optimized #MENU_AS_CONTAINER.nQIUtw {
    left: 0 !important;
  }

  #MENU_AS_CONTAINER.I_VSKP #overlay-MENU_AS_CONTAINER {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    background: rgb(16, 15, 14) !important;
    z-index: 1 !important;
  }

  #MENU_AS_CONTAINER.I_VSKP #container-MENU_AS_CONTAINER,
  #MENU_AS_CONTAINER.I_VSKP #inlineContentParent-MENU_AS_CONTAINER,
  #MENU_AS_CONTAINER.I_VSKP .ontAlD,
  #MENU_AS_CONTAINER.I_VSKP .fgXcGP {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 2 !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  #MENU_AS_CONTAINER_EXPANDABLE_MENU {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    left: 0 !important;
    top: 0 !important;
    padding: 80px 28px 40px !important;
    box-sizing: border-box;
    pointer-events: auto !important;
  }

  #MENU_AS_CONTAINER_EXPANDABLE_MENU .OXEw4D,
  #MENU_AS_CONTAINER_EXPANDABLE_MENU .BZjmPL,
  #MENU_AS_CONTAINER_EXPANDABLE_MENU .BZjmPL > ul,
  #MENU_AS_CONTAINER_EXPANDABLE_MENU .FWN1UT,
  [data-mesh-id="MENU_AS_CONTAINERinlineContent"],
  [data-mesh-id="MENU_AS_CONTAINERinlineContent-gridContainer"] {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    top: auto !important;
    box-sizing: border-box;
  }

  #bgLayers_MENU_AS_CONTAINER .LNYVZi {
    background-color: rgb(16, 15, 14) !important;
  }

  #MENU_AS_CONTAINER_EXPANDABLE_MENU .FWN1UT .keDKhi {
    height: 56px !important;
  }

  #MENU_AS_CONTAINER_EXPANDABLE_MENU .G7GdaI,
  #MENU_AS_CONTAINER .wixui-vertical-menu__item-label {
    display: inline-block !important;
    font-size: 1.25rem !important;
    line-height: 56px !important;
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
  }

  #MENU_AS_CONTAINER .FWN1UT {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
  }
}
