.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: end;
  color: #fff;
  background: var(--deep);
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0.8;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(14, 12, 10, 0.9) 0%,
      rgba(14, 12, 10, 0.43) 54%,
      rgba(14, 12, 10, 0.22)
    ),
    linear-gradient(0deg, rgba(14, 12, 10, 0.7), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 0 90px;
  max-width: 800px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero p {
  color: #e7dfd4;
  font-size: 1.22rem;
  max-width: 600px;
}
.hero-meta {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 62px;
  border-left: 1px solid var(--gold);
  padding: 8px 0 8px 22px;
  color: #e8e0d5;
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.occasion-grid {
  grid-template-columns: repeat(5, 1fr);
}
.occasion {
  border-top: 1px solid var(--line);
  padding: 26px 10px 20px 0;
  transition: 0.2s;
}
.occasion:hover {
  border-color: var(--gold);
  padding-left: 8px;
}
.occasion .num {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.5rem;
}
.occasion h3 {
  margin: 28px 0 8px;
}
.experience-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}
.experience-grid .image-card:first-child {
  grid-row: span 2;
  min-height: 700px;
}
.experience-grid .image-card:nth-child(n + 2) {
  min-height: 338px;
}
.branch-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}
.branch-card {
  background: var(--paper);
  border-bottom: 3px solid transparent;
  transition: 0.25s;
  cursor: pointer;
}
.branch-card:hover,
.branch-card.selected {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.branch-card img {
  height: 250px;
}
.branch-card-body {
  padding: 26px;
}
.branch-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
}
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}
.story-split img {
  height: 100%;
  min-height: 500px;
}
.story-copy {
  padding: 80px clamp(30px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-list {
  margin-top: 24px;
}
.price-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
}
.quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.closing-cta {
  padding: 72px 0;
}
.closing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing-cta h2 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin: 8px 0 0;
}
.page-mast {
  padding: 180px 0 80px;
  background: var(--charcoal);
  color: #fff;
}
.page-mast p {
  color: #cfc6ba;
}
.branches-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin: 40px 0;
}
.near-me-control {
  align-self: end;
  width: 202px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(175, 134, 81, 0.45);
  border-radius: var(--r-sm);
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(44, 35, 25, 0.06);
  text-align: left;
  transition: 0.2s var(--ease);
}
.near-me-control:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--paper);
}
.near-me-control[aria-pressed="true"] {
  color: var(--cream);
  border-color: var(--ink);
  background: var(--ink);
}
.near-me-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.near-me-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.near-me-icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 14px;
  top: 13px;
  border-radius: 50%;
  background: var(--ink);
}
.near-me-copy {
  display: grid;
  line-height: 1.15;
}
.near-me-copy strong {
  font-size: 0.88rem;
}
.near-me-copy small {
  color: var(--muted);
  font-size: 0.7rem;
}
.near-me-control[aria-pressed="true"] small {
  color: #d9c5a4;
}
.branch-grid {
  grid-template-columns: repeat(3, 1fr);
}
.branch-grid .branch-card {
  display: flex;
  flex-direction: column;
}
.branch-grid .branch-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.branch-grid .btn-row {
  margin-top: auto;
}
.branch-preview {
  position: fixed;
  z-index: 70;
  left: 32px;
  right: 32px;
  bottom: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-dark);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  transform: translateY(150%);
  transition: 0.35s var(--ease);
}
.branch-preview.open {
  transform: translateY(0);
}
.branch-preview p {
  margin: 5px 0 0;
}
.reserve-shell {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.reserve-aside {
  padding: 54px;
  background:
    linear-gradient(rgba(20, 18, 15, 0.62), rgba(20, 18, 15, 0.88)),
    url("../assets/img/celebration.jpg") center/cover;
  color: #fff;
}
.reserve-aside p {
  color: #ddd5c9;
}
.reserve-main {
  padding: 54px;
}
.wizard-view {
  display: none;
}
.wizard-view.active {
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.choice {
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
}
.choice.active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.date-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.date-tile,
.slot {
  border: 1px solid var(--line);
  padding: 14px 8px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
}
.date-tile strong {
  display: block;
  font-size: 1.2rem;
}
.date-tile.active,
.slot.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.slot small {
  display: block;
  color: var(--warning);
}
.slot[disabled] {
  background: #eee9e1;
  text-decoration: line-through;
  color: #9e968a;
  cursor: not-allowed;
}
.wizard-actions {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
}
.menu-mast {
  padding: 160px 0 0;
  background: var(--deep);
  color: #fff;
}
.menu-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 44px;
}
.menu-title h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 14px;
}
.ambience-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 240px;
}
.ambience-strip img {
  height: 100%;
}
.menu-toolbar {
  position: sticky;
  z-index: 20;
  top: 88px;
  background: rgba(247, 243, 236, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 4px;
  background: var(--paper);
}
.segmented button {
  border: 0;
  background: transparent;
  padding: 9px 14px;
  cursor: pointer;
}
.segmented button.active {
  background: var(--ink);
  color: #fff;
}
.menu-search {
  margin-left: auto;
  max-width: 280px;
}
.menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 54px;
}
.category-nav {
  position: sticky;
  top: 170px;
  align-self: start;
  display: grid;
  padding: 14px 0;
  background: rgba(252, 250, 246, 0.98);
  border: 1px solid rgba(43, 39, 35, 0.12);
  box-shadow: 0 14px 36px rgba(25, 20, 14, 0.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.category-nav button {
  border: 0;
  border-left: 2px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  text-align: left;
  padding: 12px 18px;
  cursor: pointer;
}
.category-nav button.active {
  border-color: var(--gold);
  color: var(--bronze);
  font-weight: 700;
}
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.menu-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: var(--paper);
  min-height: 180px;
}
.menu-item.unavailable {
  opacity: 0.55;
}
.menu-item img {
  height: 100%;
}
.menu-item-body {
  padding: 21px;
  display: flex;
  flex-direction: column;
}
.menu-item-body p {
  font-size: 0.92rem;
  line-height: 1.4;
}
.menu-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.food-mark {
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  display: inline-grid;
  place-items: center;
  color: #9b473a;
}
.food-mark.veg {
  color: #4c7956;
}
.food-mark::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.cart-fab {
  position: fixed;
  z-index: 45;
  right: 28px;
  bottom: 28px;
  border: 0;
  background: var(--gold);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  font-weight: 700;
  cursor: pointer;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.qty button {
  border: 0;
  background: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.qty span {
  width: 30px;
  text-align: center;
}
.item-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.item-modal-grid img {
  height: 100%;
  min-height: 540px;
}
.item-detail {
  padding: 42px;
}
.checkout-stage {
  display: none;
}
.checkout-stage.active {
  display: block;
}
.payment-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.payment-choice .choice {
  min-height: 100px;
}
.room-hero {
  padding: 160px 0 80px;
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.95), rgba(20, 18, 15, 0.45)),
    url("../assets/img/interior.jpg") center/cover;
  color: #fff;
}
.room-hero p {
  color: #d8d0c4;
}
.verify-card {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  max-width: 640px;
  margin-top: 36px;
}
.verify-card .form-grid {
  grid-template-columns: 1fr 1fr;
}
.verified {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #e5eee6;
  padding: 18px;
  margin-bottom: 24px;
}
.room-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}
.room-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.room-item {
  background: var(--paper);
  display: grid;
  grid-template-columns: 110px 1fr;
}
.room-item img {
  height: 100%;
}
.room-item > div {
  padding: 15px;
}
.room-cart {
  position: sticky;
  top: 120px;
  align-self: start;
  background: var(--charcoal);
  color: #fff;
  padding: 30px;
}
.room-cart p {
  color: #c8c0b5;
}
.sync-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 45px;
}
.sync-step {
  text-align: center;
  position: relative;
}
.sync-step::before {
  content: attr(data-step);
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #574f46;
  color: #fff;
  display: grid;
  place-items: center;
}
.sync-step::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #655d54;
}
.sync-step:last-child::after {
  display: none;
}
.sync-step.active::before,
.sync-step.done::before {
  background: var(--gold);
  color: var(--ink);
}
.sync-step.done::before {
  content: "✓";
}
.sync-step h3 {
  font-size: 0.9rem;
}
.admin-body {
  background: #161411;
  color: #eee9e1;
}
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-side {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 32px 24px;
  background: #211e1a;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  margin-bottom: 50px;
}
.admin-brand img {
  width: 42px;
  height: 50px;
  object-fit: contain;
}
.admin-nav {
  display: grid;
  gap: 7px;
}
.admin-nav button {
  border: 0;
  background: transparent;
  color: #bcb3a8;
  text-align: left;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
}
.admin-nav a {
  color: #bcb3a8;
  text-align: left;
  padding: 12px;
  border-radius: 4px;
}
.admin-nav button.active,
.admin-nav a.active,
.admin-nav a[aria-current="page"],
.admin-nav a:hover,
.admin-nav button:hover {
  background: #332e28;
  color: #fff;
}
.admin-view-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, auto));
  gap: 10px;
  margin: 20px 0;
  padding: 18px;
  background: #211e1a;
}
.admin-view-tools input,
.admin-view-tools select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: #fff;
  background: #28241f;
  border: 1px solid #494239;
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 20px;
  margin-top: 20px;
}
.service-visual {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 210px;
  padding: 22px 10px 30px;
  border-bottom: 1px solid #494138;
}
.service-column {
  flex: 1;
  position: relative;
  min-width: 26px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(var(--gold), #594733);
}
.service-column span {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  color: #a9a095;
  font-size: 0.7rem;
  white-space: nowrap;
}
.service-key {
  display: grid;
  gap: 12px;
}
.service-key div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #37322c;
}
.admin-row-button {
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.progress-track {
  display: grid;
  gap: 0;
  margin: 24px 0;
}
.progress-step {
  position: relative;
  padding: 0 0 24px 28px;
  color: #9f968b;
}
.progress-step::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid #756b60;
  border-radius: 50%;
  background: #29251f;
}
.progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  bottom: 2px;
  width: 1px;
  background: #554d44;
}
.progress-step.done,
.progress-step.current {
  color: #fff;
}
.progress-step.done::before,
.progress-step.current::before {
  border-color: var(--gold);
  background: var(--gold);
}
.admin-main {
  padding: 32px 40px 60px;
  min-width: 0;
}
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 42px;
}
.admin-top h1 {
  font-size: 2.7rem;
  margin-bottom: 5px;
}
.admin-filters {
  display: flex;
  gap: 10px;
}
.admin-filters select {
  background: #28241f;
  color: #fff;
  border: 1px solid #494239;
  padding: 11px;
}
.kpi-grid {
  grid-template-columns: repeat(5, 1fr);
}
.kpi {
  background: #211e1a;
  border-top: 1px solid #4d453b;
  padding: 22px;
}
.kpi strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  margin: 10px 0;
}
.trend {
  color: #91aa94;
  font-size: 0.82rem;
}
.admin-panels {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr;
  gap: 20px;
  margin-top: 20px;
}
.admin-panel {
  background: #211e1a;
  padding: 26px;
  min-width: 0;
}
.admin-panel h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
}
.chart {
  height: 260px;
  display: flex;
  align-items: end;
  gap: 3%;
  padding-top: 35px;
  border-bottom: 1px solid #494138;
}
.bar {
  flex: 1;
  background: linear-gradient(var(--gold), #67523a);
  position: relative;
  min-height: 10px;
  transition: 0.3s;
}
.bar span {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: #938a7f;
}
.chart-legend {
  display: flex;
  gap: 12px;
}
.chart-legend button {
  border: 1px solid #5d554c;
  color: #ddd5ca;
  background: transparent;
  padding: 7px 10px;
  cursor: pointer;
}
.chart-legend button.active {
  border-color: var(--gold);
  color: var(--gold);
}
.action-list {
  display: grid;
  gap: 10px;
}
.action {
  border: 1px solid #3c3730;
  padding: 15px;
  cursor: pointer;
  background: transparent;
  color: #fff;
  text-align: left;
}
.action:hover {
  border-color: var(--gold);
}
.action.resolved {
  opacity: 0.4;
  text-decoration: line-through;
}
.admin-table-wrap {
  overflow: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #37322c;
  white-space: nowrap;
}
.admin-table th {
  color: #9f968b;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.admin-table tbody tr {
  cursor: pointer;
}
.admin-table tbody tr:hover {
  background: #2a2621;
}
.admin-body .drawer-panel {
  background: #29251f;
  color: #fff;
}
.admin-body .drawer-panel p {
  color: #bbb2a7;
}
.sparkline {
  height: 24px;
  width: 90px;
}
.sparkline polyline {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}
.presentation-note {
  position: fixed;
  left: 12px;
  bottom: 12px;
  background: rgba(20, 18, 15, 0.8);
  color: #cfc7bc;
  padding: 6px 10px;
  font-size: 0.7rem;
  z-index: 30;
}
@media (max-width: 1100px) {
  .occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .branch-feature-grid,
  .branch-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-list {
    grid-template-columns: 1fr;
  }
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .admin-panels {
    grid-template-columns: 1fr;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .room-layout {
    grid-template-columns: 1fr;
  }
  .room-cart {
    position: relative;
    top: auto;
  }
  .sync-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .sync-step::after {
    display: none;
  }
}
@media (max-width: 850px) {
  .hero-meta {
    display: none;
  }
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .experience-grid .image-card:first-child {
    grid-row: auto;
    grid-column: span 2;
    min-height: 500px;
  }
  .story-split,
  .reserve-shell {
    grid-template-columns: 1fr;
  }
  .reserve-aside {
    min-height: 360px;
  }
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .category-nav {
    position: relative;
    top: auto;
    display: flex;
    overflow: auto;
    padding: 0;
  }
  .category-nav button {
    white-space: nowrap;
    border-left: 0;
    border-bottom: 2px solid var(--line);
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-side {
    position: relative;
    height: auto;
  }
  .admin-nav {
    grid-template-columns: repeat(4, 1fr);
  }
  .admin-main {
    padding: 25px 18px;
  }
  .admin-top {
    display: block;
  }
  .admin-filters {
    margin-top: 20px;
    overflow: auto;
  }
  .admin-view-tools {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .item-modal-grid {
    grid-template-columns: 1fr;
  }
  .item-modal-grid img {
    min-height: 280px;
    height: 280px;
  }
  .menu-toolbar {
    top: 80px;
  }
  .toolbar-inner {
    flex-wrap: wrap;
  }
  .menu-search {
    order: 3;
    max-width: none;
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .occasion-grid,
  .branch-feature-grid,
  .branch-grid,
  .experience-grid,
  .form-grid,
  .choice-grid,
  .menu-list,
  .room-menu,
  .payment-choice {
    grid-template-columns: 1fr;
  }
  .experience-grid .image-card:first-child {
    grid-column: auto;
  }
  .branch-preview {
    left: 10px;
    right: 10px;
    display: block;
  }
  .branch-preview .btn-row {
    margin-top: 15px;
  }
  .reserve-main,
  .reserve-aside {
    padding: 30px 20px;
  }
  .slot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .date-strip {
    overflow: auto;
    grid-template-columns: repeat(5, 82px);
  }
  .menu-title {
    display: block;
  }
  .segmented {
    width: 100%;
    justify-content: space-between;
  }
  .menu-item {
    grid-template-columns: 110px 1fr;
  }
  .room-item {
    grid-template-columns: 90px 1fr;
  }
  .sync-track {
    grid-template-columns: 1fr 1fr;
  }
  .admin-nav {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .admin-filters {
    display: grid;
  }
  .admin-panel .panel-head,
  .chart-legend {
    flex-wrap: wrap;
  }
  .branches-tools,
  .admin-view-tools {
    grid-template-columns: 1fr;
  }
  .near-me-control {
    width: min(202px, 100%);
  }
  .closing-cta-inner {
    display: block;
  }
  .closing-cta .btn-row {
    margin-top: 28px;
  }
  .ambience-strip {
    height: 160px;
  }
  .page-mast {
    padding-top: 150px;
  }
  .confirmation h2 {
    font-size: 2.3rem;
  }
}
