:root {
  color-scheme: light;
  --ink: #f9f3e8;
  --deep: #162622;
  --moss: #233c35;
  --stone: #d8cbb8;
  --clay: #9a7659;
  --paper: #f4eee4;
  --text: #20302c;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(24px, 4vw, 56px) 20px;
  background: var(--deep);
}

.hero__image {
  display: block;
  width: min(100%, 1180px);
  height: auto;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--moss);
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.92;
  font-weight: 400;
}

.details {
  background: var(--paper);
  border-top: 1px solid rgba(32, 48, 44, 0.14);
}

.details__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 72px) 0;
}

.section-label {
  color: var(--clay);
}

.details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  color: var(--moss);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 400;
}

.details__copy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: var(--deep);
}

.details__copy p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .details__inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .details__grid {
    grid-template-columns: 1fr;
  }
}
