@font-face {
  font-family: 'Argent CF';
  src: url('../fonts/argent-cf-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Argent CF';
  src: url('../fonts/argent-cf-extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-serpentina: #0b7a52;
  --cream-text: #f6f1e4;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background: #d9e3eb;
}

.landing {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.5rem clamp(2rem, 4vw, 3rem);
  isolation: isolate;
}

.landing__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.015);
}

.landing::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 28, 19, 0.28) 0%, rgba(18, 34, 24, 0.18) 22%, rgba(16, 31, 22, 0.14) 44%, rgba(10, 20, 14, 0.54) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 22%, rgba(8, 18, 12, 0.2) 56%, rgba(8, 18, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.46) 100%);
  pointer-events: none;
}

.landing__content {
  max-width: 31rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - clamp(3.75rem, 7vw, 5.5rem));
}

.landing__sky-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding-top: clamp(0.5rem, 1.8vh, 1.25rem); */
}

.landing__land-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* margin-top: auto; */
  padding-bottom: clamp(1rem, 3vh, 2rem);
}

.landing__title,
.landing__body,
.landing__highlight,
.landing__closing {
  font-family: 'Argent CF', 'Georgia', serif;
  font-style: normal;
  letter-spacing: -0.015em;
  max-width: 29rem;
  white-space: nowrap;
}

.landing__title {
  color: var(--green-serpentina);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.75vw, 1.8rem);
  line-height: 1.08;
}

.landing__body {
  color: var(--green-serpentina);
  font-weight: 400;
  font-size: clamp(1.18rem, 1.68vw, 1.62rem);
  line-height: 1.08;
}

.landing__title + .landing__body {
  margin-top: clamp(0.85rem, 2vh, 1.2rem);
}

.landing__body + .landing__body {
  margin-top: clamp(1rem, 2.6vh, 1.55rem);
}

.landing__highlight {
  margin-top: clamp(1rem, 2.7vh, 1.7rem);
  color: var(--green-serpentina);
  font-weight: 800;
  font-size: clamp(1.45rem, 1.95vw, 1.9rem);
  line-height: 1.02;
}

.landing__logo {
  width: clamp(128px, 15vw, 170px);
  height: auto;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.landing__closing {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  text-align: center;
  color: var(--cream-text);
  font-weight: 800;
  font-size: clamp(1.38rem, 1.95vw, 1.85rem);
  line-height: 1.04;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.landing__cta {
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(0.55rem, 0.72vw, 0.68rem);
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: clamp(2rem, 4.8vh, 3.2rem);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  body {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
  }

  .landing {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    padding: 2.5rem 1rem 1.25rem;
    overflow: hidden;
  }

  .landing__content {
    min-height: 0;
    height: 100%;
    justify-content: space-between;
  }

  .landing__title {
    font-size: clamp(1rem, 4.8vw, 1.45rem);
  }

  .landing__body {
    font-size: clamp(0.82rem, 4vw, 1.28rem);
  }

  .landing__highlight {
    font-size: clamp(0.9rem, 4.5vw, 1.5rem);
  }

  .landing__closing {
    font-size: clamp(0.88rem, 4.3vw, 1.48rem);
  }

  .landing__title + .landing__body {
    margin-top: 0.4rem;
  }

  .landing__body + .landing__body {
    margin-top: 0.45rem;
  }

  .landing__highlight {
    margin-top: 0.45rem;
  }

  .landing__land-zone {
    padding-bottom: 0.5rem;
  }

  .landing__cta {
    margin-top: clamp(0.8rem, 2vh, 1.5rem);
  }
}

@media (min-width: 1600px) {
  .landing__content {
    max-width: 840px;
  }
}
