:root {
  --nemusa-ink: #1b4b2b;
  --nemusa-forest: #143a21;
  --nemusa-sage: #e2e9e2;
  --nemusa-mist: #f4f7f2;
  --nemusa-stone: #5b6d62;
}

html, body {
  height: 100%;
}

body {
  background-color: #ffffff;
  background-size: 420px auto;
  font-family: "Avenir", "Avenir Next", "Avenir Next LT Pro", "Avenir LT Std", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh;
  height: 100%;
}

main {
  margin: 0;
  height: 100%;
}

@media (max-width: 768px) {
  body {
    background-size: 60vw auto;
  }
}
@keyframes nemusa-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-site-blocks > * {
  animation: nemusa-rise 550ms ease-out both;
}

.btn {
  border-radius: 32px !important;
}

.btn-primary {
  background-color: #174821 !important;
  border-color: #174821 !important;
}
.btn-primary:hover(.active) {
  background-color: rgb(29.1736842105, 91.3263157895, 41.8578947368) !important;
}
.btn-primary:active:not(.active) {
  background-color: rgb(13.1221052632, 41.0778947368, 18.8273684211) !important;
}

.btn-secondary {
  background-color: #DFE4E0 !important;
  border-color: #DFE4E0 !important;
  color: #174821 !important;
}
.btn-secondary:hover(.active) {
  background-color: rgb(236.8305084746, 239.6694915254, 237.3983050847) !important;
}
.btn-secondary:active:not(.active) {
  background-color: rgb(200.8711864407, 209.3288135593, 202.5627118644) !important;
}

.btn-outline-secondary {
  color: #DFE4E0 !important;
  border-color: #DFE4E0 !important;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active {
  color: #174821 !important;
  background-color: #DFE4E0 !important;
  border-color: #DFE4E0 !important;
}

.button-with-icon span {
  display: flex;
}

.header {
  background-image: url(../assets/header/header.png);
  background-size: cover;
  min-height: 40vh;
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  color: white;
}
.header div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.header__content {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header__content > * {
  position: relative;
  z-index: 1;
}
.header__content::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: #174821;
  background: linear-gradient(0deg, rgb(23, 72, 33) 0%, rgba(23, 72, 33, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
  padding: 16px 20px;
}

.site-header__lang {
  display: flex;
  justify-content: flex-end;
  pointer-events: auto;
}

.site-header .language-dropdown .dropdown-toggle {
  color: white;
}

.site-header .language-dropdown .dropdown-toggle::after {
  border-top-color: white;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nemusa-ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.language-dropdown .dropdown-toggle img {
  width: 24px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.language-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 8px solid var(--nemusa-ink);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.language-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  background: #f4f7f2;
  list-style: none;
  padding: 8px;
  margin: 8px 0 0 0;
  border: 1px solid #d7dfd7;
  border-radius: 8px;
  z-index: 999;
  width: -moz-max-content;
  width: max-content;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
  display: none;
}

.language-dropdown .dropdown-menu[hidden] {
  display: none;
}

.language-dropdown.is-open .dropdown-menu {
  display: flex !important;
}

.language-dropdown .dropdown-menu li {
  margin-bottom: 8px;
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-dropdown .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.language-dropdown .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: var(--nemusa-ink);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.language-dropdown .dropdown-menu img {
  width: 24px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.hero {
  background-image: url(../assets/header/header.png);
  background-size: cover;
  min-height: 34vh;
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  color: white;
}
.hero div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.hero__logo {
  margin: 48px 16px 24px 16px;
}
.hero__content {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 24px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__content > * {
  position: relative;
  z-index: 1;
}
.hero__content::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: #174821;
  background: linear-gradient(0deg, rgb(23, 72, 33) 0%, rgba(23, 72, 33, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.request-sheet {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 9999;
}

.request-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 12, 0.45);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.request-sheet__panel {
  position: relative;
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: 20px 20px 28px;
  transform: translateY(100%);
  transition: transform 280ms ease;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.request-sheet__handle {
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: #d5ddd5;
  margin: 0 auto 16px;
}

.request-sheet__title {
  margin: 0 0 16px;
  color: var(--nemusa-ink);
  font-size: 1.35rem;
  font-weight: 600;
}

.request-sheet__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.request-sheet__label {
  font-size: 0.9rem;
  color: var(--nemusa-ink);
  font-weight: 600;
}

.request-sheet__input {
  width: 100%;
  border: 2px solid var(--nemusa-ink);
  border-radius: 14px;
  padding: 12px 14px;
  background: #e6ede7;
  color: var(--nemusa-ink);
  font-size: 1rem;
  outline: none;
}

.request-sheet__input:focus {
  box-shadow: 0 0 0 3px rgba(20, 58, 33, 0.2);
  background: #eef3ee;
}

.request-sheet__textarea {
  min-height: 160px;
  resize: vertical;
}

.request-sheet__text {
  color: var(--nemusa-ink);
  font-size: 1rem;
  margin: 0 0 16px;
}

.request-sheet__submit {
  margin-top: 6px;
  border: none;
  border-radius: 12px;
  background: #174821;
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.request-sheet__cancel {
  margin-top: 4px;
  border: none;
  background: none;
  color: var(--nemusa-ink);
  font-weight: 600;
}

.request-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.request-sheet.is-open .request-sheet__panel {
  transform: translateY(0);
}

.request-sheet__loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  display: none;
  animation: request-spin 0.8s linear infinite;
}

.request-sheet__form.is-loading .request-sheet__loader {
  display: inline-block;
}

.request-sheet__form.is-loading .request-sheet__submit span:first-child {
  opacity: 0.7;
}

.request-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(10px);
  background: #143a21;
  color: #fff;
  padding: 12px 18px;
  border-radius: 0;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 10000;
}

.request-toast.is-error {
  background: #7b1e1e;
}

.request-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes request-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .request-sheet__panel {
    border-radius: 24px;
    margin-bottom: 24px;
  }
}
.main-menu {
  margin-top: 24px;
  text-align: center;
}

.site-footer {
  text-align: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-left: 20px;
  padding-right: 20px;
}

.social-link__icon {
  width: 24px;
  height: 24px;
}/*# sourceMappingURL=style.css.map */