:root {
  --green: #103c36;
  --green-soft: #335c56;
  --cream: #f7f5ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--green);
  background: #dce9e8;
  font-family: "Inter", sans-serif;
}

.landingpage {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}

.background {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 249, 0.98) 0%,
      rgba(248, 251, 249, 0.92) 30%,
      rgba(248, 251, 249, 0.55) 47%,
      rgba(248, 251, 249, 0.08) 68%,
      rgba(8, 34, 30, 0.12) 100%
    );
}

.shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      transparent 55%,
      rgba(6,34,29,.18)
    );
}

.header {
  padding: clamp(24px, 4vw, 54px) clamp(24px, 7vw, 110px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.logo svg {
  width: 42px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: .16em;
}

.brand-text small {
  display: block;
  margin-top: 3px;
  font-size: .58rem;
  letter-spacing: .2em;
}

.content {
  width: min(630px, 46vw);
  margin-left: clamp(24px, 8vw, 125px);
  align-self: center;
  padding-bottom: 5vh;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-soft);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.045em;
}

h1 em {
  color: #175f56;
  font-weight: 500;
}

.line {
  display: block;
  width: 72px;
  height: 1px;
  margin: 34px 0 27px;
  background: rgba(16,60,54,.75);
}

.intro {
  max-width: 540px;
  margin: 0;
  color: #365650;
  font-size: clamp(.98rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.note {
  width: fit-content;
  max-width: 100%;
  margin-top: 38px;
  padding: 13px 18px 13px 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(16,60,54,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 14px 38px rgba(17,58,51,.08);
  backdrop-filter: blur(12px);
}

.note-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.note-icon svg {
  width: 24px;
  fill: none;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
}

.note small {
  display: block;
  margin-bottom: 3px;
  color: #718680;
  font-size: .63rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.note strong {
  display: block;
  font-size: .88rem;
}

.footer {
  padding: 24px clamp(24px, 7vw, 110px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  letter-spacing: .07em;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

@media (max-width: 900px) {
  .background {
    object-position: 65% center;
  }

  .shade {
    background:
      linear-gradient(
        90deg,
        rgba(248,251,249,.97) 0%,
        rgba(248,251,249,.88) 55%,
        rgba(248,251,249,.28) 100%
      );
  }

  .content {
    width: min(650px, calc(100% - 48px));
  }
}

@media (max-width: 600px) {
  .landingpage {
    min-height: 100svh;
  }

  .header {
    padding: 24px;
  }

  .brand-text strong {
    font-size: 1.16rem;
  }

  .brand-text small {
    font-size: .47rem;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding-bottom: 2vh;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }

  .intro {
    max-width: 90%;
    font-size: .94rem;
  }

  .background {
    object-position: 67% center;
  }

  .shade {
    background:
      linear-gradient(
        180deg,
        rgba(248,251,249,.92) 0%,
        rgba(248,251,249,.82) 52%,
        rgba(248,251,249,.3) 76%,
        rgba(7,37,32,.28) 100%
      );
  }

  .footer {
    padding: 20px;
    flex-direction: column;
    gap: 5px;
  }
}
