:root {
  --mint: #D3E6DF;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .52) 100%);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-slide 75s linear infinite;
  will-change: opacity, transform;
}

.hero > :not(.hero-carousel) {
  position: relative;
  z-index: 2;
}

@keyframes hero-slide {
  0%, 5.8% { opacity: 1; transform: scale(1); }
  6.7%, 99.1% { opacity: 0; transform: scale(1.035); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel img { animation: none; opacity: 0; }
  .hero-carousel img:first-child { opacity: 1; }
}

.divider-slow .marquee {
  animation-duration: 36s;
}

.divider .marquee {
  align-items: center;
  line-height: 1.45;
}

.divider .marquee span {
  flex: none;
}

.logo {
  width: 220px;
  height: 74px;
  display: flex;
  align-items: center;
  font-size: 0;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 74px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.about-logo {
  width: min(100%, 520px);
  margin-top: 24px;
}

.about-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.about-copy > p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: -22px;
}

.marquee span {
  font-weight: 700;
}

.about-copy > p:not(.eyebrow) {
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 760px) {
  .logo { width: 170px; height: 58px; }
  .logo img { max-height: 58px; }
  .about-logo { width: min(100%, 390px); margin-top: 18px; }
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-button {
  width: auto;
  min-width: 220px;
  height: 72px;
  padding: 0 28px;
  border: 1px solid rgba(252, 255, 253, .55);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background .3s, transform .3s;
}

.social-button img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.social-button span {
  font: 500 12px 'Satoshi', sans-serif;
  letter-spacing: .04em;
  white-space: nowrap;
}

.social-button:hover {
  background: #616467;
  transform: translateY(-4px);
}

@media (max-width: 760px) {
  .contact-links { align-items: stretch; }
  .social-button { width: 100%; min-width: 0; height: 60px; padding: 0 20px; }
  .social-button img { width: 24px; height: 24px; }
  .social-button span { font-size: 11px; }
}

footer {
  border-top: 0;
}

.packages {
  padding: 120px 3.2vw 140px;
  background: #FCFFFD;
}

.packages-head {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  margin-bottom: 76px;
}

.packages-head h2 {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.055em;
}

.packages-head h2 em {
  font-family: 'Clash Display', sans-serif;
  font-weight: 400;
}

.packages-head > p:last-child {
  margin: 8px 0 0;
  max-width: 290px;
  font-size: 15px;
  line-height: 1.5;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #050505;
}

.packages-grid article {
  min-width: 0;
  min-height: 390px;
  padding: 28px 30px 30px;
  border-right: 1px solid #050505;
  display: flex;
  flex-direction: column;
  transition: background .35s;
}

.packages-grid article:last-child { border-right: 0; }
.packages-grid article:hover { background: #D3E6DF; }
.packages-grid article > span { font: 11px 'Satoshi', sans-serif; letter-spacing: .1em; }
.packages-grid h3 { margin-top: 90px; margin-bottom: 24px; font-size: clamp(26px, 2.5vw, 42px); line-height: 1.12; overflow-wrap: break-word; }
.packages-grid p { max-width: 310px; margin-top: 0; font-size: 16px; line-height: 1.7; }
.packages-grid a { margin-top: auto; padding-bottom: 8px; border-bottom: 1px solid; width: max-content; max-width: 100%; font: 11px 'Satoshi', sans-serif; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 1180px) {
  .packages { padding-inline: 5vw; }
  .packages-head { grid-template-columns: .8fr 1.5fr 1fr; }
  .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packages-grid article { min-height: 340px; border-bottom: 1px solid #050505; padding: 28px 4vw 30px; }
  .packages-grid article:nth-child(even) { border-right: 0; }
  .packages-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .packages-grid h3 { margin-top: 65px; font-size: clamp(30px, 4vw, 44px); }
}

@media (max-width: 760px) {
  .packages { padding: 78px 20px 90px; }
  .packages-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 50px; }
  .packages-head > p:last-child { max-width: 100%; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-grid article { min-height: 300px; border-right: 0; border-bottom: 1px solid #050505; padding-inline: 0; }
  .packages-grid article:nth-last-child(-n+2) { border-bottom: 1px solid #050505; }
  .packages-grid article:last-child { border-bottom: 0; }
  .packages-grid h3 { margin-top: 55px; font-size: clamp(30px, 10vw, 40px); }
}

.locations {
  padding: 120px 3.2vw 135px;
  background: #616467;
  color: #FCFFFD;
}

.locations-head {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  margin-bottom: 76px;
}

.locations-head h2 {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.055em;
}

.locations-head h2 em { font-family: 'Clash Display', sans-serif; font-weight: 400; }
.locations-head > p:last-child { margin: 8px 0 0; max-width: 300px; font-size: 15px; line-height: 1.5; }

.locations-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.locations-logo img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5vw;
}

.location-image { aspect-ratio: 4 / 5; overflow: hidden; }
.location-map { aspect-ratio: 16 / 9; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-image img { filter: saturate(.72); transition: transform .7s, filter .5s; }
.locations-grid article:hover .location-image img { transform: scale(1.035); filter: saturate(1); }
.locations-grid article > div:last-child { display: grid; grid-template-columns: 36px 1fr; column-gap: 8px; margin-top: 18px; }
.locations-grid span { font: 10px 'Satoshi', sans-serif; letter-spacing: .1em; padding-top: 7px; }
.locations-grid h3 { font-size: clamp(28px, 3vw, 44px); }
.locations-grid p { grid-column: 2; max-width: 310px; margin: 8px 0 0; color: rgba(252,255,253,.75); line-height: 1.45; }
@media (max-width: 760px) {
  .locations { padding: 78px 20px 90px; }
  .locations-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 50px; }
  .locations-head > p:last-child { max-width: 100%; }
  .locations-logo img { width: min(100%, 430px); }
  .locations-grid { grid-template-columns: 1fr; gap: 55px; }
  .location-image { aspect-ratio: 4 / 5; }
  .location-map { aspect-ratio: 16 / 9; }
}

.about,
.locations {
  background: #F5FFF9;
  color: #050505;
}

.locations-grid p {
  color: rgba(5, 5, 5, .72);
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, .72fr);
  align-items: center;
  gap: clamp(38px, 6vw, 112px);
  margin: 42px 0 68px;
}

.contact-watermark {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 100%;
  min-width: 0;
}

.contact-watermark img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  opacity: .28;
  filter: invert(1);
  mix-blend-mode: screen;
}

.contact .contact-intro h2 {
  margin: 0;
}

@media (max-width: 900px) {
  .contact-intro {
    grid-template-columns: minmax(0, 1.38fr) minmax(180px, .62fr);
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .contact-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 32px 0 50px;
  }

  .contact-watermark img {
    width: min(70vw, 280px);
    opacity: .24;
  }
}
