:root {
  --forest: #073b31;
  --paper: #f7faf7;
  --muted: #d2ddd8;
  --line: rgba(229, 241, 235, 0.35);
  --button: #389b88;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--forest);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(360px, 1fr) minmax(460px, 1.24fr);
  gap: clamp(48px, 6vw, 120px);
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(52px, 6vw, 112px) clamp(40px, 6vw, 120px);
  background:
    radial-gradient(circle at 46% 38%, rgba(35, 121, 92, 0.17), transparent 29%),
    radial-gradient(circle at 5% 100%, rgba(29, 97, 76, 0.13), transparent 31%),
    linear-gradient(103deg, #083b31 0%, #0b4437 47%, #06382f 100%);
}

.site-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.012) 0,
    rgba(255, 255, 255, 0.012) 1px,
    transparent 1px,
    transparent 5px
  );
  content: "";
  pointer-events: none;
}

.site-nav,
.brand-column,
.details-column {
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-self: start;
  flex-direction: column;
  gap: clamp(25px, 3.6vh, 42px);
  padding-top: 70px;
}

.site-nav a,
.contact-block h1,
.resources-block h2,
.resource-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-nav a {
  width: fit-content;
  color: var(--paper);
  font-size: clamp(20px, 1.55vw, 31px);
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
  transition: color 170ms ease, transform 170ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #72c6b6;
  transform: translateX(7px);
}

.brand-column {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  min-width: 0;
}

.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: clamp(42px, 7vh, 82px);
  color: #c7c9c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.45vw, 84px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 0.64em;
  height: 0.64em;
  flex: 0 0 auto;
  border: 1px solid rgba(136, 231, 227, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #7ee4df 0 10%, transparent 11%),
    radial-gradient(circle at 50% 55%, #71d7d1 0, #258b93 52%, #0d6671 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), inset 0 0 12px rgba(255, 255, 255, 0.22);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i::before,
.brand-mark i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 11%;
  border-radius: 999px;
  background: #e9fbfa;
  content: "";
  transform: translate(-50%, -50%);
}

.brand-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brand-mark i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-mark i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.award-frame {
  width: min(100%, 430px);
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.13);
}

.award-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.details-column {
  align-self: start;
  min-width: 0;
}

.contact-block h1,
.resources-block h2 {
  margin: 0 0 13px;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.contact-block address {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: clamp(18px, 1.3vw, 25px);
  font-style: normal;
  line-height: 1.36;
}

.contact-block address a {
  width: fit-content;
  text-decoration: none;
}

.resources-block {
  margin-top: clamp(26px, 4.5vh, 48px);
}

.section-intro p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.4vw, 27px);
  line-height: 1.45;
}

.resource-list {
  margin-top: 20px;
}

.resource-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 30px;
  min-height: 165px;
  padding: 0 0 20px;
}

.resource-item + .resource-item {
  padding-top: 20px;
  border-top: 2px solid var(--line);
}

.document-cover {
  display: block;
  width: 112px;
  height: 151px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  object-fit: cover;
}

.resource-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.resource-copy h3 {
  margin: 0;
  font-size: clamp(20px, 1.35vw, 28px);
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.resource-copy p {
  margin: 9px 0 15px;
  color: var(--muted);
  font-size: clamp(20px, 1.4vw, 28px);
  line-height: 1.1;
}

.download-button {
  display: inline-block;
  min-width: 238px;
  padding: 10px 23px 9px;
  border: 1px solid rgba(85, 196, 174, 0.38);
  background: linear-gradient(135deg, var(--button), #318c7b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 3px 9px rgba(0, 0, 0, 0.12);
  color: #f7fffd;
  cursor: pointer;
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.download-button:hover,
.download-button:focus-visible {
  background: linear-gradient(135deg, #4eb29e, #389b88);
  transform: translateY(-2px);
}

.download-button:focus-visible {
  outline: 3px solid #8ce1cf;
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-shell {
    grid-template-columns: minmax(260px, 0.82fr) minmax(430px, 1.18fr);
    gap: 60px 72px;
    padding: 48px 56px 70px;
  }

  .site-nav {
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 38px;
    padding-top: 0;
  }

  .site-nav a {
    font-size: 18px;
  }

  .wordmark {
    margin-top: 18px;
    margin-bottom: 42px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 100vh;
    padding: 28px 22px 54px;
    overflow: visible;
  }

  .site-nav {
    gap: 13px 23px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .wordmark {
    margin: 0 0 30px;
    font-size: clamp(49px, 17vw, 68px);
  }

  .award-frame {
    width: min(87vw, 420px);
  }

  .contact-block h1,
  .resources-block h2 {
    font-size: 25px;
  }

  .contact-block address,
  .section-intro p {
    font-size: 18px;
  }

  .resources-block {
    margin-top: 48px;
  }

  .resource-item {
    grid-template-columns: 91px minmax(0, 1fr);
    gap: 18px;
    min-height: 141px;
  }

  .document-cover {
    width: 91px;
    height: 123px;
  }

  .resource-copy h3 {
    font-size: 17px;
  }

  .resource-copy p {
    margin: 8px 0 13px;
    font-size: 18px;
  }

  .download-button {
    width: 100%;
    min-width: 0;
    padding: 11px 12px 10px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a {
    transition: none;
  }

  .download-button {
    transition: none;
  }
}
