@font-face {
  font-family: "Montserrat";
  src: url("/css/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/css/fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --green-dark: #46502f;
  --green-medium: #6e7270;
  --green-light: #97af51;
  --white: #ffffff;
  --text: #273022;
  --panel: rgba(0, 0, 0, 0.70);
  --header-band-height: 124px;
  --header-band-top: 41px;
  --footer-height: 300px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html, body {
  min-height: 100%;
}
html {
  background: var(--green-dark);
  overflow-y: scroll;
}
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  letter-spacing: 0;
  transition: background-color 520ms ease;
}
body.home-page, body.image-panel-page {
  background: var(--green-dark);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button, input, textarea {
  font: inherit;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--green-dark);
  padding: 0.7rem 1rem;
  border: 2px solid var(--green-light);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 1px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: absolute;
  left: 0;
  top: var(--header-band-top);
  z-index: 40;
  width: 100%;
  height: var(--header-band-height);
  max-height: 124px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.34);
  transition: color 1s ease, background-color 1s ease, box-shadow 1s ease;
}
.site-header--dark {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}
.site-header__inner {
  width: min(1510px, calc(100% - 190px));
  height: var(--header-band-height);
  max-height: 124px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 39px;
  padding-top: 22px;
}
.site-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}
.site-logo__stack {
  position: relative;
  display: block;
  width: 330px;
  height: 74px;
}
.site-logo__image {
  position: absolute;
  inset: 0 auto auto 0;
  width: 330px;
  height: auto;
  transition: opacity 1s ease;
}
.site-logo__image--light {
  opacity: 1;
}
.site-logo__image--dark {
  opacity: 0;
}
.site-header--dark .site-logo__image--light {
  opacity: 0;
}
.site-header--dark .site-logo__image--dark {
  opacity: 1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  color: currentColor;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 0 13px;
  transition: color 0.3s ease;
}
.site-nav a:first-child {
  padding-left: 0;
}
.site-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.65;
}
.site-nav a[aria-current="page"] {
  color: var(--green-light);
}
.site-nav a:not([aria-current="page"]):hover, .site-nav a:not([aria-current="page"]):focus-visible {
  color: var(--white);
}
.site-header--dark .site-nav a {
  color: rgba(70, 80, 47, 0.6);
}
.site-header--dark .site-nav a[aria-current="page"] {
  color: var(--green-light);
}
.site-header--dark .site-nav a:not([aria-current="page"]):hover, .site-header--dark .site-nav a:not([aria-current="page"]):focus-visible {
  color: var(--green-dark);
}
#site-content {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms var(--ease);
}
body.is-transitioning #site-content {
  opacity: 0;
  transform: translateY(8px);
}
body.is-transitioning .content-panel {
  opacity: 0;
  transform: translateX(100%);
}
body.image-panel-page.is-transitioning #site-content {
  transform: none;
}
.site-main {
  background: var(--white);
}
.home-main {
  position: relative;
  height: 100vh;
  min-height: 690px;
  padding: 0;
  overflow: hidden;
  background: var(--green-dark);
}
.home-hero, .home-slider, .home-slide {
  position: absolute;
  inset: 0;
}
.home-slide {
  opacity: 0;
  transition: opacity 2500ms ease;
}
.home-slide.is-active {
  opacity: 1;
}
.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(70, 80, 47, 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1000ms ease;
}
.home-intro.is-visible {
  opacity: 1;
}
.home-intro__h, .home-intro__vine {
  grid-area: 1 / 1;
  width: min(29vw, 500px);
  min-width: 280px;
  opacity: 0;
  transition: opacity 800ms ease;
}
.home-intro.is-ready-h .home-intro__h {
  opacity: 1;
}
.home-intro__vine {
  transition-duration: 900ms;
}
.home-intro.is-ready-vine .home-intro__vine {
  opacity: 1;
}
.home-page .site-footer {
  display: none;
}
.projects-main {
  padding: calc(var(--header-band-top) + var(--header-band-height) + 20px) 0 108px;
  background: var(--white);
}
.projects-shell {
  width: min(1510px, calc(100% - 190px));
  margin: 0 auto;
}
.section-heading--projects {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 42px;
}
.section-heading--projects h1 {
  margin: 0;
  color: #b3b4ae;
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 72px;
}
.project-card__image {
  display: block;
  aspect-ratio: 1.44 / 1;
  overflow: hidden;
  background: #edf0e8;
  text-decoration: none;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}
.project-card__image:hover img, .project-card__image:focus-visible img {
  transform: scale(1.075);
}
.project-card__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  padding-top: 19px;
  color: var(--green-dark);
  text-transform: uppercase;
}
.project-card h2, .project-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.project-card h2 {
  font-weight: 600;
}
.project-card p {
  color: var(--green-medium);
  font-weight: 400;
}
.empty-state, .project-location, .fallback-note {
  color: var(--green-medium);
}
.project-detail-main, .text-page {
  min-height: 560px;
  padding: calc(var(--header-band-top) + var(--header-band-height) + 80px) max(6vw, 70px) 80px;
}
.project-detail {
  max-width: 1180px;
  margin: 0 auto;
}
.project-detail h1, .text-page h1 {
  color: var(--green-dark);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
}
.accessibility-content {
  width: min(760px, calc(100% - 56px));
  margin: 0 auto;
}
.accessibility-content h1 {
  font-size: 28px;
  font-weight: 350;
}
.accessibility-content p {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 1.02rem;
  line-height: 1.58;
  font-weight: 340;
}
.accessibility-content a {
  color: var(--green-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.accessibility-content a:hover, .accessibility-content a:focus-visible {
  color: var(--green-dark);
}
.back-link {
  margin: 0 0 24px;
  color: var(--green-medium);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fallback-note {
  max-width: 620px;
  margin-top: 18px;
}
.project-gallery-basic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.project-gallery-basic figure {
  margin: 0;
  background: #edf0e8;
}
.project-gallery-basic img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
.image-panel-main {
  position: relative;
  display: flex;
  background-color: var(--green-dark);
  background-image: none;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  opacity: 0;
  animation: background-fade-in 620ms ease forwards;
}
@keyframes background-fade-in {
  to {
    opacity: 1;
  }
}
.image-panel-section {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.content-panel {
  width: 48%;
  min-width: 640px;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  background: var(--panel);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 680ms ease, transform 780ms var(--ease);
}
.content-panel.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.content-panel__inner {
  width: min(470px, 76%);
  margin: calc(var(--header-band-top) + var(--header-band-height) + 115px) 0 70px 96px;
}
.content-panel h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 350;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.content-panel p {
  margin: 0 0 29px;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.58;
  font-weight: 340;
}
.panel-close {
  display: inline-block;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
   transition:color 0.3s;
}
.panel-close:hover, .panel-close:active, .panel-close:focus-visible {
  color: #ffffff;
}
.inquire-panel .content-panel__inner {
  width: min(500px, 78%);
  margin-top: calc(var(--header-band-top) + var(--header-band-height) + 74px);
}
.contact-block {
  margin: 0 0 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.45;
}
.contact-block a {
  text-decoration: none;
}
.contact-block .inquire-phone {
  font-weight: 600;
}
.contact-block .inquire-email {
  color: var(--green-light);
}
.contact-block .inquire-email:hover, .contact-block .inquire-email:active, .contact-block .inquire-email:focus-visible {
  color: #ffffff;
  font-weight: 450;
}
.inquiry-form {
  display: grid;
  gap: 7px;
}
.form-section-title {
  margin-bottom: 8px;
  font-size: 1.03rem;
  font-weight: 700;
  font-style: italic;
}
.form-row {
  display: grid;
  gap: 7px;
}
.form-row--inline {
  grid-template-columns: 94px 1fr;
  align-items: center;
}
.form-row label {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}
.form-row input, .form-row textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--green-dark);
  padding: 0.36rem 0.48rem;
}
.form-row input {
  height: 21px;
}
.form-row--message {
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}
.form-row textarea {
  min-height: 182px;
  resize: vertical;
}
.turnstile-placeholder {
  min-height: 0;
  border: 0;
}
.turnstile-placeholder .cf-turnstile {
  margin-top: 8px;
}
.form-message {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.4;
}
.form-message p {
  margin: 0 0 4px;
}
.form-message--success {
  color: var(--green-light);
}
.form-message--error {
  color: #ffffff;
}
.form-note {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  opacity: 0.72;
}
.button-submit {
  justify-self: start;
  margin-top: 9px;
  border: 0;
  border-radius: 0;
  background: var(--green-light);
  color: #1f2519;
  padding: 0.28rem 0.82rem;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
   transition:background 0.3s;
}
.button-submit:hover, .button-submit:active, .button-submit:focus-visible{background:#ffffff;}
.button-submit:disabled {
  opacity: 1;
  cursor: not-allowed;
}
.site-footer {
  min-height: var(--footer-height);
  color: var(--white);
  background: var(--green-dark);
  border-top: 3px solid var(--white);
  padding: 42px 0 56px;
  opacity: 1;
  transition: opacity 420ms ease;
}
.site-footer.is-entering, .site-footer.is-leaving {
  opacity: 0;
}
.site-footer__inner {
  width: min(1510px, calc(100% - 190px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.site-footer__mark img {
  width: 106px;
  height: auto;
}
.site-footer__nav {
  display: grid;
  gap: 3px;
  margin-top: 15px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}
.site-footer a {
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.site-footer__nav a {
  color: var(--white);
  opacity: 1;
}
.site-footer__nav a:hover, .site-footer__nav a:focus-visible {
  opacity: 0.6;
}
.site-footer__nav a[aria-current="page"] {
  color: var(--green-light);
  opacity: 1;
}
.site-footer__nav a[aria-current="page"]:hover, .site-footer__nav a[aria-current="page"]:focus-visible {
  color: var(--green-light);
  opacity: 1;
}
.site-footer__meta {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  font-size: 13px;
  line-height: 1.55;
}
.site-footer__meta p {
  margin: 0;
}
.site-footer__meta a {
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__meta a:hover, .site-footer__meta a:focus-visible {
  color: var(--white);
}
.copyright, .location{color:#fff;}
.site-footer__phone {
  font-weight: 600;
   color:#ffffff !important;
   transition:color 0.3s;
}
.site-footer__phone:hover{color:#ffffffbb !important;}
.pswp {
  --pswp-bg: rgba(255, 255, 255, 255);
  --pswp-placeholder-bg: #e5e0d6;
  --pswp-icon-color: #1f2418;
  --pswp-icon-color-secondary: rgba(31, 36, 24, 0.35);
  --pswp-icon-stroke-color: rgba(247, 245, 239, 0.85);
  --pswp-error-text-color: #1f2418;
}
@media (max-width: 1100px) {
  :root {
    --footer-height: 250px;
  }
  .site-header__inner, .projects-shell, .site-footer__inner {
    width: calc(100% - 64px);
  }
  .project-grid {
    column-gap: 28px;
  }
  .content-panel {
    width: 56%;
    min-width: 0;
  }
}
@media (max-width: 780px) {
  :root {
    --header-band-height: auto;
    --header-band-top: 0px;
    --footer-height: auto;
  }
  .site-header, .site-header--dark {
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
    min-height: 0;
  }
  .site-header__inner {
    width: calc(100% - 36px);
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 22px 0 18px;
    align-items: center;
    flex-direction: column;
    gap: 28px;
  }
  .site-logo__stack, .site-logo__image {
    width: min(300px, 82vw);
  }
  .site-logo__stack {
    height: 68px;
  }
  .site-nav {
    justify-content: center;
    margin-top: 0;
    font-size: 0.78rem;
  }
  .home-main, .image-panel-main, .image-panel-section {
    min-height: 620px;
    height: auto;
  }
  .home-page .home-main {
    height: calc(100vh - 186px);
    height: calc(100svh - 186px);
    min-height: 0;
  }
  .projects-main {
    padding: 44px 0 56px;
  }
  .projects-shell, .site-footer__inner {
    width: calc(100% - 36px);
  }
  .section-heading--projects {
    justify-content: flex-start;
    margin: 0 0 28px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }
  .project-card__text {
    display: block;
  }
  .project-card p {
    margin-top: 3px;
  }
  .image-panel-main {
    background-image: var(--bg-mobile);
  }
  .image-panel-section {
    display: block;
    padding-top: 0;
  }
  .content-panel {
    width: 100%;
    min-height: 560px;
    min-width: 0;
  }
  .content-panel__inner, .inquire-panel .content-panel__inner {
    width: calc(100% - 56px);
    margin: 54px auto;
  }
  .form-row--inline {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 34px 0 44px;
  }
  .site-footer__inner, .site-footer__brand {
    flex-direction: column;
  }
  .site-footer__meta {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  #site-content, .home-slide, .content-panel, .image-panel-main, .site-footer, .site-header {
    transition: none;
    animation: none;
  }
  .image-panel-main, .content-panel {
    opacity: 1;
    transform: none;
  }
}