@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap');

:root {
  --black: #161718;
  --cream: #eee9dc;
  --white: #faf8f2;
  --rust: #b65e37;
  --brass: #b4914d;
  --steel: #5e6768;
  --line: rgba(22, 23, 24, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: 'Source Serif 4', serif;
}

header {
  padding: 20px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 2px solid var(--black);
}

.wordmark {
  color: inherit;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

header ul,
footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  list-style: none;
}

header a,
footer a {
  color: inherit;
}

header nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

header nav a[aria-current='page'],
header nav a:hover {
  color: var(--rust);
}

.hero-grid {
  width: min(1340px, calc(100% - 40px));
  margin: 34px auto 100px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.hero-copy {
  padding: clamp(34px, 6vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  color: var(--white);
}

.label {
  margin: 0 0 15px;
  color: var(--rust);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 25px;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.78;
}

.hero-copy > p:last-child {
  font-size: 1.07rem;
  line-height: 1.75;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  height: 720px;
  display: block;
  object-fit: cover;
}

figcaption {
  padding: 10px 3px 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.trade-map {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}

.trade-map article {
  padding: clamp(30px, 5vw, 56px);
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: var(--white);
}

.trade-map h2 {
  margin: 55px 0 22px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.trade-map p:not(.label),
.comparison p,
.closing p {
  font-size: 1.04rem;
  line-height: 1.85;
}

.comparison {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  background: var(--brass);
}

.comparison h2,
.closing h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
}

.closing {
  max-width: 940px;
  margin: 0 auto 110px;
  padding: 0 20px;
}

footer {
  padding: 36px;
  border-top: 2px solid var(--black);
}

footer ul {
  justify-content: center;
}

footer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .trade-map,
  .comparison {
    grid-template-columns: 1fr;
  }

  figure img {
    height: 520px;
  }
}
