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

/* ── FOUC Prevention — body startet unsichtbar, JS blendet ein ── */
body {
  font-family: 'Barlow', sans-serif;
  color: #fff;
  visibility: hidden;
}

body.ready {
  visibility: visible;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
  background: #111;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1;
}

/* ── NAVBAR ── */
.hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 24px 48px;
  opacity: 0;
  transition: opacity .4s ease;
}

.hero-nav.visible {
  opacity: 1;
}

.logo {
  width: 33.333%;
  display: flex;
  justify-content: center;
}

.logo__img {
  height: 64px;
  width: auto;
  display: block;
}

.nav__spacer {
  flex: 1;
}

.nav-menu {
  width: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .72rem;
  letter-spacing: .25em;
  color: #fff;
  cursor: pointer;
}

.nav-menu__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-menu__lines span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
}

/* ── COPY LAYER ── */
.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 100px 48px 52px;
}

/* ── TOP CONTAINER ── */
.hero__top {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 960px;
  pointer-events: auto;
  margin-top: 8%;
}

.hero__headline {
  flex: 0 0 auto;
}

.hero__headline p {
  font-weight: 200;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  letter-spacing: .04em;
  line-height: 1;
}

.hero__headline h1 {
  font-weight: 800;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  letter-spacing: -.03em;
  line-height: .9;
}

.hero__blurb {
  flex: 1;
  border-left: 2px solid rgba(255,255,255,.35);
  padding-left: 40px;
}

.hero__blurb p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}

.hero__blurb strong {
  font-weight: 700;
}

/* ── BOTTOM BLOCK ── */
.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
}

/* ── ÖFFNUNGSZEITEN ── */
.hero__hours {
  text-align: center;
}

.hero__hours .row {
  margin-bottom: 14px;
}

.hero__hours .day {
  font-size: .9rem;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .85);
  font-weight: 300;
  margin-bottom: 4px;
}

.hero__hours .time {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ── CTA ── */
.hero__cta {
  display: flex;
  align-items: center;
  gap: 40px;
}

.btn-book {
  padding: 14px 36px;
  border: 1.5px solid rgba(255, 255, 255, .7);
  background: transparent;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  cursor: pointer;
  transition: background .25s;
}

.btn-book:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-explore {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── MARQUEE ── */
.marquee {
  width: 100%;
  height: 10vh;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}

.marquee__item {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2.2vh, 1.8rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 3vw;
}

.marquee__item--a {
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
}

.marquee__item--b {
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.marquee__item--c {
  font-weight: 700;
  color: #C9A96E;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background: #0d0d0d;
}

.about__left {
  display: flex;
  flex-direction: column;
  padding: 80px 64px 60px 64px;
  gap: 40px;
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity  1s ease,
    transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.about__left.visible {
  opacity: 1;
  transform: translateX(0);
}

.about__headline {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #C9A96E;
}

.about__img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 60px 72px;
  gap: 32px;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity  1s ease 0.3s,
    transform 1s cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
}

.about__right.visible {
  opacity: 1;
  transform: translateX(0);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__right p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .02em;
}

.about__right strong {
  font-weight: 600;
  color: #fff;
  font-style: italic;
}

/* ── PANELS ── */
.panels-outer {
  grid-column: 1 / -1;
}

.panels {
  display: flex;
  height: 32vh;
  min-height: 220px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.9s ease 0.5s,
    transform 0.9s ease 0.5s;
}

.panels.visible {
  opacity: 1;
  transform: translateY(0);
}

.panel {
  flex: 1;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  text-decoration: none;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.5) 100%);
  transition: background 0.4s ease;
}

.panel:hover {
  flex: 2.8;
}

.panel:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.3) 100%);
}

.panel__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  transform: translateY(12px);
  opacity: 0;
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
}

.panel:hover .panel__content {
  opacity: 1;
  transform: translateY(0);
}

.panel__title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.panel__desc {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(.8rem, 1vw, 1rem);
  font-weight: 300;
  letter-spacing: .14em;
  color: rgba(255,255,255,.75);
  text-align: center;
  margin-bottom: 8px;
}

.panel__btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1.5px solid #C9A96E;
  color: #C9A96E;
  font-family: 'Barlow', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
}

.panel__btn:hover {
  background: #C9A96E;
  color: #000;
}

/* ── CATERING ── */
.catering {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  padding-bottom: 80px;
}

.catering__ape-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 15vw, 14rem);
  letter-spacing: -.04em;
  color: rgba(210, 210, 210, .13);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  padding-top: 32px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.catering__ape-bg.visible {
  clip-path: inset(0 0% 0 0);
}

.catering__wagon {
  display: block;
  width: clamp(380px, 55%, 720px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 32px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7));
  transform: translateX(-110vw);
  transition: transform 2s cubic-bezier(0.76, 0, 0.24, 1);
}

.catering__wagon.visible {
  transform: translateX(0);
}

.catering__bottom {
  display: flex;
  align-items: flex-end;
  gap: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 64px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.8s ease,
    transform 0.8s ease;
}

.catering__bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.catering__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catering__title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: .02em;
}

.catering__title--bold {
  font-weight: 800;
  color: #fff;
}

.catering__title--light {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .7);
  font-size: .85em;
  letter-spacing: .12em;
}

.catering__text {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: rgba(255, 255, 255, .65);
  max-width: 480px;
}

.catering__cta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
}

.catering__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
  min-width: 220px;
}

.catering__event {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  cursor: pointer;
  transition: opacity .2s;
}

.catering__event:hover {
  opacity: .7;
}

.catering__event-label {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .18em;
  color: #fff;
}

.catering__event-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1) brightness(0.85);
}

/* ── FOOTER ── */
.footer {
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 64px 56px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  height: 56px;
  width: auto;
  max-width: 120px;
  display: block;
  opacity: .9;
}

.footer__tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .04em;
}

.footer__nav-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: #C9A96E;
  margin-bottom: 18px;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav ul li a {
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.footer__nav ul li a:hover {
  color: #fff;
}

.footer__info {
  display: flex;
  flex-direction: column;
}

.footer__info address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__info address p {
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
}

.footer__maps-link {
  font-family: 'Barlow', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: #C9A96E;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity .2s;
}

.footer__maps-link:hover {
  opacity: .7;
}

.footer__hours-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__hours-block p {
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
}

.footer__social {
  display: flex;
  flex-direction: column;
}

.footer__insta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, .55);
  font-family: 'Barlow', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  letter-spacing: .06em;
  transition: color .2s;
}

.footer__insta:hover {
  color: #fff;
}

.footer__insta-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: inherit;
}

.footer__rating {
  margin-top: 24px;
  font-family: 'Barlow', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .06em;
}

.footer__rating span {
  color: rgba(255, 255, 255, .4);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .06);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__bar span {
  font-family: 'Barlow', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .25);
}

.footer__bar a {
  font-family: 'Barlow', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .25);
  text-decoration: none;
  transition: color .2s;
}

.footer__bar a:hover {
  color: rgba(255, 255, 255, .6);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__left {
    padding: 56px 32px 40px;
  }

  .about__img {
    height: 260px;
    flex: none;
  }

  .about__right {
    padding: 40px 32px;
  }

  /* ── PANELS: Mobile Swipe Slider ── */
  .panels-outer {
    grid-column: 1;
    position: relative;
  }

  .panels {
    grid-column: 1;
    height: auto;
    min-height: unset;

    /* Horizontal scroll container */
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .panels::-webkit-scrollbar {
    display: none;
  }

  .panel {
    /* Each panel takes full width, fixed height */
    flex: 0 0 100%;
    width: 100%;
    height: 56vw;
    min-height: 240px;
    max-height: 380px;
    scroll-snap-align: start;

    /* Reset desktop hover transition */
    transition: none;
  }

  /* On mobile, always show panel content (no hover) */
  .panel .panel__content {
    opacity: 1;
    transform: translateY(0);
  }

  .panel__title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .panel__desc {
    font-size: clamp(.85rem, 3.5vw, 1rem);
  }

  /* Rounded panels on mobile */
  .panel {
    border-radius: 18px;
    margin: 0 6px;
    flex: 0 0 calc(100% - 12px);
  }

  /* First/last panel outer spacing */
  .panel:first-child {
    margin-left: 16px;
  }

  .panel:last-child {
    margin-right: 16px;
  }

  /* Arrow buttons */
  .panels-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background .2s, opacity .2s;
  }

  .panels-arrow svg {
    width: 18px;
    height: 18px;
    color: #111;
    flex-shrink: 0;
  }

  .panels-arrow:hover {
    background: #fff;
  }

  .panels-arrow--prev {
    left: 20px;
  }

  .panels-arrow--next {
    right: 20px;
  }

  /* Dots indicator */
  .panels-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 8px;
    background: #0d0d0d;
  }

  .panels-dots__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transition: background .25s;
    cursor: pointer;
  }

  .panels-dots__dot.active {
    background: #C9A96E;
  }

  .catering__bottom {
    flex-direction: column;
    padding: 40px 32px 0;
    gap: 40px;
  }

  .catering__right {
    align-self: stretch;
  }

  .catering__event {
    justify-content: flex-start;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 56px 32px 40px;
    gap: 40px;
  }

  .footer__bar {
    padding: 20px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 700px) {
  .hero-nav { padding: 20px 24px; }
  .logo { width: auto; justify-content: flex-start; }
  .nav-menu { padding-right: 0; }
  .hero__copy { padding: 90px 24px 32px; gap: 20px; }
  .hero__top { flex-direction: column; gap: 16px; max-width: 100%; }
  .hero__blurb { display: none; }
  .hero__cta { gap: 24px; }

  .catering__ape-bg {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  .catering__wagon {
    width: 90%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
  }

  .footer__bar {
    padding: 20px 24px;
  }
}

/* ── LOADING ANIMATION ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent var(--r, 0%), #000 var(--r, 0%));
          mask-image: radial-gradient(circle at 50% 50%, transparent var(--r, 0%), #000 var(--r, 0%));
}

#loader-logo {
  position: fixed;
  z-index: 101;
  top: 50%;
  left: 66.666%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    top      1.1s cubic-bezier(0.76, 0, 0.24, 1),
    left     1.1s cubic-bezier(0.76, 0, 0.24, 1),
    transform 1.1s cubic-bezier(0.76, 0, 0.24, 1),
    opacity  0.5s ease;
}

#loader-logo.show {
  opacity: 1;
}

#loader-logo img {
  height: 50vh;
  width: auto;
  display: block;
  transition: height 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

#loader-logo.to-nav img {
  height: 64px;
}

#loader-logo.to-nav {
  top: 52px;
  left: 16.666%;
  transform: translate(-50%, -50%);
}

#loader-logo.fade-out {
  opacity: 0;
}

.logo__img.hidden {
  opacity: 0;
}

.hero__top,
.hero__bottom {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   0.9s ease,
    transform 0.9s ease;
}

.hero__top.visible,
.hero__bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FULLSCREEN NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;

  /* Frosted transparent dark background */
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay.ready {
  display: flex;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Close button top-right */
.nav-overlay__close {
  position: absolute;
  top: 28px;
  right: 48px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  padding: 4px;
  transition: opacity .2s;
}

.nav-overlay__close:hover {
  opacity: .6;
}

.nav-overlay__close-icon {
  width: 22px;
  height: 22px;
  position: relative;
}

.nav-overlay__close-icon::before,
.nav-overlay__close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
}

.nav-overlay__close-icon::before { transform: translateY(-50%) rotate(45deg); }
.nav-overlay__close-icon::after  { transform: translateY(-50%) rotate(-45deg); }

/* Centered nav links */
.nav-overlay__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-overlay__link {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s, opacity .2s;

  /* Stagger reveal */
  opacity: 0;
  transform: translateY(24px);
  transition:
    color     .2s ease,
    opacity   .5s cubic-bezier(0.76, 0, 0.24, 1),
    transform .5s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay.open .nav-overlay__link:nth-child(1) { opacity: 1; transform: none; transition-delay: .12s; }
.nav-overlay.open .nav-overlay__link:nth-child(2) { opacity: 1; transform: none; transition-delay: .18s; }
.nav-overlay.open .nav-overlay__link:nth-child(3) { opacity: 1; transform: none; transition-delay: .24s; }
.nav-overlay.open .nav-overlay__link:nth-child(4) { opacity: 1; transform: none; transition-delay: .30s; }
.nav-overlay.open .nav-overlay__link:nth-child(5) { opacity: 1; transform: none; transition-delay: .36s; }

.nav-overlay__link:hover {
  color: #C9A96E;
}

/* Thin divider between links */
.nav-overlay__link + .nav-overlay__link {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 8px;
  margin-top: 8px;
}

/* Bottom meta row */
.nav-overlay__meta {
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .08);
  opacity: 0;
  transition: opacity .4s ease .4s;
}

.nav-overlay.open .nav-overlay__meta {
  opacity: 1;
}

.nav-overlay__meta p {
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
}

.nav-overlay__meta a {
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}

.nav-overlay__meta a:hover {
  color: #fff;
}

/* Prevent body scroll when overlay is open */
body.nav-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .nav-overlay__close {
    right: 24px;
    top: 24px;
  }

  .nav-overlay__meta {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}