:root {
  color-scheme: dark;
  --ink: #f5efe3;
  --muted: #c8bda9;
  --paper: #efe4d0;
  --charcoal: #141514;
  --walnut: #5f422d;
  --copper: #c58a52;
  --blue: #273f53;
  --line: rgba(245, 239, 227, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--charcoal);
}

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

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 14, 13, 0.88) 0%, rgba(13, 14, 13, 0.52) 47%, rgba(13, 14, 13, 0.14) 100%),
    linear-gradient(180deg, rgba(13, 14, 13, 0.2) 0%, rgba(13, 14, 13, 0.74) 100%);
}

.hero__content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 118px);
  padding: 72px 0;
}

.eyebrow,
.section-kicker,
figcaption,
dt {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--copper);
  font-weight: 700;
}

h1,
h2,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.95;
  font-weight: 500;
  text-wrap: balance;
}

.lead {
  max-width: 620px;
  margin-top: 28px;
  color: var(--paper);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
}

.quote {
  max-width: 560px;
  margin-top: 44px;
  padding-left: 22px;
  border-left: 2px solid var(--copper);
}

blockquote {
  color: var(--ink);
  font-size: clamp(23px, 2.7vw, 36px);
  line-height: 1.25;
  text-wrap: balance;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
}

.read-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 20px;
  border: 1px solid rgba(245, 239, 227, 0.44);
  color: var(--ink);
  background: rgba(20, 21, 20, 0.34);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.read-link:hover,
.read-link:focus-visible {
  border-color: var(--copper);
  background: rgba(197, 138, 82, 0.2);
  transform: translateY(-1px);
}

.reflection {
  background:
    linear-gradient(135deg, rgba(39, 63, 83, 0.42), rgba(20, 21, 20, 0) 46%),
    var(--charcoal);
}

.reflection__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.reflection h2 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  text-wrap: balance;
}

.reflection p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.details {
  border-top: 1px solid var(--line);
}

.details div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--copper);
  font-weight: 700;
}

dd {
  margin-top: 7px;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88svh;
    align-items: end;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(13, 14, 13, 0.18) 0%, rgba(13, 14, 13, 0.92) 70%),
      linear-gradient(90deg, rgba(13, 14, 13, 0.72), rgba(13, 14, 13, 0.16));
  }

  .hero__content {
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 80px 0 42px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(44px, 15vw, 72px);
  }

  .lead {
    font-size: 20px;
  }

  .quote {
    margin-top: 34px;
  }

  .reflection__inner {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
  }
}
