:root {
  --green: #10261f;
  --cream: #f7f1e6;
  --paper: #fbf8f1;
  --gold: #b99a5f;
  --muted: rgba(247, 241, 230, 0.74);
  --line: rgba(247, 241, 230, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--cream);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

.splash {
  min-height: 100svh;
}

.hero {
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  background:
    linear-gradient(90deg, rgba(8, 21, 17, 0.9), rgba(8, 21, 17, 0.58) 48%, rgba(8, 21, 17, 0.16)),
    url("assets/no34-frontage-wide.jpg") center / cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.panel {
  align-self: center;
  max-width: 780px;
  padding: clamp(28px, 7vw, 84px);
  position: relative;
  z-index: 1;
}

.logo {
  height: auto;
  margin-bottom: clamp(48px, 8vw, 86px);
  max-width: 210px;
  width: 54vw;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  max-width: 760px;
}

.lead {
  color: rgba(247, 241, 230, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 620px;
}

.details {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 16px 0;
}

.details span {
  white-space: nowrap;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  align-items: center;
  border: 1px solid rgba(247, 241, 230, 0.42);
  border-radius: 999px;
  color: var(--cream);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  min-width: 160px;
  padding: 12px 22px;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #171713;
}

.lower {
  align-items: center;
  background: var(--paper);
  color: #1d211d;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(22px, 7vw, 84px);
}

.lower p {
  margin: 0;
}

.credit {
  color: #6f6a5d;
}

@media (max-width: 680px) {
  .hero {
    min-height: 88svh;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(8, 21, 17, 0.42), rgba(8, 21, 17, 0.8) 42%, rgba(8, 21, 17, 0.72)),
      url("assets/no34-frontage-portrait.jpg") center / cover;
  }

  .panel {
    align-self: end;
    padding: 92px 20px 48px;
  }

  .logo {
    margin-bottom: 40px;
    max-width: 160px;
  }

  .actions,
  .lower {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
