@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --cream: #fdfaf3;
  --yellow: #f8edc3;
  --mint: #c3dfc9;
  --sky: #bfd9ec;
  --blush: #f8d0cb;
  --pink: #fba9b6;
  --navy: #0b2a54;
  --blue: #0e63b3;
  --slate: #4a5c77;
  --line: #0b2a5424;
  --white: #fff;
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px #0b2a5417;
  --shadow-lift: 0 18px 44px #0b2a5426;
  --slide: .76s cubic-bezier(.65, 0, .2, 1);
  --bg: var(--pink);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  overscroll-behavior: none;
  font-size: 16px;
  line-height: 1.6;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--navy);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #0b2a5433;
  border-radius: 99px;
}

.stage {
  background: var(--bg);
  transition: background var(--slide);
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.track {
  will-change: transform;
  width: 500vw;
  transition: transform var(--slide);
  display: flex;
  position: absolute;
  inset: 0;
}

.scene {
  flex-direction: column;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.scene-scroll {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  padding: clamp(94px, 13.5vh, 146px) clamp(20px, 6vw, 88px) clamp(112px, 15vh, 148px);
  overflow: hidden auto;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.scene-body {
  flex-direction: column;
  flex: 1;
  min-height: 0;
  display: flex;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
}

.section-title {
  margin-top: 10px;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 800;
}

.lede {
  max-width: 54ch;
  color: var(--slate);
  margin-top: 16px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
}

.brandmark {
  aspect-ratio: 212 / 119;
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.brandmark img {
  width: 147.6%;
  max-width: none;
  height: auto;
  margin-top: -58.5%;
  margin-left: -31.1%;
  display: block;
}

.btn {
  font-family: var(--font-display);
  letter-spacing: .01em;
  cursor: pointer;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, color .2s, transform .18s, box-shadow .2s, border-color .2s;
  display: inline-flex;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--blue);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.btn-white {
  color: var(--navy);
  box-shadow: var(--shadow);
  background: #fff;
}

.btn-white:hover, .btn-white:focus-visible {
  box-shadow: var(--shadow-lift);
  outline: none;
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--navy);
  border: 1.5px solid var(--navy);
  background: none;
}

.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--navy);
  color: #fff;
  outline: none;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13.5px;
}

.btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

.hud {
  z-index: 20;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.hud > * {
  pointer-events: none;
}

.hud .brand, .hud .nav, .hud .arrow {
  pointer-events: auto;
}

.hud-top {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.6vw, 26px) clamp(18px, 5vw, 52px);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.brand {
  cursor: pointer;
  background: none;
  border: none;
  width: clamp(96px, 10.5vw, 132px);
  padding: 0;
  display: block;
}

.hud-info {
  font-family: var(--font-body);
  color: var(--navy);
  opacity: .75;
  font-size: 13px;
  font-weight: 500;
}

.hud-bottom {
  justify-content: center;
  padding: clamp(16px, 2.6vw, 28px) clamp(14px, 4vw, 44px);
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  scrollbar-width: none;
  background: #ffffffd1;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 6px;
  display: flex;
  overflow-x: auto;
}

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

.nav-item {
  font-family: var(--font-display);
  white-space: nowrap;
  color: var(--slate);
  cursor: pointer;
  border-radius: 999px;
  padding: 10px clamp(13px, 1.8vw, 22px);
  font-size: clamp(12.5px, 1.3vw, 14px);
  font-weight: 500;
  transition: background .2s, color .2s;
}

.nav-item:hover {
  color: var(--navy);
}

.nav-item[data-on="true"] {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.arrow {
  width: 46px;
  height: 46px;
  color: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #ffffffe6;
  border-radius: 50%;
  place-items: center;
  font-size: 17px;
  transition: transform .18s, box-shadow .2s, opacity .2s;
  display: grid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.arrow:hover:not(:disabled) {
  box-shadow: var(--shadow-lift);
}

.arrow-l {
  left: clamp(10px, 2vw, 22px);
}

.arrow-r {
  right: clamp(10px, 2vw, 22px);
}

.arrow-l:hover:not(:disabled) {
  transform: translateY(-50%)translateX(-3px);
}

.arrow-r:hover:not(:disabled) {
  transform: translateY(-50%)translateX(3px);
}

.arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.home {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(94px, 13.5vh, 146px) 0 clamp(112px, 15vh, 148px) clamp(20px, 6vw, 88px);
  display: grid;
  overflow: hidden auto;
}

.home-copy {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2vh, 22px);
  min-width: 0;
  max-width: 600px;
  display: flex;
  position: relative;
}

.home-logo {
  width: clamp(180px, 24vw, 330px);
  margin-bottom: 2px;
}

.home-title {
  color: var(--navy);
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 700;
}

.home-title em {
  color: var(--blue);
  font-style: normal;
}

.home-text {
  max-width: 42ch;
  color: var(--navy);
  opacity: .82;
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.75;
}

.home-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  display: flex;
}

.home-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  display: flex;
}

.home-tags li {
  color: var(--navy);
  background: #ffffffa8;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
}

.home-visual {
  pointer-events: none;
  z-index: 0;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.home-visual img {
  object-fit: contain;
  filter: drop-shadow(-24px 32px 52px #0b2a543d);
  width: auto;
  max-width: none;
  height: min(134vh, 1020px);
  max-height: none;
  margin-top: clamp(56px, 10vh, 104px);
  display: block;
}

.deck-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(94px, 13.5vh, 140px) clamp(20px, 6vw, 88px) 0;
  display: flex;
}

.deck-nav {
  align-items: center;
  gap: 10px;
  display: flex;
}

.deck-nav .arrow {
  position: static;
  transform: none;
}

.deck-nav .arrow:hover:not(:disabled) {
  box-shadow: var(--shadow-lift);
  transform: none;
}

.deck-nav .arrow:disabled {
  opacity: .32;
  pointer-events: none;
}

.deck-count {
  font-family: var(--font-display);
  color: var(--slate);
  text-align: right;
  min-width: 52px;
  font-size: 14px;
  font-weight: 600;
}

.deck {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  flex: 1;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  min-height: 0;
  padding: clamp(18px, 3vh, 34px) calc(50vw - min(400px, 76vw) / 2) clamp(104px, 14vh, 140px);
  display: flex;
  overflow: auto hidden;
}

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

.card {
  scroll-snap-align: center;
  border-radius: var(--radius);
  max-height: 100%;
  box-shadow: var(--shadow);
  opacity: .62;
  background: #fff;
  flex-direction: column;
  flex: 0 0 min(400px, 76vw);
  transition: transform .42s cubic-bezier(.2, .8, .3, 1), box-shadow .42s, opacity .42s;
  display: flex;
  overflow: hidden;
  transform: scale(.95);
}

.card[data-on="true"] {
  opacity: 1;
  box-shadow: var(--shadow-lift);
  transform: scale(1);
}

.card-visual {
  aspect-ratio: 4 / 3;
  background: var(--card-tint);
  flex: auto;
  place-items: center;
  min-height: 0;
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.card-art {
  filter: drop-shadow(0 10px 18px #0b2a5429);
  width: min(78%, 250px);
  max-height: 100%;
}

.card-art svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

.card-badge {
  font-family: var(--font-display);
  letter-spacing: .04em;
  color: var(--navy);
  background: #ffffffe6;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 11.5px;
  font-weight: 600;
  position: absolute;
  top: 14px;
  left: 14px;
}

.card-veggie {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 11.5px;
  font-weight: 600;
  position: absolute;
  top: 14px;
  right: 14px;
}

.card-body {
  flex-direction: column;
  flex: none;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 26px);
  display: flex;
}

.card-top {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  display: flex;
}

.card-name {
  font-size: clamp(23px, 2.7vw, 30px);
  font-weight: 700;
}

.card-price {
  font-family: var(--font-display);
  color: var(--blue);
  white-space: nowrap;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.card-tagline {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 14.5px;
  font-weight: 500;
}

.card-desc {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.72;
}

.deck-dots {
  justify-content: center;
  gap: 7px;
  display: flex;
  position: absolute;
  bottom: clamp(80px, 11vh, 108px);
  left: 0;
  right: 0;
}

.deck-dots i {
  background: #0b2a5438;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  transition: width .26s, background .26s;
}

.deck-dots i[data-on="true"] {
  background: var(--navy);
  border-radius: 999px;
  width: 24px;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  align-items: start;
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(26px, 4vh, 42px);
  display: grid;
}

.shot {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
}

.shot:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.shot-frame {
  background: var(--shot-tint);
}

.shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-caption {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  padding: 16px 20px 20px;
  display: flex;
}

.shot-caption h3 {
  font-size: 18px;
  font-weight: 700;
}

.shot-caption span {
  color: var(--slate);
  font-size: 13.5px;
}

.gallery-sub {
  margin-top: clamp(30px, 4.6vh, 48px);
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 700;
}

.gallery-sub-note {
  color: var(--slate);
  margin-top: 6px;
  font-size: 15px;
}

.ingredients {
  grid-template-columns: repeat(auto-fit, minmax(clamp(112px, 15vw, 160px), 1fr));
  gap: clamp(10px, 1.6vw, 18px);
  margin: clamp(16px, 2.4vh, 24px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.ingredient {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
  background: #fff;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 10px 16px;
  transition: transform .26s, box-shadow .26s;
  display: flex;
}

.ingredient:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.ingredient-frame {
  aspect-ratio: 1;
  place-items: center;
  width: 100%;
  margin-bottom: 6px;
  display: grid;
}

.ingredient-frame img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

.ingredient strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.ingredient > span:last-child {
  color: var(--slate);
  font-size: 12.5px;
}

.gallery-cta {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: clamp(24px, 3.6vh, 38px);
  padding: clamp(22px, 3.2vw, 32px);
  display: flex;
}

.gallery-cta p {
  max-width: 46ch;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

.gallery-cta h3 {
  margin-bottom: 6px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
}

.choices {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  margin-top: clamp(26px, 4vh, 40px);
  display: grid;
}

.choice {
  text-align: left;
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #fff;
  border: 2px solid #0000;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(24px, 3.4vw, 34px);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
}

.choice:hover, .choice:focus-visible {
  box-shadow: var(--shadow-lift);
  outline: none;
  transform: translateY(-4px);
}

.choice[data-on="true"] {
  border-color: var(--navy);
}

.choice-num {
  font-family: var(--font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 600;
}

.choice-title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
}

.choice-sub {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
}

.choice-go {
  font-family: var(--font-display);
  color: var(--navy);
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  margin-top: clamp(20px, 3vh, 30px);
  padding: clamp(24px, 3.6vw, 40px);
}

.panel > h3 {
  margin-bottom: 4px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
}

.panel > p.panel-sub {
  color: var(--slate);
  margin-bottom: 22px;
  font-size: 14.5px;
}

.form {
  gap: 16px;
  display: grid;
}

.form-row {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  display: grid;
}

.field {
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  display: flex;
}

.field > span {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  color: var(--navy);
  background-color: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  appearance: none;
  padding: 13px 15px;
  font-size: 15px;
  transition: border-color .18s, background-color .18s;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  cursor: pointer;
  background-position: calc(100% - 20px) 53%, calc(100% - 14px) 53%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 40px;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  background-color: #fff;
  outline: none;
}

.field input::placeholder, .field textarea::placeholder {
  color: #93a1b7;
}

.form-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  display: flex;
}

.form-msg {
  font-size: 14px;
  font-weight: 500;
}

.form-msg[data-tone="err"] {
  color: #c4392f;
}

.form-msg[data-tone="wait"] {
  color: var(--slate);
}

.receipt {
  border-radius: var(--radius);
  background: var(--mint);
  justify-items: start;
  gap: 14px;
  padding: clamp(24px, 3.6vw, 40px);
  display: grid;
}

.receipt h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
}

.receipt p {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.8;
}

.receipt strong {
  font-weight: 600;
}

.receipt code {
  font-family: var(--font-display);
  letter-spacing: .06em;
  color: var(--blue);
  font-weight: 700;
}

.order-help {
  color: var(--slate);
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.8;
}

.order-help a {
  color: var(--blue);
  font-weight: 600;
}

.venues {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(26px, 4vh, 42px);
  display: grid;
}

.venue {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 34px);
  display: flex;
}

.venue-zip {
  background: var(--venue-tint);
  font-family: var(--font-display);
  color: var(--navy);
  border-radius: 999px;
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.venue h3 {
  font-size: clamp(21px, 2.5vw, 27px);
  font-weight: 700;
}

.venue-district {
  color: var(--slate);
  font-size: 14.5px;
}

.venue-hours {
  border-top: 1px solid var(--line);
  gap: 8px;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  display: grid;
}

.venue-hours li {
  color: var(--slate);
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  display: flex;
}

.venue-hours li b {
  color: var(--navy);
  font-weight: 600;
}

.venue-links {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  display: flex;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--slate);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: clamp(26px, 4vh, 42px);
  padding-top: 22px;
  font-size: 13.5px;
  display: flex;
}

.footer a {
  color: var(--blue);
  font-weight: 600;
}

.splash {
  z-index: 100;
  background: var(--yellow);
  place-items: center;
  padding: 24px;
  animation: .55s 3.05s forwards splash-out;
  display: grid;
  position: fixed;
  inset: 0;
}

@keyframes splash-out {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
  }
}

.splash-inner {
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 5.5vh, 56px);
  width: 100%;
  max-width: 380px;
  display: flex;
}

.splash-logo {
  width: clamp(150px, 42vw, 210px);
  animation: .62s cubic-bezier(.2, .8, .3, 1) both splash-logo-in;
}

@keyframes splash-logo-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
}

.splash-stack {
  aspect-ratio: 1;
  width: min(clamp(200px, 58vw, 300px), 46vh);
  animation: .34s cubic-bezier(.3, .9, .4, 1) 2.36s both splash-settle;
  position: relative;
}

@keyframes splash-settle {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.055);
  }

  100% {
    transform: scale(1);
  }
}

.layer {
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  animation-duration: .68s;
  animation-timing-function: cubic-bezier(.3, 0, .25, 1);
  animation-fill-mode: both;
  position: absolute;
  left: 50%;
}

.layer img {
  filter: drop-shadow(0 10px 14px #0b2a542e);
  width: 100%;
  height: auto;
  display: block;
}

.layer-bun-bottom {
  width: 101%;
  margin-left: -50.5%;
  animation-name: pop-in;
  animation-delay: .3s;
  top: 44.4%;
}

.layer-lettuce {
  width: 118%;
  margin-left: -59%;
  animation-name: drop-splat;
  animation-delay: .64s;
  top: 5.1%;
}

.layer-patty {
  width: 95%;
  margin-left: -47.5%;
  animation-name: drop-heavy;
  animation-delay: .98s;
  top: -19.3%;
}

.layer-onion {
  width: 75%;
  margin-left: -37.5%;
  animation-name: drop-graceful;
  animation-delay: 1.32s;
  top: 16.5%;
}

.layer-bacon {
  width: 97%;
  margin-left: -48.5%;
  animation-name: drop-organic;
  animation-delay: 1.66s;
  top: 5.8%;
}

.layer-bun-top {
  width: 115%;
  margin-left: -57.5%;
  animation-name: drop-close;
  animation-delay: 2s;
  top: -41%;
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(10%)scale(.55);
  }

  55% {
    opacity: 1;
    transform: translateY(0)scale(1.11);
  }

  76% {
    transform: scale(.96);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drop-splat {
  0% {
    opacity: 0;
    transform: translateY(-210%)scaleX(.86)scaleY(1.1);
  }

  12% {
    opacity: 1;
  }

  55% {
    transform: translateY(0)scaleX(1.2)scaleY(.74);
  }

  73% {
    transform: translateY(-9%)scaleX(.96)scaleY(1.06);
  }

  88% {
    transform: translateY(0)scaleX(1.04)scaleY(.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes drop-heavy {
  0% {
    opacity: 0;
    transform: translateY(-160%)scaleX(.92)scaleY(1.12);
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(0)scaleX(1.16)scaleY(.74);
  }

  65% {
    transform: translateY(-5%)scaleX(.96)scaleY(1.07);
  }

  82% {
    transform: translateY(0)scaleX(1.03)scaleY(.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes drop-graceful {
  0% {
    opacity: 0;
    transform: translateY(-230%)rotate(-16deg)scale(.92);
  }

  15% {
    opacity: 1;
  }

  62% {
    transform: translateY(0)rotate(5deg)scale(1.05);
  }

  81% {
    transform: translateY(-7%)rotate(-2deg)scale(.99);
  }

  100% {
    opacity: 1;
    transform: translateY(0)rotate(0)scale(1);
  }
}

@keyframes drop-organic {
  0% {
    opacity: 0;
    transform: translate(-10%, -240%)rotate(11deg)scale(.95);
  }

  15% {
    opacity: 1;
  }

  58% {
    transform: translate(0)rotate(-4deg)scaleX(1.09)scaleY(.87);
  }

  77% {
    transform: translate(0, -6%)rotate(2deg)scaleX(.98)scaleY(1.04);
  }

  100% {
    opacity: 1;
    transform: translate(0)rotate(0)scale(1);
  }
}

@keyframes drop-close {
  0% {
    opacity: 0;
    transform: translateY(-150%)scaleX(.94)scaleY(1.09);
  }

  10% {
    opacity: 1;
  }

  52% {
    transform: translateY(0)scaleX(1.13)scaleY(.79);
  }

  69% {
    transform: translateY(-8%)scaleX(.97)scaleY(1.06);
  }

  85% {
    transform: translateY(0)scaleX(1.02)scaleY(.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.splash-load {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 14px;
  width: 100%;
  animation: .62s cubic-bezier(.2, .8, .3, 1) .2s both splash-logo-in;
  display: grid;
}

.splash-caption {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: .02em;
  color: var(--navy);
  opacity: .7;
  grid-column: 1 / -1;
  font-size: 13.5px;
  font-weight: 600;
}

.splash-bar {
  background: #0b2a5424;
  border-radius: 999px;
  height: 5px;
  display: block;
  overflow: hidden;
}

.splash-bar i {
  background: var(--blue);
  transform-origin: 0;
  border-radius: 999px;
  width: 100%;
  height: 100%;
  animation: 2.4s cubic-bezier(.4, .1, .2, 1) both splash-fill;
  display: block;
}

@keyframes splash-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.splash-pct {
  font-family: var(--font-display);
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  text-align: right;
  min-width: 44px;
  font-size: 14px;
  font-weight: 700;
}

.admin {
  background: var(--cream);
  height: 100%;
  padding: clamp(26px, 5vw, 60px);
  overflow-y: auto;
}

.admin-wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.admin h1 {
  margin: 8px 0 30px;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 800;
}

.admin h2 {
  margin: 40px 0 14px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
}

.table-wrap {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  overflow-x: auto;
}

.admin table {
  border-collapse: collapse;
  white-space: nowrap;
  width: 100%;
  font-size: 14px;
}

.admin th {
  text-align: left;
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
  font-size: 12px;
  font-weight: 600;
}

.admin td {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  padding: 15px 18px;
}

.admin tbody tr:last-child td {
  border-bottom: none;
}

.admin tr:hover td {
  background: var(--cream);
}

.admin-empty {
  color: var(--slate);
  padding: 30px 18px;
  font-size: 14.5px;
}

@media (max-width: 960px) {
  .home {
    grid-template-columns: 1fr;
    align-content: start;
    gap: clamp(20px, 4vh, 34px);
  }

  .home-visual {
    order: -1;
    justify-content: center;
    position: static;
  }

  .home-visual img {
    height: auto;
    max-height: 46vh;
    margin-top: 0;
  }

  .home-copy {
    padding-right: clamp(20px, 6vw, 88px);
  }

  .arrow {
    display: none;
  }
}

@media (max-width: 720px) {
  .scene-scroll, .deck-head, .home {
    padding-left: 18px;
    padding-right: 18px;
  }

  .deck {
    gap: 14px;
    padding-left: 12vw;
    padding-right: 12vw;
  }

  .card {
    flex-basis: 76vw;
  }

  .hud-info {
    display: none;
  }

  .nav-item {
    padding: 9px 14px;
  }

  .gallery-cta, .venue-links {
    justify-content: flex-start;
  }
}

@media (max-height: 700px) and (min-width: 961px) {
  .home {
    padding-top: 92px;
    padding-bottom: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  .splash {
    display: none;
  }
}

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/