:root {
  --bg: #edf2ef;
  --panel: #f8fbf9;
  --border: #c8d4ce;
  --text: #1d2c30;
  --muted: #5c7378;
  --accent: #148f77;
  --accent-strong: #0f7a65;
  --warn: #c25a2b;
}

* { box-sizing: border-box; }

@font-face {
  font-family: 'Prometo';
  src: local('Prometo');
  font-display: swap;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Prometo', 'Source Sans 3', sans-serif;
  color: var(--text);
  background: #f7f0e6;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    'topbar'
    'main';
  width: 100%;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}


.main {
  grid-area: main;
  padding: 18px 20px;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}

.embed-mode .main {
  padding: 0;
}

#outlet {
  height: 100%;
  min-height: calc(100vh - 88px);
}

.route-embed-shell {
  height: 100%;
  min-height: calc(100vh - 88px);
}

.route-embed-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
  min-height: calc(100vh - 88px);
}

.ticket-embed-frame {
  display: block;
  width: 100%;
  height: 820px;
  border: 0;
}

.hidden {
  display: none !important;
}
.ui-schedule-period h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
}

.ui-schedule-period h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
}

.ui-schedule-defaults {
  margin-top: 10px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: #f7fcf9;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
}

.ui-schedule-defaults strong {
  display: block;
  width: 100%;
  font-size: 13px;
  color: #2a4847;
  margin-bottom: 2px;
}

.ui-schedule-defaults label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.ui-schedule-defaults input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 14px;
  background: #fff;
}

.ui-cycle-week-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: #fbfefd;
}

@media (max-width: 920px) {
  .shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      'topbar'
      'nav'
      'main';
  }

  .nav {
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .nav-link {
    margin: 0;
    white-space: nowrap;
  }

}
