:root {
  --breakpoint-2xl: 1600px;
  --breakpoint-sm: 768px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font: 16px/1.4 "brandon-grotesque", serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logo-wrapper {
  display: block;
  width: 100%;
  max-width: clamp(400px, 36vw, 700px);
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .logo-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.logo-wrapper:hover {
  opacity: 1;
}

.logo-image {
  width: 100%;
  height: auto;
}

.header {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  width: 100vw;
  height: calc(100vh + 200px);
}

@media (min-width: 768px) {
  .header {
    height: calc(100vh + 300px);
  }
}

.header:after {
  content: "";
  position: absolute;
  z-index: 20;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  background-size: cover;
}

.header__container {
  height: 100%;
}

.header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  max-height: 100vh;
}

.header__background {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("assets/images/background.webp") no-repeat center top;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-width: 1450px;
}

@media (min-width: 768px) {
  .header__background {
    min-width: 1850px;
  }
}

.header__content {
  position: relative;
  z-index: 30;
}

.header__quote {
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 4px;
  max-width: 740px;
}

.header__author {
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .header__author {
    font-size: 1.125rem;
  }
}

.header__scroll {
  position: absolute;
  z-index: 30;
  bottom: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  animation: scrollBounce 6s infinite ease-in-out;
}

@media (min-width: 768px) {
  .header__scroll {
    bottom: 90px;
  }
}

.header__scroll:hover {
  opacity: 1;
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(0);
  }
}

.header__scroll-image {
  width: 10px;
  height: auto;
  transition: transform 0.3s ease-out;
}

.header__scroll:hover .header__scroll-image {
  transform: translateY(6px);
}

.header__scroll-text {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.content {
  position: relative;
  z-index: 20;
  margin-top: -100px;
  scroll-margin-top: 100px;
}

.content__contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .content__contact {
    flex-direction: row;
    max-width: 1170px;
    align-items: flex-end;
    width: 100%;
    margin: 0 auto;
  }
}

.content__contact p:not(:last-child) {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .content__contact-image-wrapper {
    flex: 0 0 55%;
    padding-right: 50px;
  }
}

.content__contact-image {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .content__contact-image {
    max-width: 505px;
  }
}

@media (max-width: 767px) {
  .content__contact-text {
    padding-top: 50px;
    margin-top: 60px;
    border-top: 1px solid #707070;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .content__contact-text {
    flex: 0 0 45%;
    padding-left: 50px;
    border-left: 1px solid #707070;
  }
}

.content__contact-text span {
  display: inline-block;
  min-width: 30px;
}

@media (max-width: 767px) {
  .content__contact-text span {
    display: none;
  }
}

.content__notice {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 80px;
}

@media (min-width: 768px) {
  .content__notice {
    margin-top: 120px;
    font-size: 1.5rem;
  }
}

.areas {
  margin-top: 60px;
  background-color: #047b8b;
  padding: 30px 0;
  color: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.563rem);
  font-weight: bold;
  letter-spacing: 4px;
}

.areas__list {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: stretch;
}

@media (min-width: 768px) {
  .areas__list {
    flex-direction: row;
  }
}

.areas__item {
  /* flex-basis: 100%; */
  text-align: center;
  padding: 10px 0;
}

@media (min-width: 960px) {
  .areas__item {
    padding: 10px 0;
  }
}

.areas__item-divider {
  width: 1px;
  align-self: stretch;
  background-color: #fff;
  flex-shrink: 0;
}

.footer {
  background-color: #f3f0f0;
  padding: 30px 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .footer {
    font-size: 1.5rem;
  }
}

.footer__menu {
  display: flex;
  justify-content: center;
  line-height: 0.8;
}

@media (min-width: 768px) {
  .footer__menu {
    justify-content: flex-end;
  }
}

.footer__menu-item:not(:last-child) {
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1.5px solid #000;
}

.legal {
  font-size: 1rem;
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  .legal {
    font-size: 1.2rem;
  }
}

@media (min-width: 1600px) {
  .legal {
    font-size: 1.5rem;
  }
}

.legal__container {
  max-width: 1200px;
}

.legal h1,
.legal h2,
.legal h3 {
  font-size: inherit;
  text-transform: uppercase;
}

.legal h1 + h2,
.legal h2 + h3 {
  margin-top: 1em;
}

.legal p,
.legal ul {
  margin-bottom: 1.5em;
}

.legal li {
  list-style: disc;
  margin-left: 1em;
}
