:root {
  --deep: #04131e;
  --navy-950: #061f2e;
  --navy-900: #082b3f;
  --navy-800: #0e3a52;
  --navy-100: #e9f1f5;
  --navy-50: #f0f6f8;
  --gold-600: #dca63a;
  --gold-500: #ebb64b;
  --gold-400: #f4c86c;
  --gold-100: #fff4d8;
  --gold-50: #fff9ec;
  --ink: #14222b;
  --muted: #63717a;
  --line: #d9d4c8;
  --line-soft: #e9e3d6;
  --paper: #fbf8f1;
  --paper-deep: #f5eee2;
  --surface: #ffffff;
  --surface-warm: #f4efe5;
  --green-700: #1f7a5c;
  --green-100: #e5f4ed;
  --red-700: #b3453d;
  --red-100: #fae9e7;
  --blue-700: #2c6384;
  --blue-100: #e5f0f6;
  --shadow: 0 18px 38px rgba(6, 31, 46, 0.09);
  --shadow-strong: 0 24px 60px rgba(6, 31, 46, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.96), rgba(245, 238, 226, 0.96)),
    var(--paper);
}

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

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

a {
  color: inherit;
}

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

.admin-shell {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr) 292px;
  gap: 18px;
  min-height: 100vh;
  padding: 18px;
}

.sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  min-height: calc(100vh - 36px);
  padding: 18px;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand {
  display: block;
  width: 138px;
  margin-bottom: 22px;
}

.side-nav {
  display: grid;
  gap: 6px;
}

.nav-item,
.rail-link,
.text-link {
  text-decoration: none;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.nav-item:hover,
.nav-item.is-active {
  color: var(--navy-950);
  background: var(--gold-500);
}

.sidebar-block {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.route-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.main {
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 4px 2px 0;
}

.topbar h1,
.panel h2,
.customer-page h1,
.customer-page h2 {
  margin: 0;
  color: var(--navy-950);
  letter-spacing: 0;
}

.topbar h1 {
  font-size: 30px;
  line-height: 1.15;
}

.panel h2 {
  font-size: 19px;
  line-height: 1.25;
}

.panel h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.2;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-actions,
.action-row,
.detail-actions,
.customer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  color: var(--navy-950);
  background: var(--gold-500);
}

.primary-button:hover {
  background: var(--gold-600);
}

.secondary-button {
  color: var(--navy-950);
  background: #fff;
  border-color: var(--line);
}

.secondary-button:hover {
  border-color: var(--gold-600);
}

.secondary-button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(235, 182, 75, 0.44);
}

.secondary-button.light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ghost-button {
  color: var(--navy-950);
  background: transparent;
  border-color: var(--line);
}

.text-link {
  color: var(--navy-900);
  font-weight: 800;
  font-size: 14px;
}

.full {
  width: 100%;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(210px, 1.3fr);
  gap: 10px;
  margin-bottom: 16px;
}

.metric,
.panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(6, 31, 46, 0.04);
}

.metric {
  min-height: 78px;
  padding: 14px;
}

.metric span,
.info-block span,
.selected-inquiry span,
.summary-list span,
.summary-box span,
.customer-price span,
.addon-item span,
.bar-row span,
.route-card p,
.field-help,
.rail-note,
.muted-block,
.lead-copy,
.note-box,
.validation-note,
.empty-slot span,
.booking-block em,
.inquiry-card p {
  color: var(--muted);
}

.metric span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.metric strong {
  display: block;
  color: var(--navy-950);
  font-size: 26px;
  line-height: 1.05;
}

.metric-wide strong {
  font-size: 20px;
}

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

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

.panel {
  min-width: 0;
  padding: 18px;
}

.panel-header,
.detail-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.route-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.route-card,
.inquiry-card,
.share-card,
.package-list-item,
.booking-block,
.addon-item,
.date-pill,
.package-tab {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
}

.route-card {
  padding: 14px;
}

.route-card-top,
.inquiry-card-top,
.status-line,
.rail-row,
.bar-row > div,
.detail-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.detail-tags {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}

.route-card-top strong {
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1;
}

.mini-stats,
.inquiry-card-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-stats span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--navy-900);
  background: var(--navy-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.queue-preview {
  display: grid;
  gap: 10px;
}

.inquiry-card {
  padding: 12px;
  cursor: pointer;
}

.inquiry-card:hover,
.share-card:hover,
.package-list-item:hover,
.booking-block:hover {
  border-color: var(--gold-600);
}

.inquiry-card.compact p {
  margin-bottom: 0;
  font-size: 13px;
}

.inquiry-card-top strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
}

.inquiry-card-top span,
.inquiry-card-meta span {
  font-size: 12px;
}

.inquiry-card-meta {
  margin: 10px 0;
}

.source-chip,
.route-chip,
.status-chip,
.price-pill,
.validation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: 100%;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.status-chip {
  white-space: nowrap;
}

.source-chip {
  color: var(--navy-900);
  background: #f3efe6;
  border: 1px solid var(--line-soft);
  white-space: nowrap;
}

.route-chip {
  color: var(--navy-950);
  background: var(--gold-100);
  border: 1px solid #efd38d;
}

.route-event {
  background: var(--blue-100);
  border-color: #bdd8e7;
}

.route-general {
  background: var(--green-100);
  border-color: #b7ddca;
}

.status-new {
  color: var(--blue-700);
  background: var(--blue-100);
}

.status-attention {
  color: #8a5f12;
  background: var(--gold-100);
}

.status-waiting {
  color: var(--red-700);
  background: var(--red-100);
}

.status-confirmed {
  color: var(--green-700);
  background: var(--green-100);
}

.bar-list {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  gap: 7px;
}

.bar-row strong {
  color: var(--navy-950);
}

.bar-row small {
  color: var(--muted);
  font-size: 12px;
}

.bar {
  display: block;
  height: 9px;
  overflow: hidden;
  background: var(--surface-warm);
  border-radius: 999px;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--navy-900);
  border-radius: inherit;
}

.bar.gold span {
  background: var(--gold-600);
}

.bar.green span {
  background: var(--green-700);
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-line {
  min-height: 44px;
  padding: 8px 10px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.impact-grid,
.owner-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.impact-grid div,
.owner-metrics div,
.selected-inquiry div {
  padding: 14px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.impact-grid span,
.owner-metrics span,
.selected-inquiry span {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
}

.impact-grid strong,
.owner-metrics strong,
.selected-inquiry strong {
  color: var(--navy-950);
  font-size: 22px;
}

.selected-inquiry strong {
  font-size: 18px;
  line-height: 1.2;
}

.muted-block {
  margin: 14px 0 0;
  padding: 12px;
  background: var(--surface-warm);
  border-left: 3px solid var(--gold-600);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.55;
}

.right-rail {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.rail-section {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.rail-row {
  min-height: 28px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.rail-row strong,
.rail-number {
  color: var(--navy-950);
}

.rail-number {
  display: block;
  font-size: 24px;
}

.rail-link {
  display: block;
  min-height: 34px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.segment {
  min-height: 36px;
  padding: 0 12px;
  color: var(--navy-900);
  background: var(--surface-warm);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.segment.is-active {
  color: var(--navy-950);
  background: var(--gold-500);
  border-color: var(--gold-600);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.inquiry-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #fff;
}

.inquiry-table th,
.inquiry-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
  font-size: 13px;
}

.inquiry-table th {
  color: var(--muted);
  background: #f7f3eb;
  font-size: 12px;
  font-weight: 850;
}

.cell-stack {
  display: grid;
  gap: 5px;
  align-content: start;
}

.cell-stack > .source-chip,
.cell-stack > .route-chip,
.cell-stack > .status-chip {
  width: fit-content;
}

.inquiry-table th:nth-child(1),
.inquiry-table td:nth-child(1) {
  width: 18%;
}

.inquiry-table th:nth-child(2),
.inquiry-table td:nth-child(2) {
  width: 20%;
}

.inquiry-table th:nth-child(3),
.inquiry-table td:nth-child(3) {
  width: 18%;
}

.inquiry-table th:nth-child(4),
.inquiry-table td:nth-child(4) {
  width: 24%;
}

.inquiry-table th:nth-child(5),
.inquiry-table td:nth-child(5) {
  width: 20%;
}

.inquiry-table td span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.inquiry-table tr {
  cursor: pointer;
}

.inquiry-table tr:hover,
.inquiry-table tr.is-selected {
  background: #fffbf0;
}

.mobile-list {
  display: none;
}

.selected-inquiry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

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

.share-card {
  min-height: 116px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.share-card.is-active {
  background: #fffbef;
  border-color: var(--gold-600);
  box-shadow: inset 0 0 0 1px var(--gold-600);
}

.share-card span,
.share-card small,
.share-card em {
  display: block;
}

.share-card span {
  margin-bottom: 7px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 850;
}

.share-card small {
  min-height: 34px;
  color: var(--muted);
  line-height: 1.35;
}

.share-card em {
  margin-top: 10px;
  color: var(--green-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.link-preview {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 12px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.link-preview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.link-preview a {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.copy-box {
  width: 100%;
  min-height: 174px;
  resize: vertical;
  margin-bottom: 12px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.5;
}

.detail-grid .panel {
  min-height: 100%;
}

.info-grid,
.snapshot-grid,
.package-detail-grid,
.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.info-block {
  padding: 14px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.info-block.flat {
  margin-bottom: 10px;
}

.info-block span,
.snapshot-grid span {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 850;
}

.info-block strong {
  display: block;
  color: var(--navy-950);
  line-height: 1.25;
}

.info-block p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 850;
}

.input,
.customer-form input,
.customer-form select,
.customer-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.customer-form textarea,
.note-input {
  min-height: 104px;
  padding-top: 10px;
}

.field-help {
  margin: 8px 0 12px;
  font-size: 13px;
  line-height: 1.4;
}

.status-editor {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.lead-copy {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold-600);
  border-radius: 50%;
}

.note-box {
  min-height: 86px;
  margin: 0 0 12px;
  padding: 12px;
  background: var(--surface-warm);
  border-radius: var(--radius);
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.timeline li {
  line-height: 1.45;
}

.validation-chip,
.validation-note {
  color: #8a5f12;
  background: var(--gold-100);
}

.validation-chip {
  border: 1px solid #efd38d;
}

.validation-note {
  margin: 10px 0 0;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.45;
}

.date-strip {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.date-pill {
  flex: 0 0 auto;
  display: grid;
  gap: 4px;
  min-width: 112px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}

.date-pill.is-active {
  background: var(--gold-100);
  border-color: var(--gold-600);
}

.date-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.date-pill strong {
  color: var(--navy-950);
  font-size: 18px;
}

.resource-board {
  display: grid;
  gap: 10px;
}

.resource-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.resource-head {
  display: grid;
  align-content: center;
  gap: 5px;
}

.resource-head strong {
  color: var(--navy-950);
}

.resource-head span {
  color: var(--muted);
  font-size: 12px;
}

.resource-bookings {
  display: grid;
  gap: 8px;
}

.booking-block {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(170px, 1fr) minmax(200px, 1.5fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.booking-block .status-chip {
  grid-column: 1 / -1;
  justify-self: start;
}

.booking-block span,
.booking-block strong,
.booking-block em {
  overflow-wrap: anywhere;
}

.booking-block span {
  color: var(--navy-900);
  font-weight: 850;
}

.booking-block em {
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.empty-slot {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 11px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.package-group {
  margin-bottom: 18px;
}

.package-list-item {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 58px;
  margin-bottom: 8px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.package-list-item.is-active {
  background: var(--gold-100);
  border-color: var(--gold-600);
}

.package-list-item span {
  color: var(--navy-950);
  font-weight: 850;
}

.package-list-item strong {
  color: var(--muted);
  font-size: 12px;
}

.price-pill {
  color: var(--navy-950);
  background: var(--gold-100);
  border: 1px solid #efd38d;
}

.package-detail-grid {
  margin: 14px 0;
}

.package-detail-grid section {
  min-width: 0;
  padding: 14px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.package-detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.menu-group {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.menu-group strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.menu-group p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.snapshot-callout {
  margin-top: 14px;
  padding: 14px;
  color: #fff;
  background: var(--navy-900);
  border-radius: var(--radius);
}

.snapshot-callout strong {
  display: block;
  margin-bottom: 5px;
}

.snapshot-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

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

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 12px;
}

.addon-item strong {
  color: var(--navy-950);
  text-align: right;
}

.owner-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.alert-panel {
  border-color: #f1c3bd;
}

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

.alert-list div {
  min-height: 72px;
  padding: 12px;
  color: var(--red-700);
  background: var(--red-100);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.35;
}

.demo-review-page {
  align-items: start;
}

.demo-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 31, 46, 0.98), rgba(8, 43, 63, 0.94)),
    var(--navy-950);
  border-color: rgba(235, 182, 75, 0.28);
  box-shadow: var(--shadow-strong);
}

.demo-review-hero h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.demo-review-hero p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.demo-review-actions,
.demo-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-review-actions {
  justify-content: flex-end;
}

.demo-flow-list {
  display: grid;
  gap: 14px;
}

.demo-flow-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.64), rgba(255, 255, 255, 0.96)),
    #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.demo-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 999px;
  font-weight: 950;
}

.demo-step-body {
  min-width: 0;
}

.demo-step-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.demo-step-heading h3 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.2;
}

.demo-step-heading p,
.demo-step-detail-grid p,
.review-card p,
.demo-score-card p,
.demo-scenario-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.demo-step-actions {
  flex: 0 0 230px;
  justify-content: flex-end;
}

.demo-step-actions a {
  width: 100%;
}

.demo-step-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.demo-step-detail-grid div {
  min-height: 104px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.demo-step-detail-grid span,
.score-options span,
.demo-scenario-card span {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
}

.demo-step-detail-grid span {
  display: block;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.demo-step-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-step-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--navy-900);
  background: var(--navy-50);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.demo-review-sidebar {
  display: grid;
  gap: 12px;
}

.review-card,
.demo-score-card,
.demo-scenario-card {
  min-width: 0;
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.review-card h3,
.demo-score-card strong,
.demo-scenario-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 15px;
  line-height: 1.25;
}

.review-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.demo-score-grid,
.demo-scenario-grid {
  display: grid;
  gap: 12px;
}

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

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

.demo-score-card {
  display: grid;
  gap: 10px;
  min-height: 164px;
}

.score-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-self: end;
}

.score-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  background: var(--paper-deep);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

.demo-scenario-card {
  display: grid;
  gap: 8px;
  min-height: 176px;
  text-decoration: none;
}

.demo-scenario-card:hover {
  border-color: var(--gold-600);
  box-shadow: 0 14px 30px rgba(220, 166, 58, 0.12);
}

.demo-scenario-card span {
  align-self: end;
  color: var(--gold-600);
}

.customer-link-review-page {
  align-items: start;
}

.customer-link-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 249, 236, 0.9), rgba(255, 255, 255, 0.98)),
    #fff;
  border-color: rgba(220, 166, 58, 0.34);
}

.customer-link-review-hero h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.12;
}

.customer-link-review-hero p,
.customer-link-review-card p,
.customer-link-review-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.customer-link-review-summary {
  display: grid;
  gap: 8px;
}

.customer-link-review-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 12px;
  background: var(--navy-950);
  border-radius: var(--radius);
}

.customer-link-review-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.customer-link-review-summary strong {
  color: var(--gold-400);
  font-size: 16px;
  text-align: right;
}

.customer-link-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.customer-link-review-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 360px;
  padding: 16px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.customer-link-review-card:hover {
  border-color: var(--gold-600);
  box-shadow: 0 14px 30px rgba(220, 166, 58, 0.1);
}

.customer-link-review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.customer-link-review-card-head span:not(.source-chip) {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-link-review-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.25;
}

.compact-link-preview {
  min-width: 0;
  padding: 10px;
}

.compact-link-preview a {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-link-review-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-self: end;
}

.customer-link-review-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.customer-link-review-steps article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.customer-link-review-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 26px;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.customer-link-review-steps strong {
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1.25;
}

.customer-shell {
  min-height: 100vh;
  background: var(--paper);
}

.customer-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 12px 18px;
  background: rgba(251, 248, 241, 0.96);
  border-bottom: 1px solid var(--line-soft);
}

.customer-brand {
  width: 128px;
}

.customer-page-context {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.customer-admin-link {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.customer-page {
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 14px 18px 42px;
}

.customer-section {
  margin-bottom: 12px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.customer-section.intro {
  background: var(--navy-950);
}

.customer-section.intro h1,
.customer-section.intro p {
  color: #fff;
}

.customer-section.intro .eyebrow {
  color: var(--gold-500);
}

.customer-page h1 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.12;
}

.customer-page h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.customer-section p {
  margin: 0;
  line-height: 1.55;
}

.customer-price {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
  padding: 12px;
  color: var(--navy-950);
  background: var(--gold-100);
  border-radius: var(--radius);
}

.customer-price strong {
  text-align: right;
}

.customer-actions {
  align-items: stretch;
}

.customer-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.package-tab {
  min-height: 68px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.package-tab.is-active {
  background: var(--gold-100);
  border-color: var(--gold-600);
}

.package-tab span {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
  font-weight: 850;
}

.package-tab strong {
  color: var(--muted);
  font-size: 12px;
}

.customer-checks li {
  font-size: 15px;
}

.customer-menu {
  grid-template-columns: 1fr;
}

.menu-explainer {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(245, 249, 244, 0.96));
  border: 1px solid rgba(111, 141, 114, 0.24);
  border-radius: var(--radius);
}

.menu-explainer strong {
  color: var(--navy-950);
  font-size: 15px;
}

.menu-explainer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.menu-showcase {
  gap: 12px;
}

.menu-choice-card {
  display: block;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.96)),
    var(--surface);
  border: 1px solid rgba(222, 216, 200, 0.9);
  box-shadow: 0 12px 26px rgba(6, 31, 46, 0.05);
}

.menu-choice-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  color: var(--navy-950);
  cursor: pointer;
  list-style: none;
}

.menu-choice-card summary::-webkit-details-marker {
  display: none;
}

.menu-choice-card summary > span {
  display: grid;
  gap: 5px;
}

.menu-choice-card summary > em {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: var(--navy-900);
  background: var(--gold-100);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.menu-choice-card[open] summary {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.menu-choice-card .menu-group-title {
  color: var(--navy-950);
  font-weight: 900;
}

.menu-choice-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.menu-choice-card ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 8px;
  color: var(--deep);
  background: #fff9ec;
  border: 1px solid rgba(226, 214, 188, 0.9);
  border-radius: var(--radius);
}

.menu-item-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: var(--surface-warm);
  border-radius: 7px;
}

.menu-item-name {
  min-width: 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.28;
}

.customer-tags span {
  margin-bottom: 2px;
}

.reassurance {
  border-color: #cfe5d9;
}

.inline-reservation-section {
  scroll-margin-top: 18px;
  border-color: rgba(111, 141, 114, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 249, 244, 0.78), rgba(255, 253, 248, 0.95)),
    var(--surface);
}

.inline-success {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(245, 249, 244, 0.82), rgba(255, 253, 248, 0.94)),
    var(--surface);
}

.customer-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.customer-form label {
  display: grid;
  gap: 6px;
}

.customer-form label span {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 850;
}

.customer-form textarea {
  resize: vertical;
}

.form-note,
.summary-box {
  padding: 12px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.form-note strong,
.summary-box strong {
  color: var(--navy-950);
}

.form-note p,
.summary-box p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.success-state {
  min-height: 380px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.summary-list {
  grid-template-columns: 1fr;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.summary-list div:last-child {
  border-bottom: 0;
}

.summary-list strong {
  text-align: right;
}

.customer-status {
  margin: 10px 0;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 14px;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-system {
  grid-template-columns: 244px minmax(0, 1fr) 320px;
  gap: 22px;
  padding: 22px;
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(235, 182, 75, 0.12), rgba(4, 19, 30, 0) 30%),
    linear-gradient(180deg, var(--deep), var(--navy-950) 58%, var(--navy-900));
  border: 1px solid rgba(235, 182, 75, 0.22);
}

.sidebar-title {
  display: grid;
  gap: 3px;
  margin: -6px 0 22px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.sidebar-title span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.sidebar-title strong {
  color: var(--gold-400);
  font-size: 16px;
}

.nav-item {
  min-height: 44px;
}

.nav-item:hover,
.nav-item.is-active {
  color: var(--deep);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 22px rgba(235, 182, 75, 0.16);
}

.topbar {
  min-height: 76px;
  margin-bottom: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(6, 31, 46, 0.04);
}

.demo-flow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.demo-flow-strip div {
  min-width: 0;
  padding: 12px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(6, 31, 46, 0.035);
}

.demo-flow-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  margin-bottom: 8px;
  color: var(--deep);
  background: var(--gold-500);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.demo-flow-strip strong {
  display: block;
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.2;
}

.demo-flow-strip small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.metric,
.panel,
.rail-section,
.customer-section,
.customer-form,
.form-side-panel,
.summary-status-card {
  box-shadow: 0 10px 30px rgba(6, 31, 46, 0.045);
}

.metric,
.panel,
.rail-section {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.primary-button {
  color: var(--deep);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 22px rgba(220, 166, 58, 0.18);
}

.primary-button:hover {
  background: linear-gradient(180deg, #f7cf7a, #cf9230);
}

.secondary-button,
.ghost-button {
  background: #fffdf8;
}

.rail-demo {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(235, 182, 75, 0.12), rgba(6, 31, 46, 0.04)),
    var(--navy-950);
  border-color: rgba(235, 182, 75, 0.28);
}

.rail-demo .eyebrow,
.rail-demo strong {
  color: var(--gold-400);
}

.rail-demo .rail-link {
  color: rgba(255, 255, 255, 0.86);
}

.rail-demo .rail-link:hover {
  color: #fff;
}

.whatsapp-preview {
  overflow: hidden;
  margin-bottom: 12px;
  background: #e9efe4;
  border: 1px solid #d4ddcd;
  border-radius: var(--radius);
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  color: #fff;
  background: #075e54;
}

.wa-header > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #075e54;
  background: #f7d18a;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.wa-header strong,
.wa-header small {
  display: block;
}

.wa-header small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.wa-thread {
  display: grid;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(45deg, rgba(7, 94, 84, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(7, 94, 84, 0.04) 25%, transparent 25%),
    #eef3e8;
  background-size: 28px 28px;
}

.wa-bubble {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.48;
  box-shadow: 0 2px 8px rgba(6, 31, 46, 0.08);
}

.wa-bubble.customer {
  justify-self: end;
  color: var(--ink);
  background: #d9fdd3;
}

.wa-bubble.admin {
  justify-self: start;
  color: var(--ink);
  background: #fff;
}

.customer-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 239, 227, 0.98)),
    var(--paper);
}

.customer-header {
  width: min(100%, 1160px);
  min-height: 76px;
  padding: 14px 22px;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(14px);
}

.customer-brand {
  width: 154px;
}

.customer-mini-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.customer-mini-nav a,
.customer-admin-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--navy-900);
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.customer-admin-link {
  margin-left: 8px;
  color: var(--deep);
  border-color: var(--gold-600);
}

.customer-page {
  width: min(100%, 1160px);
  padding: 24px 22px 56px;
}

.customer-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  min-height: 430px;
  margin-bottom: 16px;
  padding: 22px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 19, 30, 0.98), rgba(8, 43, 63, 0.96)),
    var(--deep);
  border: 1px solid rgba(235, 182, 75, 0.28);
  border-radius: 14px;
  box-shadow: var(--shadow-strong);
}

.customer-hero.compact,
.customer-hero.summary {
  min-height: 300px;
}

.customer-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-width: 0;
}

.customer-hero .eyebrow {
  color: var(--gold-400);
}

.customer-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.02;
}

.customer-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.62;
}

.hero-subtitle {
  display: block;
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--gold-400);
  font-size: 17px;
  line-height: 1.45;
}

.customer-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.customer-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: var(--gold-100);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(235, 182, 75, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.customer-hero .customer-price {
  max-width: 420px;
  background: rgba(255, 244, 216, 0.96);
  border: 1px solid rgba(235, 182, 75, 0.62);
}

.customer-hero .customer-price small {
  display: block;
  margin-top: 6px;
  color: rgba(6, 31, 46, 0.7);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.4;
}

.customer-hero .customer-actions {
  margin-top: 4px;
}

.customer-hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(235, 182, 75, 0.28);
  border-radius: 12px;
}

.customer-hero-media.small {
  max-height: 260px;
}

.customer-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.customer-route-visual {
  min-height: 320px;
  background-image: url("./assets/lume-customer-journey-visuals.png");
  background-repeat: no-repeat;
  background-size: 200% auto;
}

.visual-wedding {
  background-position: left top;
}

.visual-event {
  background-position: right top;
}

.visual-venue {
  background-position: left bottom;
}

.visual-general {
  background-position: right bottom;
}

.hero-floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(78%, 320px);
  padding: 14px;
  color: #fff;
  background: rgba(4, 19, 30, 0.82);
  border: 1px solid rgba(235, 182, 75, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-floating-card span,
.hero-floating-card strong {
  display: block;
}

.hero-floating-card span {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-floating-card strong {
  margin-top: 4px;
  font-size: 17px;
}

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

.decision-path-section,
.venue-persuasion-section,
.package-options-section,
.selected-package-section,
.inline-reservation-section {
  scroll-margin-top: 18px;
}

.decision-path-grid,
.venue-persuasion-grid,
.package-decision-grid {
  display: grid;
  gap: 12px;
}

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

.decision-path-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 176px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.72), rgba(255, 255, 255, 0.96)),
    #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.decision-path-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 26px;
  color: var(--deep);
  background: var(--gold-500);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.decision-path-card strong,
.venue-persuasion-card strong {
  color: var(--navy-950);
  font-size: 17px;
  line-height: 1.25;
}

.decision-path-card p,
.venue-persuasion-card p,
.package-decision-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.venue-persuasion-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 156px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 249, 236, 0.92), rgba(255, 255, 255, 0.96)),
    #fff;
  border: 1px solid rgba(220, 166, 58, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(6, 31, 46, 0.05);
}

.venue-persuasion-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.venue-persuasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.venue-persuasion-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--navy-900);
  background: var(--gold-100);
  border: 1px solid rgba(220, 166, 58, 0.36);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

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

.package-decision-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  min-height: 410px;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(6, 31, 46, 0.05);
}

.package-decision-card.is-active {
  border-color: rgba(220, 166, 58, 0.72);
  box-shadow: inset 0 0 0 1px rgba(220, 166, 58, 0.36), 0 18px 36px rgba(220, 166, 58, 0.12);
}

.package-decision-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  color: var(--navy-900);
  background: var(--gold-100);
  border: 1px solid rgba(220, 166, 58, 0.36);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.package-decision-card h3 {
  margin: 12px 0 6px;
  color: var(--navy-950);
  font-size: 22px;
  line-height: 1.2;
}

.package-decision-card > div > strong {
  color: var(--gold-600);
  font-size: 18px;
}

.package-decision-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-decision-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.package-decision-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold-600);
  border-radius: 999px;
}

.package-decision-card .secondary-button {
  width: 100%;
}

.package-choice-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.package-choice-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-width: 0;
  padding: 15px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.package-choice-card.is-active {
  background: var(--gold-50);
  border-color: rgba(220, 166, 58, 0.72);
  box-shadow: inset 0 0 0 1px rgba(220, 166, 58, 0.25);
}

.package-choice-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  color: var(--navy-900);
  background: var(--gold-100);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.package-choice-card h3 {
  margin: 0 0 5px;
  color: var(--navy-950);
  font-size: 18px;
}

.package-choice-card > div > strong {
  color: var(--gold-600);
  font-size: 15px;
}

.package-choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.package-choice-card .secondary-button {
  width: 100%;
}

.package-choice-card .secondary-button:disabled {
  color: var(--navy-900);
  background: var(--gold-100);
  border-color: rgba(220, 166, 58, 0.45);
  cursor: default;
  opacity: 1;
}

.selected-package-section h3 {
  margin: 18px 0 10px;
  color: var(--navy-950);
}

.package-tab,
.customer-section,
.customer-form,
.form-side-panel {
  background: rgba(255, 255, 255, 0.9);
}

.package-tab {
  min-height: 86px;
}

.package-tab.is-active {
  box-shadow: inset 0 0 0 1px var(--gold-600), 0 12px 24px rgba(220, 166, 58, 0.12);
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-title-row h2 {
  margin-bottom: 0;
}

.section-title-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

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

.featured-menu-card {
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.featured-menu-card img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  background: #fff;
}

.featured-menu-card div {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.featured-menu-card span {
  width: fit-content;
  padding: 5px 9px;
  color: #fff;
  background: var(--gold-600);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.featured-menu-card strong {
  color: var(--navy-950);
  font-size: 17px;
}

.featured-menu-card em {
  color: var(--gold-600);
  font-style: normal;
  font-weight: 900;
}

.data-honesty-note {
  margin-top: 12px !important;
  padding: 11px 12px;
  color: var(--muted);
  background: var(--surface-warm);
  border-radius: var(--radius);
  font-size: 13px;
}

.section-actions {
  margin-top: 14px;
}

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

.service-addon-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 16px;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.service-addon-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-addon-card strong {
  color: var(--navy-950);
  font-size: 17px;
}

.service-addon-card em {
  color: var(--gold-600);
  font-style: normal;
  font-weight: 900;
}

.requestable-addon-list {
  gap: 7px;
}

.customer-package-teasers.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-package-teasers.two-up .package-teaser {
  min-height: 0;
}

.booking-next-step {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding: 13px;
  background: var(--gold-50);
  border: 1px solid rgba(220, 166, 58, 0.34);
  border-radius: var(--radius);
}

.booking-next-step.status-confirmed {
  background: #edf7f1;
  border-color: #b9ddc7;
}

.booking-next-step strong {
  color: var(--navy-950);
}

.booking-next-step p {
  color: var(--muted);
}

.customer-summary-page .summary-box span,
.customer-summary-page .summary-box strong {
  display: block;
}

.customer-summary-page .summary-box span {
  margin-bottom: 5px;
}

.correction-section .secondary-button {
  margin-top: 14px;
}

#venue-options,
#general-menu,
#event-services {
  scroll-margin-top: 88px;
}

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

.venue-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.62), rgba(255, 255, 255, 0.94)),
    #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.venue-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  color: var(--navy-900);
  background: var(--gold-100);
  border: 1px solid rgba(220, 166, 58, 0.38);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.venue-card h3 {
  margin: 12px 0 6px;
  color: var(--navy-950);
  font-size: 20px;
}

.venue-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.venue-card-note {
  align-self: end;
  padding: 12px;
  background: var(--surface-warm);
  border-radius: var(--radius);
}

.venue-card-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 12px;
}

.customer-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: customer-step;
}

.customer-step-list li {
  position: relative;
  min-height: 112px;
  padding: 46px 14px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  line-height: 1.48;
  counter-increment: customer-step;
}

.customer-step-list li::before {
  content: counter(customer-step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 24px;
  color: var(--deep);
  background: var(--gold-500);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

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

.customer-package-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.package-teaser {
  display: grid;
  gap: 7px;
  min-height: 168px;
  padding: 15px;
  color: inherit;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-decoration: none;
}

.package-teaser:hover {
  border-color: var(--gold-600);
  box-shadow: 0 12px 24px rgba(220, 166, 58, 0.12);
}

.package-teaser span {
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 900;
}

.package-teaser strong {
  color: var(--gold-600);
  font-size: 15px;
}

.package-teaser em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.package-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fffdf8;
}

.package-compare-table th,
.package-compare-table td {
  width: 25%;
  padding: 13px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.package-compare-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 18%;
  color: var(--navy-950);
  background: #f7f0e3;
  font-size: 13px;
  font-weight: 900;
}

.package-compare-table thead th {
  color: var(--navy-950);
  background: var(--gold-50);
}

.package-compare-table td {
  color: var(--muted);
  font-size: 13px;
}

.package-compare-table td.is-active {
  background: #fff8e6;
  box-shadow: inset 0 0 0 2px rgba(220, 166, 58, 0.28);
}

.package-compare-table td strong,
.package-compare-table td a {
  display: block;
}

.package-compare-table td strong {
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 15px;
}

.package-compare-table td a {
  margin-top: 6px;
  color: var(--navy-900);
  font-weight: 900;
  text-decoration: none;
}

.comparison-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.faq-item {
  min-width: 0;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.faq-item[open] {
  border-color: rgba(220, 166, 58, 0.48);
  box-shadow: 0 12px 24px rgba(6, 31, 46, 0.05);
}

.faq-item summary {
  min-height: 54px;
  padding: 14px 42px 14px 14px;
  color: var(--navy-950);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.52;
}

.customer-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
}

.customer-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.full-field,
.form-note,
.customer-form .primary-button {
  grid-column: 1 / -1;
}

.form-side-panel {
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.form-side-panel h2 {
  margin: 0 0 12px;
}

.form-side-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.summary-status-card {
  align-self: center;
  min-width: 280px;
  padding: 22px;
  color: var(--deep);
  background: var(--gold-50);
  border: 1px solid rgba(235, 182, 75, 0.5);
  border-radius: var(--radius);
}

.summary-status-card span,
.summary-status-card strong,
.summary-status-card p {
  display: block;
}

.summary-status-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-status-card strong {
  margin-top: 6px;
  color: var(--navy-950);
  font-size: 34px;
}

.summary-status-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 1240px) {
  .admin-shell {
    grid-template-columns: 204px minmax(0, 1fr);
  }

  .demo-system {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .right-rail {
    display: none;
  }

  .metric-strip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
    padding: 12px;
  }

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

  .sidebar {
    position: static;
    min-height: 0;
  }

  .brand {
    width: 120px;
    margin-bottom: 14px;
  }

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

  .sidebar-block {
    display: none;
  }

  .topbar {
    flex-direction: column;
  }

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

  .content-grid,
  .route-board,
  .selected-inquiry,
  .link-card-grid,
  .impact-grid,
  .owner-metrics,
  .alert-list,
  .addon-grid,
  .menu-groups,
  .info-grid,
  .snapshot-grid,
  .package-detail-grid,
  .demo-review-hero,
  .demo-step-detail-grid,
  .demo-score-grid,
  .demo-scenario-grid,
  .customer-link-review-hero,
  .customer-link-review-grid,
  .customer-link-review-steps,
  .customer-hero,
  .customer-form-layout,
  .venue-grid,
  .customer-step-list,
  .customer-package-teasers,
  .venue-persuasion-grid,
  .package-decision-grid,
  .service-addon-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .customer-hero {
    min-height: 0;
  }

  .customer-hero-media img {
    min-height: 260px;
  }

  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: 1 / -1;
  }

  .resource-row {
    grid-template-columns: 1fr;
  }

  .booking-block {
    grid-template-columns: 1fr;
  }

  .demo-review-actions,
  .demo-step-actions,
  .customer-link-review-actions {
    justify-content: flex-start;
  }

  .demo-step-heading {
    flex-direction: column;
  }

  .demo-step-actions {
    flex: 1 1 auto;
  }
}

@media (max-width: 720px) {
  .topbar h1 {
    font-size: 24px;
  }

  .demo-flow-strip {
    grid-template-columns: 1fr;
  }

  .demo-flow-step {
    grid-template-columns: 1fr;
  }

  .demo-step-number {
    width: 42px;
    height: 42px;
  }

  .demo-review-actions > *,
  .demo-step-actions > * {
    flex: 1 1 100%;
  }

  .customer-link-review-actions {
    grid-template-columns: 1fr;
  }

  .customer-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .customer-mini-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

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

  .panel,
  .metric {
    padding: 14px;
  }

  .panel-header,
  .detail-title {
    flex-direction: column;
  }

  .table-wrap {
    display: none;
  }

  .mobile-list {
    display: grid;
    gap: 10px;
  }

  .stack-mobile,
  .detail-actions,
  .top-actions {
    width: 100%;
  }

  .stack-mobile > *,
  .detail-actions > *,
  .top-actions > * {
    flex: 1 1 100%;
  }

  .customer-page {
    padding: 16px 14px 42px;
  }

  .customer-hero {
    padding: 18px;
  }

  .customer-hero h1 {
    font-size: 34px;
  }

  .customer-actions > * {
    flex: 1 1 100%;
  }

  .featured-menu-grid,
  .decision-path-grid,
  .customer-form {
    grid-template-columns: 1fr;
  }

  .package-choice-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 82%);
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .customer-package-teasers.two-up {
    grid-template-columns: 1fr;
  }

  .menu-choice-card {
    padding: 12px;
  }

  .menu-choice-card summary {
    min-height: 48px;
  }

  .menu-choice-card ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .menu-item-card {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 52px;
    padding: 6px;
  }

  .menu-item-card img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
  }

  .menu-item-name {
    font-size: 12.5px;
  }

  .package-decision-card,
  .decision-path-card,
  .venue-persuasion-card {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .admin-shell {
    padding: 8px;
  }

  .sidebar {
    padding: 14px;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .customer-page {
    padding: 10px 10px 32px;
  }

  .customer-header {
    padding: 10px;
  }

  .customer-section,
  .customer-form,
  .form-side-panel {
    padding: 14px;
  }

  .section-title-row {
    display: grid;
    align-items: start;
    gap: 5px;
  }

  .customer-page h1 {
    font-size: 24px;
  }

  .customer-tabs {
    grid-template-columns: 1fr;
  }

  .customer-hero h1 {
    font-size: 30px;
  }

  .customer-hero p {
    font-size: 15px;
  }

  .customer-hero-media img {
    min-height: 220px;
  }

  .customer-route-visual {
    min-height: 220px;
  }

  .featured-menu-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .featured-menu-card img {
    width: 112px;
    height: 112px;
    aspect-ratio: auto;
  }

  .featured-menu-card div {
    align-content: center;
  }

  .customer-brand {
    width: 132px;
  }

  .customer-page-context {
    max-width: 142px;
    text-align: right;
  }

  .customer-admin-link {
    margin-left: 0;
  }

  .customer-actions > * {
    width: 100%;
  }
}
