@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/CormorantGaramond-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/CormorantGaramond-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Fraunces-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Fraunces-700.woff2') format('woff2');
}

:root {
  --bg: #14120f;
  --ink: #f3ede2;
  --ink-muted: #cfc4ae;
  --gold: #c8a765;
  --rule: rgba(200, 167, 101, 0.35);
  --serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans: 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Menu slide: "Evening of Elegance" — deep emerald & gold */
  --menu-bg-1: #06110f;
  --menu-bg-2: #0b201c;
  --menu-gold: #d4b968;
  --menu-gold-soft: rgba(212, 185, 104, 0.4);
  --menu-cream: #f4ecd8;
  --menu-muted: #9db3a8;
  --menu-serif: 'Cormorant Garamond', var(--serif);
  --menu-serif-bold: 'Fraunces', var(--serif);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow: hidden;
}

#stage {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.stage-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.stage-layer.is-visible {
  opacity: 1;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- Menu slides --- */

.slide--menu {
  background:
    radial-gradient(ellipse at 50% -10%, rgba(212, 185, 104, 0.07), transparent 55%),
    linear-gradient(160deg, var(--menu-bg-2), var(--menu-bg-1));
  padding: 1.2vh 1.2vw;
  text-align: center;
  justify-content: flex-start;
}

.slide--menu::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 12vw rgba(0, 0, 0, 0.45);
}

.menu-frame {
  /* Frame border removed for now — may bring it back later. */
  position: relative;
  z-index: 1;
  width: 99%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6% 1%;
  transform-origin: top center;
}

.menu-frame__corner {
  position: absolute;
  width: 3.2vw;
  height: 3.2vw;
  opacity: 0.6;
}
.menu-frame__corner--tl { top: 0.7vw; left: 0.7vw; }
.menu-frame__corner--tr { top: 0.7vw; right: 0.7vw; transform: scaleX(-1); }

.slide__menu-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.5vw;
  margin-bottom: 2.2vh;
}

.slide__eyebrow {
  font-family: var(--menu-serif);
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 1.8vw;
  color: var(--menu-gold);
  text-transform: uppercase;
  position: relative;
}

.slide__menu-price {
  font-family: var(--menu-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 3.2vw;
  line-height: 1;
  color: var(--menu-cream);
  position: relative;
}

.slide__menu-price-rule {
  display: block;
  width: 5.5vw;
  height: 1px;
  margin: 0 auto 3.8vh;
  background: var(--menu-gold-soft);
  position: relative;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 1.8vw;
  width: 100%;
  text-align: center;
  position: relative;
}

.menu-columns--1 { grid-template-columns: minmax(0, 1fr); }
.menu-columns--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.menu-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.menu-column__title {
  margin: 0 0 3vh 0;
  display: flex;
  justify-content: center;
}

.menu-column__title span {
  display: inline-block;
  font-family: var(--menu-serif-bold);
  font-weight: 700;
  font-size: 1.7vw;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ecd8a3;
  background: rgba(212, 185, 104, 0.12);
  border: 1px solid rgba(212, 185, 104, 0.6);
  padding: 1.1vh 1.9vw 0.9vh;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

.menu-items {
  list-style: none;
  margin: 0 0 2.2vh 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.menu-items li:not(:last-child)::after {
  content: '';
  display: block;
  width: 0.55vw;
  height: 0.55vw;
  background: var(--menu-gold);
  opacity: 0.55;
  transform: rotate(45deg);
  margin: 2.4vh auto;
}

.menu-item__name {
  font-family: var(--menu-serif-bold);
  font-weight: 600;
  font-size: 2.7vw;
  line-height: 1.25;
  color: var(--menu-cream);
  display: block;
}

.menu-item__desc {
  margin: 0.7vh 0 0 0;
  font-family: var(--menu-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.9vw;
  line-height: 1.3;
  color: var(--menu-muted);
}

/* --- Communication slides --- */

.slide--comm {
  background: var(--bg);
}

.slide__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6vh 8vw;
  background: linear-gradient(to top, rgba(10, 9, 7, 0.88) 0%, rgba(10, 9, 7, 0.35) 60%, transparent 100%);
  text-align: left;
}

.slide__overlay h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.2vw;
  margin: 0 0 1vh 0;
  color: var(--ink);
}

.slide__overlay p {
  font-family: var(--sans);
  font-size: 1.3vw;
  font-weight: 300;
  color: var(--ink-muted);
  margin: 0;
  max-width: 60vw;
}

.slide--comm-text {
  text-align: center;
  padding: 6vh 10vw;
}

.slide--comm-text h2 {
  font-family: var(--serif);
  font-size: 3.4vw;
  color: var(--ink);
  margin: 0 0 2vh 0;
}

.slide--comm-text p {
  font-family: var(--sans);
  font-size: 1.4vw;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 60vw;
}

/* --- Idle / welcome slide --- */

.slide--idle {
  text-align: center;
}

.slide--idle .brand {
  font-family: var(--serif);
  font-size: 5vw;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.slide--idle .tagline {
  margin-top: 2vh;
  font-family: var(--sans);
  font-size: 1.2vw;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
