:root {
  --bg: #e9decb;
  --olive: #1f2611;
  --gold: #a98d55;
  --footer: #927a47;
  --footer-text: #f2e8ce;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--olive);
  font-family: "Saira Semi Expanded", sans-serif;
}

.stage {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  text-align: center;
  padding: 0.9rem 1rem 0.35rem;
}

.brand img {
  width: clamp(190px, 22vw, 320px);
  height: auto;
  mix-blend-mode: multiply;
  display: block;
  margin-inline: auto;
}

.hero {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem 2.8rem;
}

.lockup-img {
  width: min(92vw, 760px);
  height: auto;
  display: block;
  margin-inline: auto;
  mix-blend-mode: darken;
  transform: translateX(25px);
}

.subline {
  margin: calc(1.9rem - 20px) auto 0;
  max-width: 45rem;
  font-family: "Saira", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #6d5c37;
  text-align: center;
}

.subline-top {
  white-space: nowrap;
}

.contact {
  background: var(--footer);
  color: var(--footer-text);
  text-align: center;
  padding: 1.15rem 1rem 1.35rem;
  font-family: "Saira", sans-serif;
  font-size: clamp(0.8rem, 1vw, 0.96rem);
  font-weight: 300;
  letter-spacing: 0.008em;
}

.contact p {
  margin: 0.08rem 0;
  line-height: 1.35;
}

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

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .brand {
    padding-top: 1rem;
  }

  .hero {
    padding-bottom: 2.2rem;
  }

  .subline {
    max-width: 20rem;
  }

  .subline-top {
    white-space: normal;
  }


  .contact {
    font-size: 0.82rem;
    letter-spacing: 0.006em;
  }
}
