*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #f7f4f0;
  --black: #100f0d;
  --terra: #a0522d;
  --muted: #e8e4dd;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.stage {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#grove-opening {
  position: absolute;
  inset: 0;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#grove-opening h1 {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--black);
}

#grove-opening h1 em {
  color: var(--terra);
  font-style: italic;
}

#interior {
  position: absolute;
  inset: 0;
  z-index: 8;
}

#interior .interior-photo {
  position: absolute;
  inset: 0;
}

#interior .interior-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
}

.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--white);
  z-index: 2;
}

#curtain-l {
  left: 0;
}

#curtain-r {
  right: 0;
}

#interior .interior-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 6rem 4rem 3.5rem;
  background: linear-gradient(
    to top,
    rgba(16, 15, 13, 0.7) 0%,
    transparent 100%
  );
}

#interior .interior-copy .label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.5);
  margin-bottom: 1.2rem;
}

#interior .interior-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 6rem 4rem 3.5rem;
  background: linear-gradient(
    to top,
    rgba(16, 15, 13, 0.7) 0%,
    transparent 100%
  );
}

#interior .interior-copy h2 {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}

#interior .interior-copy h2 em {
  color: var(--muted);
  font-style: italic;
}

#menu {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #f7f4f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #f7f4f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 9;
}
#sc-l {
  left: 0;
}
#sc-r {
  right: 0;
}
#sc-l,
#sc-r {
  position: absolute;
  top: 0;
  bottom: 0;
}

.menu-panel-row {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.menu-panel-row .menu-row-text {
  padding: 2.5rem 3.5rem;
  width: 100%;
}

.menu-panel-row .menu-row-img {
  width: 100%;
  height: 100%;
}

.menu-panel-row .menu-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-row.reverse .menu-row-text {
  border-top: none;
  border-bottom: 1px solid rgba(16, 15, 13, 0.08);
}

.menu-row.reverse .menu-row-img {
  margin-left: 0;
  margin-right: -4rem;
}

.menu-row-label {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.menu-row-label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--terra);
}

.menu-row-text h2 {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 2rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(16, 15, 13, 0.07);
  font-size: 0.78rem;
}
.menu-item:first-child {
  border-top: 1px solid rgba(16, 15, 13, 0.07);
}
.item-name {
  color: var(--black);
}
.item-price {
  font-family: "Cormorant", serif;
  font-style: italic;
  color: var(--terra);
}

#find-us {
  position: absolute; inset: 0;
  z-index: 10;
  background: #1f1208;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
}

.find-us-photo {
  overflow: hidden;
}

.find-us-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.8);
}

.find-us-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 4rem;
  width: 100%;
}


.find-us-label {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.4);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.find-us-label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: rgba(247, 244, 240, 0.4);
}

#find-us h2 {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}

.find-us-details {
  display: flex;
  gap: 6rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(247, 244, 240, 0.1);
  padding-top: 2rem;
}

.find-us-col p {
  font-size: 0.75rem;
  color: rgba(247, 244, 240, 0.6);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* mobile */

@media (max-width: 768px) {
  #interior .interior-copy {
    padding: 3rem 2rem 2rem;
  }

  #interior .interior-copy h2 {
    font-size: clamp(3rem, 7vw, 4rem);
  }

  .space-photo::after {
    background: linear-gradient(
      to top,
      rgba(16, 15, 13, 0.7) 0%,
      transparent 55%
    );
  }

  .space-text {
    right: auto;
    top: auto;
    bottom: 4rem;
    left: 1.5rem;
    right: 1.5rem;
    transform: none;
    text-align: left;
    max-width: 100%;
  }

  .space-text p {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .menu-row {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh auto;
  }
  .menu-row.reverse {
    grid-template-rows: auto 40vh;
  }
  .menu-row.reverse .menu-row-img {
    order: 2;
  }
  .menu-row-text {
    padding: 2rem 1.5rem;
  }

    #find-us {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh 1fr;
  }
}
