:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #06132a;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 4.5rem);
  isolation: isolate;
  background: #06132a url("assets/images/MonteBiancoHDR.jpg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 40%, rgb(1 7 18 / 25%));
}

.signature {
  max-width: min(88vw, 39rem);
  text-align: right;
  color: #e6bd56;
  text-shadow: 0 2px 18px rgb(0 0 0 / 65%);
}

h1,
p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.65rem, 6.4vw, 6.6rem);
  line-height: .78;
  letter-spacing: .015em;
}

p {
  margin-top: .75rem;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-style: italic;
  letter-spacing: .08em;
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem;
    background-position: 56% center;
  }

  h1 {
    line-height: .88;
  }
}
