@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-latin.woff2?v=20260823-135737-pdt") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-latin-ext.woff2?v=20260823-135737-pdt") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/playfair-normal-latin.woff2?v=20260823-135737-pdt") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/playfair-normal-latin-ext.woff2?v=20260823-135737-pdt") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/playfair-italic-latin.woff2?v=20260823-135737-pdt") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/playfair-italic-latin-ext.woff2?v=20260823-135737-pdt") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #0e0a07;
  --panel: #1a120c;
  --panel-hi: #241a13;
  --text: #f4ece1;
  --muted: #a09184;
  --muted-soft: #7e7267;
  --gold: #c89b5a;
  --gold-hi: #d6a868;
  --blue: #2e96d6;
  --blue-hi: #7bc5f0;
  --shadow: rgba(0, 0, 0, .55);
  --motion-accent: var(--gold-hi);
  --motion-accent-bright: #f8dfaa;
  --motion-accent-soft: rgba(200, 155, 90, .4);
  --motion-bg: var(--bg);
  --motion-surface: linear-gradient(160deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
  --motion-shadow: rgba(214, 168, 104, .42);
  --motion-track: rgba(214, 168, 104, .28);
  --motion-ring-line: rgba(214, 168, 104, .16);
  --motion-ring-inner-shadow: rgba(214, 168, 104, .08);
  --motion-ring-outer-shadow: rgba(248, 223, 170, .08);
  --app-height: 100vh;
  --app-width: 100vw;
}

@supports (height: 100svh) {
  :root {
    --app-height: 100svh;
  }
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  min-height: var(--app-height);
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: auto;
  background: var(--bg);
}

body {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--app-height);
  min-height: var(--app-height);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
}

a {
  color: #2e96d6;
  text-decoration: none;
}

a:hover {
  color: #5fb4e8;
}

input::placeholder,
textarea::placeholder {
  color: #8a7d71;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

[hidden] {
  display: none !important;
}

.demo-shell {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--app-height);
  min-height: var(--app-height);
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 60% at 50% 0%, #241913 0%, #0a0705 72%);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: var(--app-height);
  min-height: var(--app-height);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  box-shadow: 0 0 90px rgba(0, 0, 0, .6);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.app-scroller {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: var(--app-height);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  scroll-behavior: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.intro-locked .app-scroller {
  touch-action: none;
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 470px;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
  animation: pageIn 1.6s cubic-bezier(.33, 0, .2, 1) 1.95s both;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: 50% 72%;
  transform-origin: 50% 100%;
  will-change: transform;
  contain: paint;
  backface-visibility: hidden;
}

.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-wash-top {
  background: linear-gradient(180deg, rgba(10, 7, 5, .66) 0%, rgba(10, 7, 5, .16) 15%, rgba(10, 7, 5, 0) 28%);
}

.hero-wash-bottom {
  background: linear-gradient(0deg, #0e0a07 0, rgba(14, 10, 7, .98) 62px, rgba(14, 10, 7, .78) 96px, rgba(14, 10, 7, .42) 210px, rgba(15, 10, 7, .16) 330px, rgba(0, 0, 0, 0) 470px);
}

.hero-wash-settle {
  background: linear-gradient(180deg, rgba(6, 4, 3, .24) 0%, rgba(6, 4, 3, .32) 58%, rgba(6, 4, 3, .18) 100%);
  opacity: 0;
  will-change: opacity;
}

.hero-wash-glow {
  background: radial-gradient(92% 46% at 50% 34%, rgba(200, 155, 90, .16) 0%, rgba(0, 0, 0, 0) 64%);
}

.page-stack {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.settle-spacer {
  flex: none;
  height: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 248px;
  flex: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px 34px;
  pointer-events: none;
}

.table-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  animation: pageIn 1.5s cubic-bezier(.33, 0, .2, 1) 2.35s both;
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-copy > .table-row {
  visibility: hidden;
  animation: none;
}

.pinned-table-row {
  position: absolute;
  top: 20px;
  right: 22px;
  left: 22px;
  z-index: 4;
  pointer-events: none;
  contain: layout paint;
}

.hero-wordmark-layer {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: var(--app-height);
  z-index: 3;
  overflow: visible;
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity;
  backface-visibility: hidden;
  contain: style;
}

.guest-slot {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
  margin-right: auto;
}

.guest-kicker {
  color: rgba(226, 186, 130, .92);
  font-size: 12.6px;
  font-weight: 600;
  letter-spacing: .26em;
  line-height: 1;
  text-shadow: 0 0 1px rgba(0, 0, 0, .9), 0 1px 2px rgba(0, 0, 0, .7), 0 2px 9px rgba(0, 0, 0, .45);
  text-transform: uppercase;
}

.guest-name {
  overflow: hidden;
  color: rgba(226, 186, 130, .92);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 33.7px;
  letter-spacing: -.01em;
  line-height: .94;
  text-overflow: ellipsis;
  text-shadow: 0 0 1px rgba(0, 0, 0, .9), 0 1px 2px rgba(0, 0, 0, .7), 0 2px 9px rgba(0, 0, 0, .45);
  white-space: nowrap;
}

.table-pill {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 7px;
  padding: 6px 12px 6px 10px;
  border: 1px solid rgba(244, 236, 225, .24);
  border-radius: 100px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  white-space: nowrap;
}

.wordmark {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  overflow: visible;
  transform-origin: 50% 100%;
  will-change: transform;
  backface-visibility: hidden;
}

.wordmark-kicker {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.wordmark-line {
  width: 20px;
  height: 1px;
  flex: none;
  background: rgba(239, 220, 192, .8);
  transform-origin: 0 50%;
  will-change: transform;
}

.wordmark-label {
  color: #efdcc0;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-shadow: 0 0 2px rgba(0, 0, 0, .85), 0 1px 4px rgba(0, 0, 0, .65);
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  backface-visibility: hidden;
}

.cafe-logo-frame {
  display: block;
  width: 208px;
  max-width: 78%;
  align-self: flex-start;
  aspect-ratio: 528 / 57;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, .9)) drop-shadow(0 1px 2px rgba(0, 0, 0, .7)) drop-shadow(0 2px 9px rgba(0, 0, 0, .45));
  transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
}

.cafe-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 528 / 57;
  filter: brightness(0) invert(1);
  opacity: 1;
  backface-visibility: hidden;
}

.tagline {
  display: block;
  align-self: flex-start;
  max-width: 100%;
  padding-bottom: 2px;
  color: rgba(250, 244, 236, .97);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.3;
  text-shadow: 0 0 2px rgba(0, 0, 0, .8), 0 1px 4px rgba(0, 0, 0, .6);
  transform-origin: 50% 50%;
  animation: pageIn 1.4s cubic-bezier(.33, 0, .2, 1) 2.15s both;
  text-wrap: pretty;
  will-change: transform;
  backface-visibility: hidden;
}

.service-panel {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: -20px;
  padding: 0 16px;
  border-top: 1px solid rgba(200, 155, 90, .32);
  border-radius: 26px 26px 0 0;
  background: var(--bg) linear-gradient(180deg, #241a13 0%, #1a120c 44%, #0e0a07 100%) top center / 100% 1160px no-repeat;
  box-shadow: 0 -18px 46px rgba(0, 0, 0, .55);
  animation: pageIn 1.5s cubic-bezier(.33, 0, .2, 1) 2.35s both;
}

.panel-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 10px;
}

.panel-rule span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 155, 90, 0), rgba(200, 155, 90, .55));
}

.panel-rule span:last-child {
  background: linear-gradient(90deg, rgba(200, 155, 90, .55), rgba(200, 155, 90, 0));
}

.panel-rule i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.panel-heading {
  padding: 0 8px 15px;
  text-align: center;
}

.daypart {
  margin: 0;
  padding-bottom: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.panel-heading h1 {
  margin: 0 0 7px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-wrap: pretty;
}

.panel-heading p:last-child {
  margin: 0;
  color: #a99b8e;
  font-size: 14px;
  letter-spacing: -.005em;
}

.panel-heading strong {
  color: #dccfc1;
  font-weight: 600;
}

.active-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 12px;
}

.active-request {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(46, 150, 214, .34);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(46, 150, 214, .17), rgba(46, 150, 214, .07));
  animation: riseIn .3s ease both;
}

.active-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 100px;
  background: #4fb0ea;
  box-shadow: 0 0 10px rgba(79, 176, 234, .85);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.active-label {
  min-width: 0;
  flex: 1;
  color: #dcedf9;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.005em;
}

.active-cancel {
  border: 0;
  background: none;
  color: #7d8c97;
  cursor: pointer;
  font-size: 11.5px;
  padding: 2px 0 2px 6px;
}

.active-cancel:hover {
  color: #4fb0ea;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.action-card {
  display: flex;
  align-items: center;
  height: 90px;
  min-width: 0;
  gap: 14px;
  padding: 0 15px;
  border: 1px solid rgba(244, 236, 225, .11);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform .12s ease, border-color .2s ease, filter .2s ease;
}

.action-card:hover {
  border-color: rgba(200, 155, 90, .45);
  color: var(--text);
}

.action-card:active {
  transform: scale(.972);
}

.action-card-primary {
  border-color: rgba(79, 176, 234, .4);
  background: linear-gradient(160deg, rgba(46, 150, 214, .26), rgba(46, 150, 214, .08));
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.action-card-primary:hover {
  filter: brightness(1.14);
}

.action-card-wide {
  grid-column: span 2;
  height: 74px;
}

.action-icon {
  width: 31px;
  height: 31px;
  flex: none;
}

.action-card span {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-direction: column;
  gap: 2px;
}

.action-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.1;
}

.action-card small {
  color: #a09184;
  font-size: 11px;
  line-height: 1.2;
}

.action-card-primary small {
  color: #a9c4d6;
}

.action-card-perks {
  --edge-radius: 18px;
  --edge-width: 2px;
  --edge-projection-size: 212%;
  --edge-projection-opacity: .95;
  --edge-projection-blur: 7px;
  --edge-duration: 11.2s;
  --edge-delay: -2.9s;
  --edge-tail-soft: rgba(214, 168, 104, .16);
  --edge-tail: rgba(214, 168, 104, .38);
  --edge-glow: rgba(255, 233, 183, .92);
  --edge-surface:
    linear-gradient(180deg, rgba(255, 235, 196, .1), rgba(255, 255, 255, 0) 42%),
    linear-gradient(160deg, rgba(72, 48, 28, 1), rgba(38, 26, 18, 1) 46%, rgba(24, 16, 11, 1));

  border-color: transparent;
  background: #1a120c;
  box-shadow:
    0 9px 24px rgba(0, 0, 0, .34),
    0 0 32px rgba(214, 168, 104, .14),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.action-card-perks:hover {
  border-color: transparent;
  filter: brightness(1.08);
}

.action-card-perks .action-icon {
  filter: drop-shadow(0 0 11px rgba(214, 168, 104, .36));
}

.action-card-perks strong {
  color: #fff3df;
}

.action-card-perks small {
  color: #d7c0a0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 30px 2px 6px;
  will-change: transform;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 4px;
  border-top: 1px solid rgba(244, 236, 225, .07);
}

.steps div:last-child {
  border-bottom: 1px solid rgba(244, 236, 225, .07);
}

.steps span {
  width: 20px;
  flex: none;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
}

.steps p {
  flex: 1;
  margin: 0;
  color: #beb2a6;
  font-size: 13.5px;
  line-height: 1.4;
  text-wrap: pretty;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding: 36px 0 calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 76vh 0 76vh var(--bg);
  will-change: transform;
}

.signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  gap: 9px;
  margin-bottom: 46px;
  border: 1px solid rgba(244, 236, 225, .16);
  border-radius: 100px;
  background: rgba(255, 255, 255, .035);
  color: #e0d5c9;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: border-color .2s ease, background .2s ease, transform .12s ease;
}

.signin-button:hover {
  border-color: rgba(200, 155, 90, .5);
  background: rgba(255, 255, 255, .06);
}

.signin-button:active {
  transform: scale(.985);
}

.site-footer span {
  color: #8c7f74;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-footer img {
  width: auto;
  height: 46px;
  filter: brightness(0) invert(1) sepia(.28);
  opacity: .44;
}

.site-footer p {
  margin: 0;
  color: #7e7267;
  font-size: 12px;
  letter-spacing: .01em;
}

.site-footer .build-stamp {
  margin-top: 46px;
  color: #5f554c;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

.sheet-host {
  position: absolute;
  inset: 0;
  z-index: 20;
}

.sheet-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(8, 5, 3, .62);
  backdrop-filter: blur(4px);
  cursor: pointer;
  animation: fadeIn .22s ease;
  transition: opacity .18s ease;
}

.sheet-scrim.is-closing {
  animation: fadeOut .3s ease forwards;
}

.sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  max-height: 92%;
  flex-direction: column;
  border-top: 1px solid rgba(200, 155, 90, .34);
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, #2a1e15 0%, #1a120c 100%);
  box-shadow: 0 -18px 54px rgba(0, 0, 0, .6);
  animation: sheetUp .36s cubic-bezier(.22, 1, .36, 1);
  contain: layout paint;
  touch-action: pan-y;
  will-change: transform;
}

.sheet.is-closing {
  animation: sheetDown .34s cubic-bezier(.4, .05, .9, .3) forwards;
}

.sheet.is-dragging {
  animation: none;
  transition: none;
}

.sheet.is-swipe-closing {
  animation: none;
  transition: transform .28s cubic-bezier(.4, .05, .9, .3);
}

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

.sheet-handle {
  display: flex;
  flex: none;
  justify-content: center;
  padding: 10px 0 2px;
  cursor: grab;
  touch-action: none;
}

.sheet.is-dragging .sheet-handle {
  cursor: grabbing;
}

.sheet-handle span {
  width: 38px;
  height: 4px;
  border-radius: 100px;
  background: rgba(244, 236, 225, .18);
}

.sheet-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  color: #a2958a;
  cursor: pointer;
  padding: 0;
  transition: color .2s ease;
}

.sheet-close:hover {
  color: var(--text);
}

.sheet-head {
  flex: none;
  padding: 12px 62px 14px 22px;
}

.sheet-head h2 {
  margin: 0 0 5px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
}

.sheet-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  text-wrap: pretty;
}

.chip-list {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 4px;
}

.chip {
  padding: 11px 17px;
  border: 1px solid rgba(244, 236, 225, .14);
  border-radius: 100px;
  background: rgba(255, 255, 255, .03);
  color: #b6a99d;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
}

.chip:hover {
  border-color: rgba(200, 155, 90, .5);
  color: #e4d9cd;
}

.chip.is-selected {
  border-color: rgba(79, 176, 234, .6);
  background: rgba(46, 150, 214, .2);
  color: #cfe9f9;
  font-weight: 600;
}

.field-stack {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 16px;
  padding: 6px 22px 2px;
}

.field-accent {
  height: 5px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(214, 168, 104, .55), rgba(214, 168, 104, .14));
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(244, 236, 225, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  cursor: text;
}

.phone-field:focus-within {
  border-color: rgba(79, 176, 234, .6);
}

.phone-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  background: none;
  color: #f7f0e7;
  font-size: 16px;
  letter-spacing: -.01em;
}

.legal-copy {
  margin: 0;
  color: #8c7f74;
  font-size: 11.5px;
  line-height: 1.55;
  text-wrap: pretty;
}

.legal-copy a {
  color: var(--gold-hi);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note-wrap {
  flex: none;
  padding: 10px 22px 0;
}

.note-wrap textarea {
  width: 100%;
  resize: none;
  padding: 13px 14px;
  border: 1px solid rgba(244, 236, 225, .14);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.note-wrap textarea:focus {
  border-color: rgba(79, 176, 234, .6);
  background: rgba(255, 255, 255, .06);
}

.menu-list {
  flex: 1;
  overflow-y: auto;
  padding: 2px 22px 6px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 236, 225, .08);
}

.menu-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.menu-copy strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.menu-copy small {
  color: #9a8c80;
  font-size: 12.5px;
  line-height: 1.35;
  text-wrap: pretty;
}

.menu-copy em {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-style: normal;
}

.add-button,
.qty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
}

.add-button {
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid rgba(244, 236, 225, .16);
  background: rgba(255, 255, 255, .04);
  color: #e4d9cd;
  font-size: 20px;
}

.add-button:hover {
  border-color: rgba(79, 176, 234, .6);
  color: var(--blue-hi);
}

.qty-control {
  display: flex;
  align-items: center;
  flex: none;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(79, 176, 234, .45);
  border-radius: 100px;
  background: rgba(46, 150, 214, .14);
}

.qty-button {
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  color: var(--blue-hi);
  font-size: 18px;
}

.qty-value {
  min-width: 16px;
  color: #cfe9f9;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.sheet-footer {
  flex: none;
  padding: 14px 22px calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(244, 236, 225, .08);
}

.confirm-button {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 100px;
  background: linear-gradient(180deg, #2e96d6, #0872ba);
  box-shadow: 0 8px 24px rgba(8, 114, 186, .42);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .12s ease;
}

.confirm-button:active {
  transform: scale(.985);
}

.confirm-button:disabled {
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  color: #7e7267;
  cursor: default;
}

.sheet-footer p {
  margin: 11px 0 0;
  color: #7e7267;
  font-size: 11.5px;
  text-align: center;
}

.sheet-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 56px 22px calc(64px + env(safe-area-inset-bottom));
  text-align: center;
}

.sheet-status.done {
  gap: 14px;
  padding: 48px 30px calc(58px + env(safe-area-inset-bottom));
}

.spinner {
  width: 34px;
  height: 34px;
  border: 2.5px solid rgba(79, 176, 234, .2);
  border-top-color: #4fb0ea;
  border-radius: 100px;
  animation: spin .8s linear infinite;
}

.sheet-status span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.done-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(79, 176, 234, .35);
  border-radius: 100px;
  background: rgba(46, 150, 214, .16);
}

.done-icon path {
  animation: drawCheck .45s .05s ease forwards;
}

.sheet-status h2 {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.sheet-status p {
  max-width: 26ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}

@keyframes sheetUp {
  from { transform: translateY(101%); }
  to { transform: translateY(0); }
}

@keyframes sheetDown {
  from { transform: translateY(0); }
  to { transform: translateY(102%); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .3;
    transform: scale(.7);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

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