﻿:root {
  --bg: #040404;
  --bg-soft: rgba(11, 11, 11, 0.74);
  --surface: rgba(15, 15, 15, 0.78);
  --surface-strong: rgba(9, 9, 9, 0.86);
  --surface-card: rgba(20, 20, 20, 0.84);
  --line: rgba(255, 122, 20, 0.16);
  --line-strong: rgba(255, 122, 20, 0.26);
  --ink: #f9f1e7;
  --muted: #e0b58d;
  --muted-soft: #c5966f;
  --brand: #ff6a00;
  --brand-2: #ff9a2f;
  --success: #9be0b2;
  --warning: #ffd0a8;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.64) 54%, rgba(0, 0, 0, 0.9) 100%),
    url('./fundosite.jpg?v=20260312-final') center center / cover fixed no-repeat;
}

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.backdrop-fire,
.backdrop-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.backdrop-fire {
  z-index: 0;
  opacity: 0.48;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.8) 100%),
    radial-gradient(circle at 21% 78%, rgba(255, 117, 24, 0.34), transparent 17%),
    radial-gradient(circle at 39% 86%, rgba(255, 170, 78, 0.16), transparent 19%),
    radial-gradient(circle at 67% 81%, rgba(255, 114, 18, 0.12), transparent 16%),
    url('./fundosite.jpg?v=20260312-final');
  background-size: cover;
  background-position: center center;
  filter: blur(1.2px) saturate(1.02) brightness(0.8);
}

.backdrop-grid {
  z-index: 1;
  opacity: 0.045;
  background-image:
    linear-gradient(112deg, transparent 0 43%, rgba(255, 255, 255, 0.12) 43% 44%, transparent 44% 100%),
    linear-gradient(68deg, transparent 0 43%, rgba(255, 255, 255, 0.08) 43% 44%, transparent 44% 100%);
  background-size: 220px 220px, 220px 220px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.96) 100%);
}

.page {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero,
.panel {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(7, 7, 7, 0.9), rgba(16, 16, 16, 0.65));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.14), rgba(0, 0, 0, 0.08) 45%, transparent 80%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 30px;
  padding: 38px;
}

.hero-copy,
.hero-side {
  display: grid;
  gap: 22px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo-mark {
  width: 196px;
  height: 196px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 20, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
}

.logo-frame {
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.16), rgba(13, 13, 13, 0.98));
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  background: #000;
}

.brand-copy {
  max-width: 560px;
}

.kicker,
.section-tag,
.quote-tag,
.story-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 20, 0.2);
  background: rgba(255, 106, 0, 0.12);
  color: #ffd9be;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.08);
}

.hero h1,
.brand-story h2,
.upgrade-copy h2,
.story-card h2,
.menu-title h3,
.modal-head h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.86;
}

.hero p,
.story-card p,
.brand-story p,
.panel-head p,
.order-head p,
.group p,
.inline-note,
.muted-note,
.meta-line,
.choice small {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-quote,
.story-card,
.manifesto-card,
.menu-card,
.summary-card,
.group,
.sticky-box {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-quote {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 122, 20, 0.24);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.18), rgba(16, 16, 16, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-quote strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.98;
}

.hero-chips,
.manifesto-signature,
.upgrade-tags,
.option-tags,
.card-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips span,
.manifesto-signature span,
.option-tags span,
.upgrade-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 20, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #f6d6bc;
  font-size: 13px;
}

.story-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 122, 20, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(16, 16, 16, 0.96));
}

.story-card-main {
  min-height: 260px;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.12), rgba(16, 16, 16, 0.98));
}

.story-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.story-card h3,
.manifesto-card h3,
.summary-head h3,
.group h4,
.sticky-box h4,
.builder-total,
.panel-head h2,
.order-head h2 {
  margin: 0;
  font-weight: 800;
}

.story-card h3,
.manifesto-card h3 {
  font-size: 1.3rem;
}

.story-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.story-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.14);
  color: #fff;
  font-weight: 800;
}

.brand-ribbon,
.brand-story,
.upgrade-strip,
.menu-panel,
.order-panel {
  border-radius: 30px;
}

.brand-ribbon {
  margin-top: 18px;
  overflow: hidden;
  padding: 16px 0;
  background: rgba(6, 6, 6, 0.58);
}

.ribbon-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  padding: 0 24px;
  color: #ffd2b2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: ribbonGlide 18s linear infinite alternate;
}

.brand-story,
.upgrade-strip,
.menu-panel,
.order-panel {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.brand-story,
.upgrade-strip,
.menu-panel,
.order-panel {
  margin-top: 24px;
  padding: 30px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.brand-story h2,
.upgrade-copy h2 {
  margin-top: 16px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.92;
}

.manifesto-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 122, 20, 0.16);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.1), rgba(18, 18, 18, 0.98));
}

.manifesto-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #f4d0b3;
  line-height: 1.9;
}

.upgrade-strip {
  display: grid;
  gap: 22px;
  background: linear-gradient(145deg, rgba(10, 10, 10, 0.86), rgba(18, 18, 18, 0.72));
}

.upgrade-tags span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
}

.upgrade-tags strong {
  color: #fff;
  font-size: 14px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.order-panel {
  position: sticky;
  top: 18px;
}

.panel-head,
.order-head,
.summary-head,
.cart-top,
.qty-row,
.builder-total,
.total-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.panel-head,
.order-head {
  align-items: end;
  margin-bottom: 20px;
}

.order-head {
  align-items: start;
}

.panel-head h2,
.order-head h2 {
  margin-top: 10px;
  font-size: 1.85rem;
}

.status-badge,
.live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge {
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: #ffd6b6;
}

.live-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 122, 20, 0.18);
  color: #fff3e7;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 20, 0.16);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(20, 20, 20, 0.92));
  box-shadow: var(--shadow-soft);
}

.menu-card.is-burger {
  border-color: rgba(255, 122, 20, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 122, 20, 0.08),
    0 24px 58px rgba(255, 98, 0, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.34);
}

.menu-card.is-burger::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -18px;
  height: 66px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 118, 18, 0.54), transparent 22%),
    radial-gradient(circle at 36% 58%, rgba(255, 178, 81, 0.28), transparent 22%),
    radial-gradient(circle at 64% 44%, rgba(255, 108, 28, 0.34), transparent 22%),
    radial-gradient(circle at 82% 60%, rgba(255, 154, 73, 0.18), transparent 18%);
  filter: blur(16px);
  opacity: 0.82;
  z-index: 0;
  pointer-events: none;
  animation: emberPulse 3.8s ease-in-out infinite alternate;
}

.menu-card.is-burger .menu-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 120, 34, 0.34), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(255, 186, 96, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26));
  mix-blend-mode: screen;
  opacity: 0.88;
  pointer-events: none;
  animation: flameShift 6.5s ease-in-out infinite alternate;
}

.menu-card.is-burger .menu-tag {
  background: linear-gradient(135deg, rgba(66, 19, 0, 0.4), rgba(255, 106, 0, 0.22));
  border-color: rgba(255, 207, 156, 0.32);
  box-shadow: 0 0 18px rgba(255, 122, 20, 0.2);
}

.menu-card.is-burger .menu-title h3,
.menu-card.is-burger .menu-price {
  text-shadow:
    0 0 20px rgba(255, 138, 39, 0.22),
    0 14px 30px rgba(0, 0, 0, 0.32);
}

.menu-card:hover,
.story-card:hover,
.summary-card:hover,
.manifesto-card:hover,
.group:hover,
.sticky-box:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 20, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.hero-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(255, 106, 0, 0.12);
}

.menu-visual {
  position: relative;
  min-height: 230px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-visual::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  filter: blur(5px);
}

.menu-tag {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-title {
  position: relative;
  z-index: 1;
}

.menu-title h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 0.96;
}

.menu-title p {
  margin: 0;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.menu-price {
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.meta-list {
  display: grid;
  gap: 10px;
  flex: 1;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}

.meta-line strong {
  color: #fff3e8;
}

.card-actions {
  margin-top: auto;
}

.primary-btn,
.secondary-btn,
.tiny-btn,
.stepper button,
.segmented button,
.close-btn {
  border: none;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.primary-btn,
.secondary-btn,
.tiny-btn {
  border-radius: 999px;
  font-weight: 800;
}

.primary-btn {
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.24);
}

.secondary-btn,
.tiny-btn {
  padding: 14px 18px;
  border: 1px solid rgba(255, 122, 20, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff1e6;
}

.tiny-btn {
  padding: 9px 14px;
  font-size: 13px;
}

.primary-btn:hover,
.secondary-btn:hover,
.tiny-btn:hover,
.stepper button:hover,
.segmented button:hover,
.close-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: #fff7ef;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 20, 0.16);
  background: rgba(18, 18, 18, 0.9);
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 122, 20, 0.46);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.segmented button {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 20, 0.16);
  background: rgba(20, 20, 20, 0.92);
  color: #f7e7d7;
  font-weight: 800;
}

.segmented button.active {
  border-color: rgba(255, 122, 20, 0.42);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 154, 47, 0.1));
  color: #fff;
}

.summary-card {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 20, 0.14);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(24, 24, 24, 0.92));
}

.summary-head {
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 122, 20, 0.1);
}

.summary-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.empty,
.group-empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 122, 20, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 20, 0.12);
  background: rgba(15, 15, 15, 0.84);
}

.cart-top {
  align-items: start;
}

.cart-top strong {
  display: block;
  font-size: 16px;
}

.cart-top small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.cart-price {
  white-space: nowrap;
  font-weight: 900;
  color: #fff;
}

.totals {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 122, 20, 0.12);
}

.total-line {
  align-items: center;
  color: var(--muted);
}

.total-line.strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.totals-note {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 20, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.muted-note {
  font-size: 13px;
}

.success-note {
  color: var(--success);
}

.warning-note {
  color: var(--warning);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(1020px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border-radius: 30px;
  border: 1px solid rgba(255, 122, 20, 0.18);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(20, 20, 20, 0.96));
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 122, 20, 0.1);
}

.modal-head h3 {
  font-size: 2rem;
}

.builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  padding: 18px 24px 24px;
}

.builder-main,
.builder-side {
  display: grid;
  gap: 14px;
}

.group,
.sticky-box {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 20, 0.12);
  background: rgba(18, 18, 18, 0.86);
}

.group h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.builder-section-wrap + .builder-section-wrap {
  margin-top: 24px;
}

.builder-section-header {
  margin-bottom: 16px;
}

.builder-section-header h4 {
  margin: 0 0 6px;
}

.builder-section-header p {
  margin: 0;
}

.builder-compound-grid {
  display: grid;
  gap: 16px;
}

.builder-subgroup,
.builder-choice-block {
  display: grid;
  gap: 12px;
}

.builder-subgroup {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 20, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.builder-subgroup h5 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd8bd;
}

.builder-subgroup p,
.builder-choice-block p {
  margin: 0;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 20, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.choice label {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.choice input {
  margin-top: 2px;
  accent-color: var(--brand);
}

.choice strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.choice-price {
  white-space: nowrap;
  font-weight: 800;
  color: #fff4ea;
}

.qty-row {
  align-items: center;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 20, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.stepper button,
.close-btn {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.stepper button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
}

.stepper strong {
  min-width: 24px;
  text-align: center;
}

.sticky-box {
  position: sticky;
  top: 0;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.14), rgba(20, 20, 20, 0.98));
}

.sticky-box ul {
  margin: 0;
  padding-left: 18px;
  color: #f4cfb1;
  line-height: 1.7;
  font-size: 14px;
}

.inline-note {
  margin-top: 10px;
}

.close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 20, 0.16);
  font-size: 22px;
}

.hidden {
  display: none !important;
}

@keyframes ribbonGlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-4%);
  }
}

@keyframes emberPulse {
  0% {
    opacity: 0.62;
    transform: scaleX(0.98) translateY(0);
  }
  100% {
    opacity: 0.92;
    transform: scaleX(1.02) translateY(-2px);
  }
}

@keyframes flameShift {
  0% {
    transform: translateX(-1.5%) translateY(0);
    opacity: 0.74;
  }
  100% {
    transform: translateX(2%) translateY(-1%);
    opacity: 0.96;
  }
}

@media (max-width: 1160px) {
  .hero-inner,
  .story-layout,
  .layout,
  .builder {
    grid-template-columns: 1fr;
  }

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

  .order-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 16px, 1320px);
    padding: 16px 0 28px;
  }

  .hero-inner,
  .brand-story,
  .upgrade-strip,
  .menu-panel,
  .order-panel,
  .modal-head,
  .builder {
    padding: 18px;
  }

  .brand-row,
  .panel-head,
  .order-head,
  .qty-row,
  .cart-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-grid,
  .story-grid-mini,
  .segmented {
    grid-template-columns: 1fr;
  }

  .logo-mark {
    width: 148px;
    height: 148px;
  }

  .hero h1 {
    font-size: 4.3rem;
  }

  .hero-quote strong {
    font-size: 2.2rem;
  }

  .brand-story h2,
  .upgrade-copy h2 {
    font-size: 3.1rem;
  }

  .primary-btn,
  .secondary-btn,
  .tiny-btn {
    width: 100%;
  }
}
