:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow: hidden;
  background: #c9d6d7;
}

.landscape,
.landscape img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landscape img {
  object-fit: cover;
  object-position: center center;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 34, 37, 0.2), transparent 58%),
    linear-gradient(0deg, rgba(12, 28, 31, 0.5), transparent 48%);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: clamp(1.5rem, 5vw, 5rem);
}

blockquote {
  max-width: 48rem;
  margin: 0 0 clamp(0.5rem, 3vh, 2.5rem);
  color: #f7f4eb;
  text-shadow: 0 2px 24px rgba(7, 22, 25, 0.42);
}

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4.3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

blockquote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  main {
    padding: 1.5rem;
  }

  blockquote {
    margin-bottom: 1.25rem;
  }
}
