/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "museo-sans", sans;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-color: #ed7768;
  font-family: "museo-sans", sans;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 147.5%;
  overflow-x: hidden;
}
@media only screen and (min-width: 651px) and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 650px) {
  body {
    font-size: 1.4rem;
  }
}
body.modal {
  overflow: hidden;
  height: 100vh;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open a {
  color: white;
}

.outer {
  position: relative;
}
.outer .inner {
  position: relative;
  width: calc(100vw - 100px);
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 4rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}

p {
  margin-bottom: 1.4rem;
}
p em {
  color: #999;
}
p a {
  color: inherit;
}
p a:hover {
  text-decoration: underline;
}

#banner {
  height: calc(100vh - 10px);
  max-height: 60vw;
  min-height: 480px;
  background-color: #333;
  position: relative;
  background-image: url("../banner-image.jpg");
  background-position: center;
  background-size: cover;
}
#banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
}
#banner #site-strapline {
  position: absolute;
  left: 50%;
  bottom: 8rem;
  color: #ed7768;
  transform: translate(-50%, 0);
  font-family: "freight-display-pro", serif;
  font-size: clamp(2rem, 3vmin, 6rem);
  line-height: 1.03;
  text-align: center;
}

#site-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 184px;
}
#site-title h1 {
  width: 100%;
  height: 100%;
  text-indent: -99999px;
  background-image: url("../npfb-red.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#main-content {
  padding: 12.5rem 0 2rem 0;
  background-color: #fcf9f6;
}

#introduction-text {
  font-size: clamp(3rem, 5vmin, 5rem);
  line-height: 1;
  text-align: center;
  font-family: "freight-display-pro", serif;
  max-width: 1150px;
  margin: 0 auto 8.5rem auto;
}
#introduction-text small {
  font-size: clamp(1.6rem, 2vmin, 2.4rem);
}
#introduction-text small strong {
  font-weight: bold;
}

#video {
  padding: 4rem 0 8rem 0;
  width: 100%;
}
#video .inner {
  aspect-ratio: 16/9;
}

.video-wrapper {
  position: relative;
  max-width: 100%;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Play button overlay */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  line-height: 1;
  padding: 0.75em 1em;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
}

.video-play-button:hover {
  opacity: 0.9;
}

.video-play-button {
  background: url("../play.svg") center/contain no-repeat;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  text-indent: -999999px;
}

.columns-4 {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 1rem;
}
.columns-4 .column {
  box-sizing: border-box;
}
.columns-4 .column.text {
  padding: 0 3rem;
}
.columns-4 .column.text.no-title {
  padding-top: 3.25rem;
}
@media (max-width: 1220px) {
  .columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .columns-4 {
    grid-template-columns: 1fr;
  }
}

.tile {
  position: relative;
  background: #333;
  color: #ed7768;
  aspect-ratio: 8/7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tile h3 {
  font-family: "freight-display-pro", serif;
  font-size: 3rem;
  line-clamp: 120%;
  margin-bottom: 3rem;
}
.tile h3,
.tile p {
  z-index: 2;
}
.tile p {
  margin-top: 1rem;
}
.tile a.button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ed7768 !important;
  text-decoration: none;
}
.tile a.button span {
  margin-top: 4rem;
  display: inline-block;
  border: 1px solid #ed7768;
  padding: 0.4rem 1.4rem;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.25rem;
  transition-duration: 0.3s;
}
.tile:after {
  content: "";
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition-duration: 0.7s;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.tile:hover span {
  background-color: #ed7768;
  color: #333;
}
.tile:hover:after {
  transform: translate(-50%, -50%) scale(1.02);
}

#footer {
  padding-top: 4rem;
}
#footer #footer-text {
  position: relative;
  min-height: 140px;
}
#footer h2 {
  text-indent: -999999px;
  position: absolute;
  top: 0;
  right: 4rem;
  width: 140px;
  height: 92px;
  background-image: url("../npfb-white.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
