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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #444444;
  background-color: #FFFFFF;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 200ms ease;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

::selection {
  background-color: #D5966C;
  color: #FFFFFF;
}

.container {
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 3.64px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease;
}
.btn--primary .btn__text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #151515;
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  height: 72px;
}
@media (min-width: 768px) {
  .btn--primary .btn__text {
    padding: 1.5rem 2.25rem;
  }
}
.btn--primary .btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D5966C;
  width: 56px;
  height: 72px;
}
.btn--primary .btn__icon svg {
  width: 10px;
  height: 24px;
  fill: #FFFFFF;
}
.btn--primary:hover .btn__text {
  background-color: #D5966C;
}
.btn--primary:hover .btn__icon {
  background-color: #151515;
}
.btn--secondary {
  flex-direction: row-reverse;
}
.btn--secondary .btn__text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #151515;
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  height: 72px;
}
@media (min-width: 768px) {
  .btn--secondary .btn__text {
    padding: 1.5rem 2.25rem;
  }
}
.btn--secondary .btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D5966C;
  width: 56px;
  height: 72px;
}
.btn--secondary .btn__icon svg {
  width: 10px;
  height: 24px;
  fill: #FFFFFF;
  transform: rotate(180deg);
}
.btn--secondary:hover .btn__text {
  background-color: #D5966C;
}
.btn--secondary:hover .btn__icon {
  background-color: #151515;
}

.footer {
  background-color: #151515;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16rem;
    align-items: center;
    padding: 1rem 0.5rem;
  }
}
@media (min-width: 1200px) {
  .footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 9rem;
    gap: 10rem;
  }
}
.footer--terracota {
  background-color: #D5966C;
}
.footer--terracota .footer__logo,
.footer--terracota .footer__text {
  color: #151515;
}
.footer--terracota .social__link svg {
  fill: #151515;
}
.footer--terracota .social__link:hover svg {
  fill: #FFFFFF;
}

.footer__logo {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__logo {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .footer__logo {
    font-size: 2.25rem;
  }
}

.footer__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .footer__text {
    font-size: 1.125rem;
    max-width: 425px;
  }
}

.social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}
.social__link svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  transition: fill 200ms ease;
}
.social__link:hover {
  transform: scale(1.1);
}
.social__link:hover svg {
  fill: #D5966C;
}

.hero {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: auto;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .hero {
    grid-template-columns: 450px 1fr 1fr;
    min-height: 800px;
    position: relative;
  }
}

.hero__black-bar {
  display: none;
}
@media (min-width: 1200px) {
  .hero__black-bar {
    display: flex;
    align-items: center;
    background-color: #151515;
    position: relative;
    overflow: visible;
  }
}

.hero__title--desktop {
  display: none;
}
@media (min-width: 1200px) {
  .hero__title--desktop {
    display: block;
    position: absolute;
    right: -263px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 5rem;
    line-height: 1;
    color: #FFFFFF;
    width: 500px;
    z-index: 10;
  }
}

.hero__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__image {
    height: 100%;
    min-height: 700px;
  }
}
@media (min-width: 1200px) {
  .hero__image {
    min-height: 800px;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2.5rem;
    position: absolute;
    right: -39px;
    top: 41%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46%;
  }
}
@media (min-width: 1200px) {
  .hero__content {
    padding: 0 10rem 0 4rem;
    justify-content: center;
    position: absolute;
    right: -41px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
  }
}

.hero__title--mobile {
  font-size: 3.75rem;
  line-height: 1;
  color: #151515;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__title--mobile {
    font-size: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .hero__title--mobile {
    display: none;
  }
}

.hero__description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .hero__description {
    font-size: 1.375rem;
    line-height: 1.5;
    max-width: 350px;
  }
}

.hero__cta {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero__cta {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .hero__cta {
    margin-top: 4rem;
  }
}

.gallery {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .gallery {
    padding: 8rem 2rem;
  }
}
@media (min-width: 1200px) {
  .gallery {
    max-width: 1440px;
    margin: 0 auto;
    padding: 11rem 6rem;
  }
}

.gallery__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 1rem) {
  .gallery__top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .gallery__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .gallery__top {
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 768px) {
  .gallery__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.gallery__title {
  font-size: 3.125rem;
  line-height: 1;
  color: #151515;
  margin-bottom: 1.5rem;
}
@media (min-width: 1rem) {
  .gallery__title {
    font-size: 3.125rem;
  }
}
@media (min-width: 768px) {
  .gallery__title {
    font-size: 3.125rem;
    padding: 0px 140px 0px 30px;
  }
}
@media (min-width: 1200px) {
  .gallery__title {
    font-size: 3.75rem;
  }
}

.gallery__description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #444444;
}
@media (min-width: 768px) {
  .gallery__description {
    font-size: 1.125rem;
    padding: 0px 98px 0px 30px;
  }
}
@media (min-width: 1200px) {
  .gallery__description {
    font-size: 1.375rem;
  }
}

.gallery__image--1 {
  width: 100%;
  overflow: hidden;
}
.gallery__image--1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .gallery__image--1 {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .gallery__image--1 {
    height: 400px;
  }
}

.gallery__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery__bottom {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 25rem 30rem;
    gap: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .gallery__bottom {
    gap: 1.875rem;
  }
}

.gallery__image--2 {
  width: 100%;
  overflow: hidden;
}
.gallery__image--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .gallery__image--2 {
    grid-column: 1;
    grid-row: 1/3;
    height: 100%;
  }
}

.gallery__image--3 {
  width: 100%;
  overflow: hidden;
}
.gallery__image--3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .gallery__image--3 {
    grid-column: 2;
    grid-row: 1;
  }
}

.gallery__cta {
  background-color: #151515;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .gallery__cta {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 4.5rem;
  }
}
@media (min-width: 1200px) {
  .gallery__cta {
    padding: 4rem 2rem;
  }
}

.gallery__cta-title {
  font-size: 3.125rem;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .gallery__cta-title {
    font-size: 3.75rem;
  }
}

.gallery__cta-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #FFFFFF;
}
@media (min-width: 1200px) {
  .gallery__cta-description {
    font-size: 1.375rem;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 550px;
}
@media (min-width: 768px) {
  .map {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .map {
    height: 600px;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

.map__back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.location {
  background-color: #151515;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .location {
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    gap: 16rem;
    align-items: flex-start;
    padding: 5rem 6rem;
  }
}
@media (min-width: 1200px) {
  .location {
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 11rem;
    gap: 14rem;
  }
}

.location__title {
  font-size: 3.125rem;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .location__title {
    font-size: 3.125rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .location__title {
    font-size: 4.375rem;
  }
}

@media (min-width: 768px) {
  .location__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.location__address-title {
  font-size: 2rem;
  line-height: 1.15;
  color: #D5966C;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .location__address-title {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .location__address-title {
    font-size: 2.25rem;
  }
}

.location__address {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #FFFFFF;
  font-style: normal;
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .location__address {
    font-size: 1.375rem;
  }
}

.location__description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #FFFFFF;
}
@media (min-width: 1200px) {
  .location__description {
    font-size: 1.375rem;
  }
}

/*# sourceMappingURL=style.css.map */
