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

html {
  scroll-behavior: smooth;
  --white: #f1efea;
  --green: #678d65;
}

@font-face {
  font-family: "Suisse Intl";
  src:
    url("SuisseIntl-Regular-WebM.woff2") format("woff2"),
    url("SuisseIntl-Regular-WebM.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Suisse Intl";
  src:
    url("SuisseIntl-Bold-WebM.woff2") format("woff2"),
    url("SuisseIntl-Bold-WebM.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family:
    Suisse Intl,
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  background-color: var(--white);
  color: var(--green);
}

.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;
}

/* ── Section 1: Hero ── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("bg.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  flex-direction: column;

  .logo {
    width: 60vw;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    h1 {}

    img {
      width: 100%;
      height: auto;
      display: block;
      mix-blend-mode: difference;
      filter: invert(1);
    }
  }
}

.chevron {
  height: 14vh;
  width: 100%;

  a {
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img {
    height: 100%;
    width: auto;
    display: block;
    transition: transform 0.25s ease;
  }

  a:hover img {
    transform: translateY(6px);
  }
}

/* ── Section 2: Content ── */
#content {
  min-height: 100vh;
  padding: 3.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

#content>* {
  opacity: 0;
  transform: translateY(200px);
  transition:
    opacity 0.4s ease,
    transform 0.6s ease;
}

#content>*.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-block {
  font-size: clamp(1.13rem, calc(0.398rem + 3.636vw), 3.13rem);
}

.button-row {
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px 10px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: clamp(1.13rem, calc(0.398rem + 3.636vw), 3.13rem);
  color: var(--green);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.8s;
}

.cta-button sup {
  font-size: 0.65em;
  vertical-align: super;
  letter-spacing: 0;
}

.cta-button:hover {
  background: var(--green);
  color: var(--white);
}

/* bottom row: address left, logo right */
.bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.address-block {
  /* gap: 1.25rem; */
  font-size: clamp(0.88rem, calc(0.511rem + 1.818vw), 1.88rem);
  min-width: 20ch;

  a {
    color: inherit;
    text-decoration: none;
  }
}

.address-block strong {
  font-weight: 700;
}

.bottom-logo {
  width: clamp(120px, 22vw, 270px);
  flex-shrink: 0;
  align-self: flex-end;
}

.bottom-logo img {
  width: 100%;
  height: auto;
  display: block;
}
