@import url('https://fonts.googleapis.com/css2?family=DM+Mono&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600;1,700&display=swap');

:root {
  --blue: #07366b;
  --red: #de2437;
  --ink: #10233c;
  --paper: #f5f1e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}

.wrap {
  width: min(1140px, calc(100% - 48px));
  margin: auto;
}

.hero {
  min-height: 730px;
  height: 100vh;
  max-height: 900px;
  position: relative;
  color: white;
  overflow: hidden;
  background: var(--blue);
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("https://commons.wikimedia.org/wiki/Special:FilePath/Hinchada_de_Nacional.jpg?width=1800") center / cover;
  filter: saturate(.82);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,22,53,.92), rgba(3,31,72,.42) 58%, rgba(4,28,61,.12)),
    linear-gradient(0deg, rgba(3,28,63,.45), transparent 55%);
}

.nav {
  height: 100px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: white;
  text-decoration: none;
  display: flex;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  line-height: .9;
  letter-spacing: .06em;
}

.brand small {
  display: block;
  font: 9px "DM Mono", monospace;
  letter-spacing: .12em;
  margin-top: 7px;
}

.brand-mark {
  display: flex;
  width: 25px;
  height: 32px;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.6);
  padding: 3px;
}

.brand-mark i {
  display: block;
  flex: 1;
  background: white;
}

.brand-mark i:nth-child(2) {
  background: var(--blue);
}

.brand-mark i:nth-child(3) {
  background: var(--red);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a,
.scroll-link {
  font: 12px "DM Mono", monospace;
  color: white;
  text-transform: uppercase;
  letter-spacing: .09em;
  text-decoration: none;
}

.nav-links a:hover {
  color: #eeb6ba;
}

.menu-button {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  top: clamp(125px, 22vh, 190px);
}

.eyebrow,
.section-label {
  font: 11px "DM Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  border-left: 2px solid var(--red);
  padding-left: 12px;
}

h1,
h2,
blockquote {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(64px, 9vw, 130px);
  line-height: .86;
  letter-spacing: -.05em;
  margin: 22px 0 45px;
  font-weight: 600;
}

em {
  color: var(--red);
  font-weight: inherit;
}

.scroll-link {
  border-bottom: 1px solid rgba(255,255,255,.75);
  padding-bottom: 9px;
}

.scroll-link span {
  color: var(--red);
  margin-left: 24px;
  font-size: 18px;
}

.intro {
  padding: 130px 0 105px;
}

.section-label {
  margin: 0;
  color: var(--red);
}

.intro-copy {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 7%;
  margin-top: 38px;
}

h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0;
  font-weight: 600;
}

.intro-copy p,
.park-copy > p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 19px;
  color: #394b60;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
  border-top: 1px solid #c6c2bb;
  border-bottom: 1px solid #c6c2bb;
}

.stat-row div {
  padding: 25px 16px;
  border-right: 1px solid #c6c2bb;
}

.stat-row div:first-child {
  padding-left: 0;
}

.stat-row div:last-child {
  border: 0;
}

.stat-row strong {
  font: 600 43px "Playfair Display", serif;
  display: block;
  color: var(--blue);
}

.stat-row span {
  font: 11px "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.memory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blue);
  color: white;
  min-height: 560px;
}

.memory-photo {
  background: url("https://commons.wikimedia.org/wiki/Special:FilePath/Nacional_6-0_Uruguay,_1944.jpg?width=1400") center / cover;
  min-height: 450px;
  filter: grayscale(1) contrast(1.05);
}

.memory-panel {
  padding: 90px max(6vw, 60px);
  background: linear-gradient(130deg, #06376e, #092b58);
}

.memory-panel .section-label {
  color: #ef9ca5;
}

blockquote {
  font-size: clamp(31px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 40px 0 31px;
}

.memory-panel > p {
  line-height: 1.65;
  color: #d8e0ec;
  max-width: 440px;
}

.line {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin: 30px 0 19px;
}

.memory-panel .caption {
  font: 10px "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9bb2d0;
}

.park {
  padding: 130px 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 9%;
}

.park-copy h2 {
  margin: 30px 0;
}

.park-copy a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font: 12px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 7px;
  text-decoration: none;
}

.park-copy a span {
  color: var(--red);
  font-size: 16px;
  margin-left: 20px;
}

.park-photo {
  position: relative;
  margin: 0;
}

.park-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  filter: saturate(.82);
}

figcaption {
  color: #777b7f;
  font: 10px "DM Mono", monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-top: 12px;
}

footer {
  background: #071f42;
  color: white;
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  font: 700 12px "DM Mono", monospace;
  letter-spacing: .1em;
}

.footer-inner p span {
  display: inline-block;
  height: 10px;
  width: 10px;
  background: var(--red);
  margin-right: 7px;
}

.footer-inner small {
  font-size: 10px;
  color: #9eb1ca;
}

.footer-inner > a {
  color: white;
  text-decoration: none;
  border: 1px solid #547196;
  height: 35px;
  width: 35px;
  display: grid;
  place-items: center;
}

@media (max-width: 700px) {
  .hero {
    min-height: 650px;
  }

  .nav {
    height: 75px;
  }

  .menu-button {
    display: block;
    color: white;
    background: transparent;
    border: 0;
    font-size: 24px;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    padding: 18px;
    background: #062855;
    display: none;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-content {
    top: 145px;
  }

  .intro {
    padding: 80px 0;
  }

  .intro-copy,
  .memory,
  .park {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    gap: 28px;
  }

  .stat-row {
    margin-top: 45px;
  }

  .stat-row strong {
    font-size: 32px;
  }

  .stat-row div {
    padding: 18px 7px;
  }

  .memory-panel {
    padding: 65px 24px;
  }

  .park {
    padding: 80px 0;
    gap: 45px;
  }

  .footer-inner {
    padding: 25px 0;
    flex-wrap: wrap;
  }

  .footer-inner small {
    width: 75%;
  }
}