:root {
  color-scheme: light;
  --ink: #16211d;
  --paper: #f3efe4;
  --moss: #334a3e;
  --water: #78908a;
  --stone: #ddd3c0;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: min(86vh, 780px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(12, 20, 17, 0.5), rgba(12, 20, 17, 0.08) 38%),
    linear-gradient(0deg, rgba(12, 20, 17, 0.78), rgba(12, 20, 17, 0.05) 52%);
}

.hero-copy {
  position: relative;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(40px, 8vh, 86px);
  color: #fffaf0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.lede {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: #f5ead5;
}

.intro {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.intro p {
  max-width: 640px;
  margin: 0;
  color: var(--moss);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hero {
    min-height: 82vh;
  }

  .hero-copy,
  .intro {
    width: min(100% - 32px, 900px);
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
  }

  .hero-image {
    object-position: 54% 48%;
    transform: scale(1.32);
  }
}
