:root {
  color-scheme: dark;
  --bg: #0d1318;
  --panel: #131d24;
  --panel-strong: #18242d;
  --line: #30414d;
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #fff8e8;
  --muted: #b9c2bf;
  --accent: #e2a64f;
  --accent-strong: #f1bd63;
  --green: #75cdb8;
  --danger: #e07b73;
  --shadow: rgba(0, 0, 0, 0.34);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(13, 19, 24, 0.88), #0d1318 42rem),
    url("https://images.unsplash.com/photo-1514517220035-9c3d9ca0d3b9?auto=format&fit=crop&w=1800&q=74") center top / cover fixed;
  color: var(--text);
}

body.cart-open {
  overflow: hidden;
}

body.confirm-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(226, 166, 79, 0.16), transparent 34rem),
    linear-gradient(180deg, #0d1318, #090d11);
}

html.is-ios body.cart-open {
  width: 100%;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 46rem);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.delivery-confirm-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.delivery-confirm-card {
  width: min(34rem, 100%);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 19, 24, 0.92);
  box-shadow: 0 24px 80px -50px #000;
}

.delivery-confirm-logo {
  width: 8rem;
  max-width: 45vw;
  justify-self: center;
}

.delivery-confirm-card h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.95;
}

.delivery-confirm-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.delivery-confirm-card form {
  display: grid;
  gap: 0.85rem;
}

.delivery-confirm-card label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.delivery-confirm-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.95rem 1rem;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.delivery-confirm-result {
  min-height: 2.65rem;
  display: grid;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.delivery-confirm-result:empty {
  display: none;
}

.delivery-confirm-result[data-tone="success"] {
  color: var(--green);
  border-color: rgba(117, 205, 184, 0.3);
}

.delivery-confirm-result[data-tone="error"] {
  color: var(--danger);
  border-color: rgba(224, 123, 115, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  background: rgba(13, 19, 24, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 12rem;
}

.brand-mark img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.2rem;
}

.brand-mark span {
  display: grid;
  line-height: 1;
}

.brand-mark strong,
.brand-mark small,
h1,
h2 {
  font-family: "Bebas Neue", Inter, sans-serif;
}

.brand-mark strong {
  font-size: 1.45rem;
}

.brand-mark small {
  color: var(--accent);
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

.site-nav a,
.header-cart,
.ghost-action,
.primary-action,
.product-card button,
.copy-action,
.icon-button,
.floating-cart {
  border: 0;
  cursor: pointer;
}

.site-nav a {
  padding: 0.62rem 0.9rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav a:hover {
  color: var(--text);
}

.header-cart,
.floating-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  color: #06110f;
  background: var(--green);
  font-weight: 800;
  padding: 0.7rem 0.95rem;
}

.header-cart strong,
.floating-cart span {
  min-width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

main {
  position: relative;
  z-index: 1;
}

.hero-section {
  width: min(1180px, calc(100% - 2rem));
  min-height: 84vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.78fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: 6.7rem;
  line-height: 0.92;
  max-width: 9ch;
}

.hero-text {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 43rem;
}

.hero-actions,
.product-bottom,
.drawer-footer,
.modal-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.app-action-icon {
  display: none;
}

.app-action-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-action,
.ghost-action,
.copy-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 850;
}

.primary-action {
  background: var(--accent-strong);
  color: #1b1207;
  box-shadow: 0 14px 34px -24px var(--accent-strong);
}

.ghost-action,
.copy-action {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  border: 1px solid var(--line-soft);
}

.primary-action.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.7rem 0 0;
}

.hero-facts div,
.quick-strip article,
.product-card,
.steps-grid article,
.drawer-panel,
.modal-panel,
.about-section {
  border: 1px solid var(--line-soft);
  background: rgba(19, 29, 36, 0.84);
  border-radius: 8px;
  box-shadow: 0 18px 44px -34px var(--shadow);
}

.hero-facts div {
  padding: 0.85rem;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(226, 166, 79, 0.32);
  background: #101820;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  display: block;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 19, 24, 0.86), transparent 58%);
}

.hero-plate {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.82);
  border: 1px solid var(--line-soft);
}

.hero-plate span {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-plate strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.3rem;
}

.quick-strip,
.menu-section,
.steps-section,
.order-status-section,
.about-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-strip article {
  padding: 1rem;
}

.quick-strip span {
  display: block;
  color: var(--green);
  font-weight: 900;
  font-size: 1.7rem;
}

.quick-strip strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-section,
.steps-section,
.order-status-section {
  padding: 3rem 0 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading.compact {
  display: block;
}

.section-heading h2 {
  margin: 0;
  font-size: 3.9rem;
  line-height: 1;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.menu-tabs button {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 850;
  cursor: pointer;
}

.menu-tabs button.is-active {
  background: rgba(117, 205, 184, 0.18);
  color: var(--green);
  border-color: rgba(117, 205, 184, 0.45);
}

.menu-content {
  min-height: 20rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-height: 11rem;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 1rem;
}

.product-main h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.22;
}

.product-main p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-main .brand-line {
  color: var(--green);
  font-weight: 800;
}

.menu-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.7rem;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  background: rgba(226, 166, 79, 0.18);
  color: var(--accent-strong);
  font-weight: 900;
}

.product-bottom {
  justify-content: space-between;
  margin-top: 1rem;
}

.product-bottom strong {
  font-size: 1.1rem;
  color: var(--accent-strong);
}

.product-card button {
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(117, 205, 184, 0.18);
  color: var(--green);
  font-weight: 900;
}

.beverage-group {
  margin-bottom: 1.2rem;
}

.group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-soft);
}

.group-title h3 {
  margin: 0;
  color: var(--accent-strong);
  font-size: 1.35rem;
}

.group-title span {
  min-width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(226, 166, 79, 0.16);
  color: var(--accent-strong);
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.steps-grid article {
  padding: 1.1rem;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #1b1207;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 1rem 0 0.45rem;
}

.steps-grid p,
.about-section p {
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.3rem;
  margin-bottom: 6rem;
}

.about-section h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: grid;
  gap: 0.22rem;
  padding: 1rem;
  border: 1px solid rgba(226, 166, 79, 0.34);
  border-radius: 8px;
  background: rgba(226, 166, 79, 0.08);
  color: var(--text);
  text-decoration: none;
}

.location-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  font-size: 1.1rem;
}

.location-card small {
  color: var(--green);
  font-weight: 800;
}

.floating-cart {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  box-shadow: 0 16px 32px -18px var(--shadow);
}

.cart-drawer,
.customize-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

.cart-drawer.is-open,
.customize-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(29.5rem, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  padding: 0.82rem;
  background: #101820;
  border-radius: 0;
  transform: translateX(104%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}

.drawer-header h2,
.modal-header h2 {
  margin: 0;
  font-size: 1.9rem;
}

.icon-button {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.7rem;
}

.cart-items {
  overflow: auto;
  padding: 0.65rem 0;
  -webkit-overflow-scrolling: touch;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  padding: 0.68rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 0.7rem;
}

.cart-row h3 {
  margin: 0;
  font-size: 0.94rem;
}

.cart-row p {
  margin: 0.25rem 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-row ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 2rem 2rem 2rem;
  align-items: center;
  justify-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  height: 2.3rem;
}

.qty-control button,
.remove-button {
  border: 0;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  font-weight: 900;
}

.remove-button {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--danger);
  padding: 0;
}

.order-form {
  border-top: 1px solid var(--line-soft);
  width: 100%;
  min-width: 0;
  padding-top: 0.64rem;
  display: grid;
  gap: 0.64rem;
  max-height: 32vh;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 0.94em;
  -webkit-overflow-scrolling: touch;
}

.order-form *,
.order-form *::before,
.order-form *::after {
  min-width: 0;
}

.order-window-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem;
  border: 1px solid rgba(226, 166, 79, 0.3);
  border-radius: 8px;
  background: rgba(226, 166, 79, 0.08);
}

.order-window-card strong {
  color: var(--accent);
  font-size: 0.9rem;
}

.order-window-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.order-window-card[data-mode="open"],
.order-window-card[data-mode="preorder"] {
  border-color: rgba(97, 211, 155, 0.42);
  background: rgba(97, 211, 155, 0.09);
}

.order-window-card[data-mode="open"] strong,
.order-window-card[data-mode="preorder"] strong,
[data-api-status][data-tone="open"] {
  color: var(--green);
}

.order-window-card[data-mode="closed"] strong,
[data-api-status][data-tone="closed"] {
  color: var(--danger);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.order-form legend,
.order-form label {
  font-size: 0.79rem;
}

.choice-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.36rem;
  margin-top: 0.4rem;
  max-width: 100%;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 4rem;
  overflow: visible;
}

.choice-grid {
  overflow: hidden;
}

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

.choice-grid label {
  position: relative;
  overflow: hidden;
}

.choice-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 2.34rem;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding-inline: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.choice-grid input:checked + span {
  border-color: rgba(117, 205, 184, 0.55);
  background: rgba(117, 205, 184, 0.16);
  color: var(--green);
}

label {
  display: grid;
  gap: 0.38rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0.79rem 0.87rem;
  outline: none;
}

.order-form input,
.order-form select,
.order-form textarea {
  max-width: 100%;
  padding: 0.72rem 0.78rem;
  font-size: 0.94em;
}

.order-form select {
  appearance: none;
  padding-right: 1.55rem;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.72rem) 50%;
  background-size: 0.28rem 0.28rem, 0.28rem 0.28rem;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(226, 166, 79, 0.72);
}

.delivery-fields {
  display: grid;
  gap: 0.66rem;
}

.location-picker {
  display: grid;
  gap: 0.44rem;
  padding: 0.68rem;
  border: 1px solid rgba(117, 205, 184, 0.22);
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.07);
}

.location-action {
  min-height: 2.57rem;
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.2);
  color: var(--green);
  font-weight: 900;
}

.location-picker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.795rem;
  line-height: 1.45;
}

.location-picker p[data-tone="success"] {
  color: var(--green);
}

.location-picker p[data-tone="error"] {
  color: var(--danger);
}

.location-picker p[data-tone="loading"] {
  color: var(--accent);
}

.drawer-footer {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.7rem;
}

.drawer-footer div {
  flex: 1;
  display: grid;
}

.drawer-footer span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.drawer-footer strong {
  font-size: 1.25rem;
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58rem, calc(100% - 1rem));
  max-height: 92vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 1rem;
  background: #101820;
  transform: translate(-50%, -45%);
  transition: transform 180ms ease;
}

.customize-modal.is-open .modal-panel {
  transform: translate(-50%, -50%);
}

.modal-body {
  overflow: auto;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.modal-body label {
  grid-column: 1 / -1;
}

.modal-body h3 {
  margin: 0 0 0.65rem;
}

.option-list {
  display: grid;
  gap: 0.45rem;
}

.option-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.035);
}

.option-row input {
  width: 1rem;
}

.option-row strong {
  color: var(--text);
  font-size: 0.94rem;
}

.option-row span {
  color: var(--accent);
}

.modal-footer {
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}

.modal-footer strong {
  color: var(--accent-strong);
  font-size: 1.45rem;
}

.site-order-panel {
  width: min(34rem, calc(100% - 1rem));
}

.site-order-status {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 0.4rem;
}

.site-order-status strong {
  color: var(--green);
  font-size: 1.35rem;
}

.site-order-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-status-section {
  display: grid;
  gap: 1rem;
}

.status-lookup-card,
.status-empty-card,
.status-order-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(19, 29, 36, 0.78);
  box-shadow: 0 18px 44px -34px var(--shadow);
}

.status-lookup-card {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto;
  align-items: end;
  gap: 0.8rem;
  padding: 1rem;
}

.status-lookup-card .primary-action {
  border: 0;
}

.status-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}

.status-empty-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 8rem;
  padding: 1rem;
}

.status-empty-card img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}

.status-empty-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1.05rem;
}

.status-empty-card span {
  color: var(--muted);
  line-height: 1.5;
}

.status-empty-card.is-error {
  border-color: rgba(224, 123, 115, 0.45);
}

.status-order-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.status-order-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.status-order-card header span,
.status-metrics span,
.status-metrics small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-order-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
}

.status-order-card header > strong {
  color: var(--accent-strong);
  font-size: 1rem;
  text-align: right;
}

.status-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.2rem, 1fr));
  gap: 0.6rem;
}

.status-roadmap::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 1.95rem;
  border-top: 2px dashed rgba(248, 180, 81, 0.36);
}

.status-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: var(--muted);
  text-align: center;
}

.status-step-icon {
  width: 3.9rem;
  height: 3.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(248, 180, 81, 0.18);
  background: #100d0a;
  box-shadow: 0 10px 28px -24px #000;
}

.status-step-icon img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.status-step strong {
  font-size: 0.82rem;
}

.status-step.is-done,
.status-step.is-active,
.status-step.is-ready {
  color: var(--text);
}

.status-step.is-active .status-step-icon,
.status-step.is-ready .status-step-icon {
  border-color: rgba(248, 180, 81, 0.72);
  background: rgba(248, 180, 81, 0.16);
}

.status-step.is-ready .status-step-icon {
  animation: statusBellRing 850ms ease-in-out infinite;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.status-metrics > div {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.status-metrics strong {
  color: var(--green);
  font-size: 1.35rem;
}

.status-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.status-items {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-items li {
  display: flex;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 700;
}

.status-items strong {
  color: var(--accent-strong);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 12rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.empty-state.small {
  min-height: 5rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

  .hero-section,
  .section-heading,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 4.8rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 26rem;
  }

  .product-grid,
  .product-grid.compact,
  .quick-strip,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.65rem;
  }

  .brand-mark {
    min-width: auto;
  }

  .brand-mark img {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-mark strong {
    font-size: 1.2rem;
  }

  .header-cart span {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-copy h1 {
    font-size: 3.7rem;
  }

  .hero-facts,
  .quick-strip,
  .product-grid,
  .product-grid.compact,
  .steps-grid,
  .form-grid,
  .choice-grid,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .floating-cart {
    display: none;
  }

  .drawer-panel {
    width: 100%;
  }

  .order-form {
    max-height: 34vh;
  }
}

/* Machado institutional skin */
:root {
  --bg: #100b08;
  --panel: rgba(24, 18, 15, 0.9);
  --panel-strong: rgba(37, 26, 20, 0.94);
  --line: rgba(252, 186, 86, 0.22);
  --line-soft: rgba(255, 223, 171, 0.13);
  --text: #fff3dc;
  --muted: rgba(255, 232, 195, 0.7);
  --accent: #df7c36;
  --accent-strong: #f8b451;
  --green: #8bd5b5;
  --danger: #ff8b78;
  --shadow: rgba(0, 0, 0, 0.58);
}

body {
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.2), #100b08 50rem),
    radial-gradient(circle at 50% 6rem, rgba(245, 125, 41, 0.22), transparent 24rem),
    radial-gradient(circle at 15% 40%, rgba(117, 42, 20, 0.24), transparent 22rem),
    #100b08;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 193, 113, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 193, 113, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 58rem);
}

.site-header {
  padding: 0.7rem 1.5rem;
  background: rgba(11, 8, 7, 0.8);
  border-bottom-color: rgba(248, 180, 81, 0.18);
}

.brand-mark {
  min-width: 14rem;
}

.brand-mark img {
  width: 5rem;
  height: 3.3rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.brand-mark strong,
.brand-mark small,
h1,
h2,
.group-title h3,
.product-main h3,
.steps-grid h3 {
  letter-spacing: 0;
}

.brand-mark strong {
  color: var(--text);
  font-size: 1.62rem;
}

.brand-mark small {
  color: var(--accent-strong);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.site-nav {
  background: rgba(255, 244, 221, 0.05);
  border-color: rgba(248, 180, 81, 0.18);
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.header-cart,
.floating-cart {
  background: linear-gradient(135deg, #ffc46c, #e77f32);
  color: #170d08;
  box-shadow: 0 12px 30px -18px rgba(248, 180, 81, 0.95);
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 78svh;
  margin: 0;
  padding: 5.2rem max(1.2rem, calc((100% - 1180px) / 2)) 5.4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("media/lanches/completao.png") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.04) brightness(0.7);
}

.hero-video,
.hero-ember-layer {
  position: absolute;
  inset: 0;
}

.hero-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(0.58);
}

.hero-ember-layer {
  background:
    linear-gradient(90deg, rgba(10, 6, 5, 0.9), rgba(10, 6, 5, 0.54) 48%, rgba(10, 6, 5, 0.78)),
    linear-gradient(0deg, #100b08 0, rgba(16, 11, 8, 0.18) 28%, rgba(16, 11, 8, 0.24) 72%, rgba(16, 11, 8, 0.78) 100%);
}

.ember {
  position: absolute;
  width: 0.32rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(255, 157, 57, 0.74);
  box-shadow: 0 0 18px rgba(255, 115, 35, 0.7);
  transform: rotate(28deg);
  opacity: 0.74;
}

.ember-1 {
  left: 9%;
  top: 30%;
}

.ember-2 {
  right: 18%;
  top: 18%;
  height: 0.9rem;
}

.ember-3 {
  right: 12%;
  bottom: 24%;
  height: 1.1rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(48rem, 100%);
}

.hero-logo {
  width: min(19rem, 72vw);
  display: block;
  margin: 0 0 0.7rem -0.45rem;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  color: var(--accent-strong);
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff0cf;
  font-size: clamp(3.8rem, 7.6vw, 7.1rem);
  line-height: 0.88;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.75);
}

.hero-text {
  max-width: 42rem;
  color: rgba(255, 239, 210, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-text strong {
  color: var(--accent-strong);
}

.primary-action {
  background: linear-gradient(135deg, #ffc56f, #e5762f);
  color: #170d08;
}

.ghost-action,
.copy-action {
  background: rgba(255, 244, 221, 0.055);
  border-color: rgba(248, 180, 81, 0.22);
}

.hero-facts {
  max-width: 43rem;
  display: none;
}

.hero-facts div,
.quick-strip article,
.product-card,
.steps-grid article,
.drawer-panel,
.modal-panel,
.about-section {
  background:
    linear-gradient(180deg, rgba(255, 245, 226, 0.055), rgba(255, 245, 226, 0.02)),
    var(--panel);
  border-color: rgba(248, 180, 81, 0.18);
  box-shadow: 0 22px 52px -38px rgba(0, 0, 0, 0.9);
}

.hero-facts dt,
.quick-strip strong {
  color: rgba(255, 232, 195, 0.64);
}

.hero-facts dd {
  color: var(--accent-strong);
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.quick-strip article {
  padding: 1.15rem 1.2rem;
}

.quick-strip span {
  color: var(--accent-strong);
}

.brand-story-section,
.menu-poster-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.brand-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 4rem 0 2rem;
}

.brand-story-copy,
.poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-story-copy h2,
.poster-copy h2,
.about-section h2,
.section-heading h2 {
  color: #fff0cf;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.44);
}

.brand-story-copy h2,
.poster-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: 0.92;
}

.brand-story-copy p,
.poster-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.brand-story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 0.8rem;
}

.brand-story-media img,
.brand-story-media video,
.poster-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-story-media img,
.brand-story-media video {
  min-height: 28rem;
  border-radius: 8px;
  border: 1px solid rgba(248, 180, 81, 0.22);
}

.brand-story-media img:last-child {
  object-position: center top;
}

.section-heading {
  align-items: center;
}

.section-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.menu-section,
.steps-section,
.order-status-section {
  padding-top: 4.2rem;
}

.menu-tabs {
  justify-content: center;
  margin-bottom: 1.3rem;
}

.menu-tabs button {
  min-width: 10rem;
  background: rgba(255, 244, 221, 0.052);
  border-color: rgba(248, 180, 81, 0.2);
}

.menu-tabs button.is-active {
  background: linear-gradient(135deg, rgba(248, 180, 81, 0.22), rgba(223, 124, 54, 0.18));
  color: #ffd28c;
  border-color: rgba(248, 180, 81, 0.5);
}

.product-grid {
  gap: 1rem;
}

.product-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 0;
}

.product-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(248, 180, 81, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.035);
}

.product-main,
.product-bottom {
  padding-left: 1rem;
  padding-right: 1rem;
}

.product-main {
  padding-top: 1rem;
}

.product-bottom {
  padding-bottom: 1rem;
}

.product-main h3 {
  color: #fff0cf;
  font-size: 1.55rem;
}

.product-main p {
  color: rgba(255, 232, 195, 0.68);
}

.menu-number {
  background: rgba(248, 180, 81, 0.18);
  color: #ffc46c;
}

.product-bottom strong {
  color: var(--accent-strong);
  font-size: 1.25rem;
}

.product-card button {
  background: rgba(248, 180, 81, 0.16);
  color: #ffd08c;
  border: 1px solid rgba(248, 180, 81, 0.22);
}

.group-title {
  border-color: rgba(248, 180, 81, 0.16);
}

.group-title h3 {
  color: var(--accent-strong);
  font-size: 1.65rem;
}

.group-title span {
  background: rgba(248, 180, 81, 0.16);
  color: #ffd08c;
}

.menu-poster-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(18rem, 0.9fr);
  gap: 1.4rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.poster-frame {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(248, 180, 81, 0.24);
  box-shadow: 0 30px 70px -45px #000;
}

.poster-frame img {
  object-fit: contain;
  background: #100b08;
}

.steps-grid span {
  background: linear-gradient(135deg, #ffc56f, #e5762f);
  color: #170d08;
}

.steps-grid p,
.about-section p {
  color: rgba(255, 232, 195, 0.7);
}

.about-section {
  margin-bottom: 7rem;
}

.drawer-panel,
.modal-panel {
  background: #14100d;
}

input,
select,
textarea {
  background: rgba(255, 244, 221, 0.055);
  border-color: rgba(248, 180, 81, 0.18);
}

@media (max-width: 980px) {
  .hero-section {
    min-height: 82svh;
    padding-top: 7rem;
  }

  .brand-story-section,
  .menu-poster-section {
    grid-template-columns: 1fr;
  }

  .brand-story-media {
    grid-template-columns: 1fr;
  }

  .brand-story-media img {
    min-height: 22rem;
  }

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

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    gap: 0.6rem;
  }

  .brand-mark img {
    width: 3.3rem;
    height: 2.25rem;
  }

  .brand-mark {
    min-width: 0;
  }

  .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
    justify-self: start;
    overflow: hidden;
    justify-content: stretch;
  }

  .site-nav a {
    min-width: 0;
    padding: 0.62rem 0.35rem;
    text-align: center;
  }

  .site-nav a:last-child {
    display: none;
  }

  .hero-section {
    width: 100%;
    max-width: 100%;
    min-height: 86svh;
    padding: 5.8rem 1rem 8.4rem;
    justify-content: center;
    text-align: center;
  }

  .hero-copy,
  .hero-text {
    max-width: calc(100vw - 2rem);
    min-width: 0;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-text {
    font-size: 0.98rem;
    overflow-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo {
    width: min(16.5rem, 76vw);
    margin: 0 auto 0.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 14.6vw, 4.35rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom) + 0.65rem);
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem;
    border: 1px solid rgba(248, 180, 81, 0.24);
    border-radius: 8px;
    background: rgba(20, 13, 9, 0.9);
    box-shadow: 0 18px 48px -26px #000;
    backdrop-filter: blur(16px);
    animation: appMenuRise 320ms ease both;
  }

  .hero-actions .primary-action,
  .hero-actions .ghost-action {
    min-height: 4.15rem;
    padding: 0.4rem 0.25rem;
    border-radius: 8px;
    display: grid;
    gap: 0.2rem;
    justify-items: center;
    align-content: center;
    font-size: 0.75rem;
    line-height: 1.15;
    white-space: normal;
  }

  .app-action-icon {
    width: 1.55rem;
    height: 1.55rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 244, 221, 0.14);
    color: #fff1d6;
    font-size: 1rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -2.8rem;
  }

  .brand-story-section,
  .menu-poster-section,
  .menu-section,
  .steps-section,
  .order-status-section,
  .about-section,
  .quick-strip {
    width: min(100% - 1rem, 1180px);
  }

  .product-grid,
  .product-grid.compact {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    overscroll-behavior: contain;
  }

  .drawer-panel {
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: 0.7rem;
    grid-template-rows: auto minmax(4.6rem, 0.34fr) minmax(0, 1.66fr) auto;
    transform: translateY(104%);
  }

  .cart-drawer.is-open .drawer-panel {
    transform: translateY(0);
  }

  .cart-items,
  .order-form {
    min-height: 0;
    overscroll-behavior: contain;
  }

  .order-form {
    height: 100%;
    max-height: none;
    gap: 0.48rem;
  }

  .order-window-card {
    gap: 0.08rem;
    padding: 0.46rem 0.56rem;
  }

  .order-window-card span {
    display: none;
  }

  .order-form .service-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-form fieldset:not(:first-of-type) .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-form .choice-grid span {
    min-height: 2.08rem;
  }

  .order-form .form-grid {
    grid-template-columns: 1fr;
    min-height: 8rem;
    overflow: visible;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    padding-block: 0.66rem;
  }

  .drawer-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
    padding-top: 0.45rem;
  }

  .drawer-footer span {
    font-size: 0.68rem;
  }

  .drawer-footer strong {
    font-size: 1.08rem;
  }

  .drawer-footer .copy-action,
  .drawer-footer .primary-action {
    min-height: 2.34rem;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .drawer-footer div,
  .drawer-footer .primary-action.full {
    grid-column: 1 / -1;
  }

  .status-lookup-card,
  .status-metrics {
    grid-template-columns: 1fr;
  }

  .status-empty-card {
    align-items: flex-start;
  }

  html.is-ios .drawer-panel,
  html.is-safari .drawer-panel {
    height: 100svh;
    min-height: -webkit-fill-available;
    grid-template-rows: auto minmax(3.6rem, 0.24fr) minmax(0, 1.76fr) auto;
  }

  html.is-ios .order-form,
  html.is-safari .order-form {
    scroll-padding-top: 0.35rem;
  }
}

@keyframes statusBellRing {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-8deg) scale(1.04);
  }

  45% {
    transform: rotate(8deg) scale(1.04);
  }

  70% {
    transform: rotate(-4deg) scale(1.02);
  }
}

@keyframes appMenuRise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
