:root {
  --black: #080707;
  --paper: #f8f4ee;
  --red: #c71923;
  --muted: #bdb5ad;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
}

button,
input {
  font: inherit;
}

.page {
  display: none;
  min-height: 100vh;
}

.page.is-active {
  display: block;
}

.brand-logo {
  display: block;
  width: clamp(118px, 11vw, 142px);
  height: auto;
}

.logo-button {
  display: inline-block;
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}

.entry-logo {
  justify-self: center;
}

.entry-logo .brand-logo {
  width: clamp(250px, 54vw, 520px);
  mix-blend-mode: screen;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
}

.entry-page {
  display: none;
  min-height: 100vh;
  padding: 32px 6vw;
  background: radial-gradient(circle at 50% 46%, #21100f 0, #080707 45%);
}

.entry-page.is-active {
  display: flex;
  flex-direction: column;
}

.entry-content {
  flex: 1;
  display: grid;
  place-content: center;
  text-align: center;
}

.entry-content h1,
.launch-content h1 {
  margin: 25px 0 0;
  font: 600 clamp(42px, 7vw, 98px) / .88 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.red-line {
  width: 56px;
  height: 1px;
  margin: 30px auto;
  background: var(--red);
}

.choice-buttons {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.text-button,
.back-button {
  padding: 8px 2px;
  border: 0;
  background: none;
  color: var(--paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  cursor: pointer;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-transform: uppercase;
}

.back-button span {
  font-family: Arial, sans-serif;
  font-size: 1.05em;
  line-height: 1;
}

.text-button {
  border-bottom: 1px solid transparent;
}

.text-button--red {
  color: var(--red);
  border-color: var(--red);
}

.page-number {
  display: none;
}

.story-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 118px;
  padding: 22px 6vw;
  background: #030303;
}

.reference-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 118px);
  padding: 32px 6vw;
  line-height: 0;
  background: #030303;
}

.reference-image-section img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(86vh, 900px);
  object-fit: contain;
}

.copy-section {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(420px, 680px);
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 6vw, 96px);
  min-height: calc(100vh - 118px);
  padding: clamp(34px, 5vw, 64px) 7vw;
  background: #070606;
}

.copy-section__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  width: min(100%, 390px);
  min-height: 0;
  line-height: 0;
  overflow: hidden;
}

.copy-section__image-wrap img {
  display: block;
  width: auto;
  max-width: none;
  height: min(78vh, 820px);
  object-fit: contain;
  transform: translateX(-10%);
}

.copy-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  padding: 0;
}

.copy-section--image-only {
  grid-template-columns: minmax(280px, 520px);
}

.copy-section--image-only .copy-section__image-wrap {
  justify-self: center;
  width: min(100%, 520px);
  overflow: visible;
}

.copy-section--image-only .copy-section__image-wrap img {
  max-width: 100%;
  height: min(78vh, 820px);
  transform: none;
}

.copy-section h2,
.menu-section h2,
.final-callout h2 {
  margin: 18px 0;
  font: 600 clamp(42px, 5vw, 76px) / .92 "Cormorant Garamond", serif;
}

em {
  color: var(--red);
  font-style: normal;
}

.copy-section p {
  max-width: 500px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.menu-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 118px);
  padding: clamp(72px, 9vw, 118px) 24px clamp(28px, 5vw, 64px);
  background: #050505;
  scroll-margin-top: 118px;
}

.menu-card {
  width: min(100%, 540px, calc((100vh - 190px) * .5625));
  aspect-ratio: 9 / 16;
  container-type: inline-size;
  min-height: 0;
  padding: clamp(54px, 12.3%, 118px) clamp(18px, 7%, 38px) clamp(44px, 8.2%, 78px);
  border: 1px solid rgba(255, 255, 255, .035);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, .055), transparent 30%),
    radial-gradient(circle at 50% 98%, rgba(255, 255, 255, .05), transparent 31%),
    linear-gradient(180deg, #050505 0%, #010101 100%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .025), 0 24px 80px rgba(0, 0, 0, .45);
}

.menu-card__header {
  text-align: center;
}

.menu-card h2 {
  margin: 0;
  color: #d8d2d0;
  font: 600 clamp(36px, 10.75cqw, 58px) / .86 "Cormorant Garamond", serif;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(255, 255, 255, .2);
}

.menu-card h2 em {
  color: var(--red);
  font-size: 1.04em;
  letter-spacing: 0;
}

.menu-card__rule {
  position: relative;
  width: 86%;
  height: 1px;
  margin: clamp(26px, 8.7%, 47px) auto clamp(30px, 10%, 54px);
  background: linear-gradient(90deg, transparent, rgba(199, 25, 35, .9) 50%, transparent);
}

.menu-card__rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 14px rgba(199, 25, 35, .55);
}

.menu-card__rule--bottom {
  margin: clamp(34px, 11.8%, 64px) auto 0;
}

.menu-card__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-card__list li {
  display: grid;
  grid-template-columns: clamp(66px, 20.7%, 112px) minmax(0, 1fr);
  gap: clamp(16px, 5.2%, 28px);
  align-items: center;
  min-height: 0;
  padding: clamp(22px, 6.85%, 37px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .085);
}

.menu-card__list li > div {
  min-width: 0;
}

.menu-card__list li:last-child {
  border-bottom: 0;
}

.menu-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(58px, 15.9cqw, 86px);
  height: clamp(58px, 15.9cqw, 86px);
}

.menu-card__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(-33px, -6.1cqw, -20px);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .14);
  transform: translateY(-50%);
}

.menu-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-card h3 {
  margin: 0;
  color: #d9d4d1;
  font: 600 clamp(25px, 6.85cqw, 37px) / .96 "Cormorant Garamond", serif;
  text-shadow: 0 2px 12px rgba(255, 255, 255, .16);
}

.menu-card p {
  margin: clamp(8px, 2.8cqw, 15px) 0 clamp(6px, 1.85cqw, 10px);
  color: rgba(255, 255, 255, .45);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(13px, 3.3cqw, 18px);
  letter-spacing: .11em;
  line-height: 1;
}

.menu-card__list div > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(5px, 1.65cqw, 9px);
  color: #c7c0bc;
  font-family: "Cormorant Garamond", serif;
  max-width: 100%;
  font-size: clamp(8.5px, 2.02cqw, 11px);
  letter-spacing: .025em;
  line-height: 1.2;
  white-space: normal;
}

.menu-card b {
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background: var(--red);
}

.full-card-section {
  display: flex;
  justify-content: center;
  padding: clamp(72px, 9vw, 118px) 24px clamp(28px, 5vw, 64px);
  background: #050505;
  scroll-margin-top: 118px;
}

.full-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 540px, calc((100vh - 190px) * .5625));
  aspect-ratio: 9 / 16;
  container-type: inline-size;
  padding: clamp(48px, 9.5%, 72px) clamp(28px, 7%, 44px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .035);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, .055), transparent 30%),
    radial-gradient(circle at 50% 76%, rgba(199, 25, 35, .08), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .045), transparent 32%),
    linear-gradient(180deg, #050505 0%, #010101 100%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .025), 0 24px 80px rgba(0, 0, 0, .45);
}

.full-card__rule {
  position: relative;
  width: 56%;
  height: 1px;
  margin: 0 auto clamp(30px, 8.5cqw, 46px);
  background: linear-gradient(90deg, transparent, rgba(199, 25, 35, .9) 50%, transparent);
}

.full-card__rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(199, 25, 35, .58);
  transform: translate(-50%, -50%) rotate(45deg);
}

.full-card__intro {
  margin: 0 0 clamp(18px, 5.5cqw, 30px);
  color: #d7d1ce;
  font: 600 clamp(22px, 5.7cqw, 31px) / 1 "Cormorant Garamond", serif;
  text-shadow: 0 2px 11px rgba(255, 255, 255, .18);
}

.full-card h2 {
  margin: 0;
  color: #f1eeec;
  font: 700 clamp(28px, 7.5cqw, 40px) / 1.18 "Cormorant Garamond", serif;
  letter-spacing: .01em;
  text-shadow: 0 2px 12px rgba(255, 255, 255, .2);
}

.full-card__copy {
  margin: clamp(22px, 6.3cqw, 34px) 0 clamp(30px, 8.5cqw, 46px);
  color: #bcb5b1;
  font: 600 clamp(15px, 3.85cqw, 21px) / 1.25 "Cormorant Garamond", serif;
  text-shadow: 0 2px 10px rgba(255, 255, 255, .12);
}

.full-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4.2cqw, 22px);
  min-width: clamp(170px, 43cqw, 232px);
  min-height: clamp(48px, 10cqw, 57px);
  padding: 0 clamp(28px, 7cqw, 42px);
  border: 1px solid var(--red);
  border-radius: 999px;
  background: rgba(0, 0, 0, .16);
  color: #f1eeec;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 4.25cqw, 23px);
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1;
  box-shadow: 0 0 28px rgba(199, 25, 35, .24);
  cursor: pointer;
}

.full-card__button span {
  font-family: Montserrat, Arial, sans-serif;
  font-size: .95em;
  letter-spacing: 0;
}

.full-card__rule--bottom {
  margin: clamp(50px, 12cqw, 64px) auto clamp(34px, 8.5cqw, 45px);
}

.full-card__footer {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(6px, 1.55cqw, 8px);
  font-weight: 700;
  letter-spacing: .55em;
}

.final-callout {
  padding: 110px 24px;
  text-align: center;
  background: linear-gradient(135deg, #100909, #080707);
}

.outline-button {
  margin-top: 20px;
  padding: 14px 28px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  cursor: pointer;
}

.launch-page {
  background:
    linear-gradient(120deg, rgba(239, 229, 211, .92), rgba(250, 247, 240, .98) 42%, rgba(221, 232, 222, .88)),
    #f6f0e6;
  color: #243a32;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  grid-template-rows: auto 1fr;
}

.launch-page.is-active {
  display: grid;
}

.launch-header {
  display: flex;
  align-items: center;
  padding: clamp(44px, 5vw, 72px) clamp(34px, 7vw, 110px) 0;
  background: transparent;
}

.launch-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(42px, 5vw, 72px) clamp(34px, 7vw, 110px) clamp(64px, 7vw, 96px);
  background:
    radial-gradient(circle at 26% 44%, rgba(184, 146, 93, .2), transparent 34%),
    transparent;
}

.brand-logo--dark {
  margin-bottom: 0;
  filter: none;
}

.launch-content .section-label {
  color: #2f6f5e;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(47, 111, 94, .14);
}

.launch-content h1 {
  max-width: 720px;
  margin-top: clamp(24px, 4vw, 46px);
  color: #263b34;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .9;
  text-shadow: 0 10px 28px rgba(81, 65, 45, .1);
}

.launch-content h1 em {
  color: #b88a4a;
}

.launch-copy {
  max-width: 500px;
  margin: clamp(24px, 3vw, 34px) 0 clamp(40px, 5vw, 58px);
  color: #52645d;
  font-size: 15px;
  line-height: 1.8;
}

.notify-form {
  width: min(100%, 500px);
  max-width: 500px;
}

.notify-form label {
  display: block;
  margin-bottom: 12px;
  color: #263b34;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.notify-form__row {
  display: flex;
  border-bottom: 1px solid rgba(38, 59, 52, .45);
}

.notify-form input {
  min-width: 0;
  flex: 1;
  padding: 14px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #263b34;
  font-size: 13px;
}

.notify-form input::placeholder {
  color: rgba(38, 59, 52, .5);
}

.notify-form button {
  padding: 0 0 0 20px;
  border: 0;
  background: none;
  color: #2f6f5e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}

.form-message {
  min-height: 20px;
  margin: 11px 0 0;
  color: #52645d;
  font-size: 11px;
}

.instagram-link {
  margin-top: clamp(54px, 6vw, 86px);
  color: #2f6f5e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
}

.launch-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(24px, 4vw, 56px) clamp(22px, 4vw, 70px) clamp(24px, 4vw, 56px) 0;
  line-height: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(184, 146, 93, .18), transparent 30%),
    transparent;
}

.launch-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  align-self: center;
  object-fit: contain;
  background: #fffdf8;
  box-shadow: 0 28px 80px rgba(58, 73, 63, .18);
}

@media (max-width: 900px) {
  .copy-section,
  .launch-page.is-active {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .launch-header,
  .launch-content,
  .launch-image {
    grid-column: 1;
  }

  .launch-header {
    grid-row: 1;
  }

  .launch-image {
    grid-row: 2;
  }

  .launch-content {
    grid-row: 3;
  }
}

@media (max-width: 720px) {
  .entry-page {
    padding: 25px;
  }

  .story-header {
    min-height: 96px;
    padding: calc(14px + env(safe-area-inset-top)) 25px 14px;
    align-items: center;
  }

  .back-button {
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: none;
  }

  .reference-image-section {
    min-height: auto;
    padding: 0;
  }

  .reference-image-section img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .copy-section,
  .menu-section {
    gap: 34px;
    padding: 38px 18px;
  }

  .menu-card {
    width: min(100%, 430px);
    min-height: auto;
    padding: 84px 26px 56px;
  }

  .menu-card h2 {
    font-size: clamp(42px, 12vw, 47px);
  }

  .menu-card h2 em {
    font-size: 1.04em;
  }

  .menu-card__rule {
    width: min(100%, 330px);
    margin: 38px auto 40px;
  }

  .menu-card__list li {
    grid-template-columns: 78px 1fr;
    gap: 22px;
    min-height: 118px;
    padding: 29px 0;
  }

  .menu-card__icon {
    width: 64px;
    height: 64px;
  }

  .menu-card__icon::after {
    right: -24px;
    height: 66px;
  }

  .menu-card h3 {
    font-size: clamp(27px, 7.6vw, 31px);
  }

  .menu-card p {
    margin: 10px 0 7px;
    font-size: 14px;
  }

  .menu-card__list div > span {
    gap: 6px;
    font-size: 10px;
    white-space: normal;
  }

  .full-card-section {
    padding: 38px 18px;
  }

  .full-card {
    width: min(100%, 430px);
    padding: 52px 24px 46px;
  }

  .full-card__rule {
    width: 66%;
  }

  .full-card__button {
    letter-spacing: .22em;
  }

  .copy-section__image-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .copy-section__image-wrap {
    justify-self: center;
    width: min(100%, 390px);
    aspect-ratio: 3 / 4;
  }

  .copy-section__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 32% center;
    transform: none;
  }

  .copy-section--image-only .copy-section__image-wrap {
    width: min(100%, 520px);
    aspect-ratio: auto;
    overflow: visible;
  }

  .copy-section--image-only .copy-section__image-wrap img {
    height: auto;
    object-fit: contain;
  }

  .copy-section h2,
  .menu-section h2,
  .final-callout h2 {
    line-height: 1;
  }

  .launch-image {
    min-height: auto;
    padding: 18px 18px 0;
  }

  .launch-image img {
    width: 100%;
    max-height: 70vh;
    box-shadow: 0 18px 45px rgba(58, 73, 63, .16);
  }

  .launch-content {
    min-height: auto;
    padding: 40px 25px 64px;
  }

  .launch-header {
    min-height: 96px;
    padding: calc(14px + env(safe-area-inset-top)) 25px 14px;
  }

  .brand-logo--dark {
    margin-bottom: 0;
  }

  .launch-content .section-label {
    font-size: clamp(40px, 12vw, 56px);
  }

  .launch-content h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .notify-form__row {
    align-items: flex-end;
    gap: 14px;
  }

  .notify-form button {
    padding-left: 0;
    white-space: nowrap;
  }
}

@media (min-width: 721px) and (min-height: 900px) {
  .menu-card {
    width: min(100%, 540px);
  }
}
