.theme-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text, #fff);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.theme-toggle.compact {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  justify-content: center;
}

.theme-toggle:hover {
  background: color-mix(in srgb, var(--red-bright) 12%, transparent);
  border-color: color-mix(in srgb, var(--red-bright) 35%, transparent);
}

html[data-theme='light'] .theme-toggle {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
}

html[data-theme='light'] .theme-toggle:hover {
  background: color-mix(in srgb, var(--red) 8%, transparent);
}
.ts-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0d1110;
}

.ts-ticker {
  margin: 0;
  padding: 0.4rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--red);
}

.ts-header-bar {
  background: #0d1110;
}

.ts-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  position: relative;
}

.ts-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.ts-brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.ts-brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.ts-brand small {
  display: block;
  color: #9aa79e;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ts-pills {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ts-pills a {
  color: #e8eee9;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.ts-pills a.active,
.ts-pills a:hover {
  background: var(--red);
  color: #fff;
}

.ts-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ts-header-actions .theme-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
}

html[data-theme='light'] .ts-header-actions .theme-toggle {
  color: #fff;
  background: transparent;
}

.ts-header-actions .header-login {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ts-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ts-bell span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--red-bright);
  color: #fff;
  font-size: 0.65rem;
  line-height: 1rem;
  text-align: center;
}

.ts-menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
}

.ts-mobile-account {
  display: none;
}

@media (max-width: 980px) {
  .ts-pills {
    display: none;
  }

  .ts-pills.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    inset: 108px 1rem auto;
    background: #121816;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ts-mobile-account {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.75rem;
    color: #d5ddd7;
  }

  .ts-menu {
    display: inline-flex;
  }
}

.account-menu {
  position: relative;
}

.account-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 999px;
  padding: 0.2rem 0.45rem 0.2rem 0.2rem;
  cursor: pointer;
  color: #fff;
}

.account-avatar {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  object-fit: cover;
}

.account-avatar.placeholder {
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--red-bright) 35%, #0d1110);
  font-size: 0.8rem;
  font-weight: 700;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 14rem;
  background: #fff;
  color: #122017;
  border: 1px solid rgba(18, 32, 23, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  padding: 0.4rem;
  z-index: 60;
}

.account-dropdown-head {
  padding: 0.65rem 0.75rem 0.75rem;
  border-bottom: 1px solid rgba(18, 32, 23, 0.08);
  margin-bottom: 0.35rem;
}

.account-dropdown-head strong,
.account-dropdown-head span {
  display: block;
}

.account-dropdown-head span {
  color: #5b675f;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: #122017;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: color-mix(in srgb, var(--red-bright) 10%, #fff);
}
.ts-footer {
  background: #0b0f0d;
  color: #d5ddd7;
  padding: 3.2rem 0 1.4rem;
  margin-top: auto;
}

.ts-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.ts-footer-logo {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 0.85rem;
}

.ts-footer h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.ts-footer a,
.ts-footer p {
  display: block;
  color: #c5cec8;
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
}

.ts-footer a:hover {
  color: #fff;
}

.ts-footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: #8b968e;
}

@media (max-width: 840px) {
  .ts-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ts-footer-grid,
  .ts-footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
.chatbot {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-fab {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.chat-fab--locked {
  opacity: 0.72;
}

.chat-fab-hint {
  position: absolute;
  right: calc(100% + 0.65rem);
  bottom: 0.85rem;
  white-space: nowrap;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.chat-fab-hint a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.chat-fab-hint a:hover {
  color: var(--red);
}

.chat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(10, 10, 14, 0.45);
}

.chat-panel {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  z-index: 80;
  position: fixed;
}

.chat-panel--docked {
  right: 1.25rem;
  bottom: calc(1.25rem + 56px + 0.75rem);
  width: min(360px, calc(100vw - 2rem));
  max-height: min(520px, calc(100vh - 6.5rem));
  transform-origin: bottom right;
}

.chat-panel--modal {
  /* Center without transform so framer-motion layout can morph cleanly */
  inset: 0;
  margin: auto;
  width: min(560px, calc(100vw - 2rem));
  height: min(640px, calc(100vh - 4rem));
  max-height: min(640px, calc(100vh - 4rem));
  border-radius: 14px;
  transform-origin: center center;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--red) 12%, transparent);
  color: var(--text);
  flex-shrink: 0;
}

.chat-head strong {
  color: var(--text);
}

.chat-head-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.chat-head button {
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.chat-head button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}

.chat-body {
  flex: 1;
  min-height: 220px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--bg-panel);
}

.chat-history-status {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.25rem 0;
}

.chat-load-older {
  align-self: center;
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.chat-load-older:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--red-bright) 45%, transparent);
}

.chat-panel--docked .chat-body {
  height: 280px;
  flex: none;
}

.bubble {
  max-width: 90%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.92rem;
  white-space: pre-wrap;
  line-height: 1.45;
}

.bubble.user {
  align-self: flex-end;
  background: var(--red);
  color: #ffffff;
}

.bubble.bot {
  align-self: flex-start;
  background: var(--input-bg);
  border: 1px solid var(--line);
  color: var(--text);
}

.chat-md {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.chat-md-p {
  margin: 0;
  color: inherit;
}

.chat-md-list {
  margin: 0;
  padding-left: 1.1rem;
}

.chat-md-list li {
  margin: 0.15rem 0;
}

.chat-md code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  padding: 0.05em 0.3em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.chat-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--bg-panel);
  flex-shrink: 0;
}

.chat-form input {
  flex: 1;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  outline: none;
}

.chat-form input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.chat-form input:focus {
  border-color: color-mix(in srgb, var(--red-bright) 70%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 15%, transparent);
}

.chat-form .btn {
  padding: 0.65rem 0.8rem;
}

.chat-limit-banner {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text);
  background: color-mix(in srgb, var(--red) 8%, transparent);
}

html[data-theme='light'] .chat-panel {
  background: #ffffff;
}

html[data-theme='light'] .chat-body {
  background: #ffffff;
}

html[data-theme='light'] .bubble.bot {
  background: #f3f2ef;
  color: #141418;
}

html[data-theme='light'] .chat-form input {
  background: #ffffff;
  color: #141418;
}

html[data-theme='light'] .chat-backdrop {
  background: rgba(20, 20, 24, 0.35);
}

html[data-theme='light'] .chat-head button:hover {
  background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
  .chat-fab-hint {
    display: none;
  }

  .chat-panel--modal {
    width: calc(100vw - 1.25rem);
    height: min(72vh, calc(100vh - 5rem));
    max-height: min(72vh, calc(100vh - 5rem));
  }
}
.ts-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg-page);
}

.ts-shell .site-main {
  flex: 1 0 auto;
  width: 100%;
  padding-bottom: 0;
}
.od-select {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.od-select-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.od-select-label.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.od-select-trigger {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  background: var(--input-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text, #fff);
  padding: 0.75rem 0.9rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.od-select.size-sm .od-select-trigger {
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
}

.od-select-trigger[data-hovered] {
  background: rgba(255, 255, 255, 0.07);
}

.od-select-trigger[data-focused],
.od-select-trigger[data-open] {
  border-color: color-mix(in srgb, var(--red-bright) 70%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 20%, transparent);
}

.od-select-trigger[data-disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.od-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text, #fff);
}

.od-select-value[data-placeholder] {
  color: var(--muted);
}

.od-select-chevron {
  flex-shrink: 0;
  color: var(--silver);
  transition: transform 0.2s ease;
}

.od-select-trigger[data-open] .od-select-chevron {
  transform: rotate(180deg);
  color: var(--text);
}

.od-select-popover {
  min-width: var(--trigger-width);
  width: max(var(--trigger-width), 12rem);
  max-width: min(24rem, 92vw);
  background: var(--bg-panel, #16161c);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  outline: none;
  overflow: hidden;
  z-index: 1200;
  animation: od-select-in 0.16s ease;
}

@keyframes od-select-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.od-select-list {
  max-height: min(18rem, 50vh);
  overflow: auto;
  padding: 0.35rem;
  outline: none;
  scrollbar-width: thin;
}

.od-select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  color: var(--text);
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

.od-select-item[data-focused],
.od-select-item[data-hovered] {
  background: color-mix(in srgb, var(--red-bright) 14%, transparent);
  color: var(--text);
}

.od-select-item[data-selected] {
  color: var(--text);
  font-weight: 600;
}

.od-select-item[data-selected]:not([data-focused]):not([data-hovered]) {
  background: color-mix(in srgb, var(--red-bright) 8%, transparent);
}

.od-select-item[data-disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.od-select-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.od-select-item-label {
  font-size: 0.92rem;
  line-height: 1.3;
  color: inherit;
}

.od-select-item-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.3;
}

.od-select-item[data-focused] .od-select-item-desc,
.od-select-item[data-hovered] .od-select-item-desc,
.od-select-item[data-selected] .od-select-item-desc {
  color: var(--silver);
}

.od-select-check {
  flex-shrink: 0;
  color: var(--red-bright);
}

html[data-theme='light'] .od-select-item[data-focused],
html[data-theme='light'] .od-select-item[data-hovered] {
  background: color-mix(in srgb, var(--red) 12%, transparent);
  color: #141418;
}

html[data-theme='light'] .od-select-item[data-selected] {
  color: #141418;
}

html[data-theme='light'] .od-select-item[data-selected]:not([data-focused]):not([data-hovered]) {
  background: color-mix(in srgb, var(--red) 8%, transparent);
}
.ts-booker {
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: none;
}

.ts-booker .bw-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.ts-booker .field label,
.ts-booker .od-select-label {
  color: #5b675f;
  font-size: 0.78rem;
  font-weight: 600;
}

.ts-booker .field input,
.ts-booker .od-select-trigger {
  background: #f4f7f5;
  color: #122017;
  border: 1px solid rgba(18, 32, 23, 0.12);
  border-radius: 12px;
  min-height: 48px;
}

.ts-booker .bw-submit {
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .ts-booker .bw-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ts-booker .bw-grid {
    grid-template-columns: 1fr;
  }
}
.booking-cal {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.booking-cal-toolbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
}

.booking-cal-toolbar h3 {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
}

.booking-cal-toolbar .btn {
  padding: 0.4rem 0.55rem;
}

.cal-today {
  margin-left: 0.25rem;
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.booking-cal-grid {
  display: grid;
}

.booking-cal-week {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.booking-cal-week:last-child {
  border-bottom: 0;
}

.booking-cal-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  height: 100%;
}

.booking-cal-day {
  min-height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.4rem;
}

.booking-cal-day:last-child {
  border-right: 0;
}

.booking-cal-day.outside .booking-cal-date {
  color: #3a3a44;
}

.booking-cal-day.today .booking-cal-date {
  background: #0d9488;
  color: white;
  border-radius: 999px;
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-cal-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
}

.booking-cal-events {
  position: absolute;
  left: 0;
  right: 0;
  height: calc(100% - 28px);
  pointer-events: none;
}

.booking-cal-bar {
  pointer-events: auto;
  position: absolute;
  height: 20px;
  border: 0;
  border-radius: 4px;
  padding: 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.booking-cal-bar.cont-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.booking-cal-bar.cont-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.booking-cal-bar.cal-custom {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.booking-cal-bar span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-c0 {
  background: #f9a8d4;
}
.cal-c1 {
  background: #5eead4;
}
.cal-c2 {
  background: #fdba74;
}
.cal-c3 {
  background: #93c5fd;
}
.cal-c4 {
  background: #fcd34d;
}
.cal-c5 {
  background: #86efac;
}
.cal-c6 {
  background: #fda4af;
}
.cal-c7 {
  background: #a5b4fc;
}

.booking-cal-empty {
  margin: 0;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .booking-cal-bar {
    font-size: 0.65rem;
    padding: 0 0.25rem;
  }

  .booking-cal-weekdays {
    font-size: 0.65rem;
  }
}
.ts-home .ts-hero {
  position: relative;
  min-height: min(86vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 0 0;
  overflow: hidden;
}

.ts-hero-media {
  position: absolute;
  inset: 0;
  background-color: #0b100d;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ts-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 11, 0.28) 0%,
    rgba(8, 14, 11, 0.42) 48%,
    rgba(8, 14, 11, 0.78) 100%
  );
}

.ts-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-bottom: 1.5rem;
}

.ts-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--red-bright) 88%, #0b100d);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ts-hero-copy h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.1rem);
  line-height: 1.05;
  margin: 0 0 0.7rem;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.ts-lede {
  max-width: 36rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #e7eee9;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.ts-hero-book {
  position: relative;
  z-index: 2;
  transform: translateY(42%);
  padding-bottom: 0;
}

.ts-home .trust-strip {
  padding: 4.8rem 0 1.4rem;
  border-block: 0;
  background: #fff;
}

html[data-theme='dark'] .ts-home .trust-strip {
  background: color-mix(in srgb, var(--bg-page) 92%, #fff);
}

.ts-home .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  color: var(--silver);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.ts-home .pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ts-home .pillar {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
  box-shadow: 0 10px 28px rgba(18, 32, 23, 0.05);
}

.ts-home .pillar h3 {
  font-size: 1.2rem;
  margin: 0.75rem 0 0.35rem;
}

.ts-home .fleet-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.ts-home .fleet-visual {
  min-height: 320px;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.ts-home .fleet-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--red) 38%, transparent), transparent 55%);
  pointer-events: none;
}

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

.ts-home .before-item {
  padding: 1.35rem 1.2rem;
  border-top: 0;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(18, 32, 23, 0.05);
}

.ts-home .before-item h3 {
  font-size: 1.35rem;
}

.ts-home .before-item:hover h3 {
  color: var(--red-bright);
}

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

.ts-home .review-card {
  margin: 0;
  padding: 1.2rem 1.15rem;
  border-top: 0;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.ts-home .review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.ts-home .review-card p {
  color: var(--silver);
  font-size: 1.02rem;
}

.ts-home .review-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
}

.ts-home .muted-copy {
  color: var(--muted);
}

.ts-home .muted-copy a {
  color: var(--red-bright);
  text-decoration: underline;
}

.ts-home .calendar-cta {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .ts-hero-book {
    transform: translateY(18%);
  }

  .ts-home .trust-strip {
    padding-top: 3.2rem;
  }

  .ts-home .pillar-grid,
  .ts-home .before-grid,
  .ts-home .fleet-teaser-inner,
  .ts-home .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 2rem;
}

.auth-card {
  width: min(440px, 100%);
}

.auth-logo {
  height: 56px;
  width: auto;
  background: white;
  border-radius: 4px;
  padding: 4px 8px;
  margin-bottom: 1rem;
}

.auth-card h1 {
  font-size: 2.4rem;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  color: var(--silver);
  font-size: 0.92rem;
}

.auth-links a:hover {
  color: var(--text);
}

.auth-card .alert {
  margin-bottom: 1rem;
}

.auth-card .form-grid {
  margin-top: 0.25rem;
}
:root,
html[data-theme='dark'] {
  --red: #c40000;
  --red-deep: #8b0000;
  --red-bright: #e10600;
  --ink: #0c0c0e;
  --ink-soft: #1a1a1f;
  --slate: #2c2c34;
  --muted: #6b6b76;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #f4f4f6;
  --white: #ffffff;
  --silver: #c8c8d0;
  --success: #1f7a4c;
  --warning: #b45309;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --text: #ffffff;
  --bg-page: #0c0c0e;
  --bg-panel: #12141a;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --input-bg: rgba(255, 255, 255, 0.05);
  --body-gradient:
    radial-gradient(1200px 600px at 80% -10%, color-mix(in srgb, var(--red) 22%, transparent), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(255, 255, 255, 0.04), transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #121218 40%, #0c0c0e 100%);
  color-scheme: dark;
}

html[data-theme='light'] {
  --ink: #f6f5f3;
  --ink-soft: #ffffff;
  --slate: #e8e6e1;
  --muted: #5c5c68;
  --line: rgba(20, 20, 24, 0.12);
  --paper: #ffffff;
  --white: #141418;
  --silver: #3f3f4a;
  --text: #141418;
  --bg-page: #f3f2ef;
  --bg-panel: #ffffff;
  --bg-surface: rgba(255, 255, 255, 0.92);
  --input-bg: rgba(20, 20, 24, 0.04);
  --shadow: 0 16px 40px rgba(20, 20, 24, 0.08);
  --body-gradient:
    radial-gradient(1000px 520px at 85% -10%, color-mix(in srgb, var(--red) 10%, transparent), transparent 55%),
    radial-gradient(800px 420px at -5% 30%, rgba(20, 20, 24, 0.04), transparent 50%),
    linear-gradient(180deg, #f7f6f3 0%, #efeee9 45%, #f3f2ef 100%);
  --alert-bg: rgba(20, 20, 24, 0.04);
  --alert-fg: #141418;
  --alert-error-border: #c40000;
  --alert-error-bg: #fce8e8;
  --alert-error-fg: #8b0000;
  --alert-success-border: #1f7a4c;
  --alert-success-bg: #e6f6ec;
  --alert-success-fg: #0f5132;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--body-gradient);
  -webkit-font-smoothing: antialiased;
}

#root {
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
  color: var(--silver);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: white;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--red) 35%, transparent);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a1a, var(--red));
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--red-bright) 45%, transparent);
  background: color-mix(in srgb, var(--red-bright) 8%, transparent);
}

.btn-light {
  background: white;
  color: var(--ink);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: color-mix(in srgb, var(--red-bright) 70%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 20%, transparent);
}

.field select option {
  color: black;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

@media (max-width: 720px) {
  .form-grid.two {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--alert-bg, rgba(255, 255, 255, 0.04));
  color: var(--alert-fg, var(--text));
  font-size: 0.95rem;
  font-weight: 500;
}

.alert.error {
  border-color: var(--alert-error-border, rgba(225, 6, 0, 0.45));
  background: var(--alert-error-bg, rgba(196, 0, 0, 0.12));
  color: var(--alert-error-fg, #ffb4b4);
}

.alert.success {
  border-color: var(--alert-success-border, rgba(31, 122, 76, 0.5));
  background: var(--alert-success-bg, rgba(31, 122, 76, 0.15));
  color: var(--alert-success-fg, #b7f0d0);
}

.alert.warning {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border-color: var(--alert-warning-border, rgba(180, 83, 9, 0.55));
  background: var(--alert-warning-bg, rgba(180, 83, 9, 0.14));
  color: var(--alert-warning-fg, #fbbf24);
}

.alert.warning svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert.warning a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

html[data-theme='light'] .alert.warning {
  border-color: rgba(180, 83, 9, 0.4);
  background: rgba(251, 191, 36, 0.18);
  color: #92400e;
}

.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.page-hero p {
  max-width: 36rem;
  font-size: 1.1rem;
}

.surface {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.status-pending {
  color: #fbbf24;
  background: rgba(180, 83, 9, 0.18);
  border-color: rgba(180, 83, 9, 0.4);
}

.status-confirmed {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.35);
}

.status-active {
  color: #86efac;
  background: rgba(31, 122, 76, 0.2);
  border-color: rgba(31, 122, 76, 0.45);
}

.status-completed {
  color: var(--silver);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.status-cancelled {
  color: #fda4a4;
  background: color-mix(in srgb, var(--red) 15%, transparent);
  border-color: color-mix(in srgb, var(--red) 35%, transparent);
}

html[data-theme='light'] .status-pending {
  color: #92400e;
  background: #fef3c7;
  border-color: #d97706;
}

html[data-theme='light'] .status-confirmed {
  color: #1e3a8a;
  background: #dbeafe;
  border-color: #2563eb;
}

html[data-theme='light'] .status-active {
  color: #14532d;
  background: #dcfce7;
  border-color: #16a34a;
}

html[data-theme='light'] .status-completed {
  color: #3f3f46;
  background: #f4f4f5;
  border-color: #a1a1aa;
}

html[data-theme='light'] .status-cancelled {
  color: #7f1d1d;
  background: #fee2e2;
  border-color: #dc2626;
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.empty-state strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.empty-state p {
  margin: 0 auto 1rem;
  max-width: 28rem;
}

.loading-block {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 0;
}

.skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

@keyframes shimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--silver);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: color-mix(in srgb, var(--red-bright) 50%, transparent);
  color: white;
  background: color-mix(in srgb, var(--red-bright) 12%, transparent);
}

.nav-badge {
  margin-left: auto;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 1.25rem;
}

.field-hint{display:block;margin-top:.35rem;font-size:.85rem;color:var(--muted)}
:root,
html[data-theme='dark'] {
  --red: #128a4a;
  --red-deep: #0b5f33;
  --red-bright: #1aa35a;
  --font-display: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --body-gradient:
    radial-gradient(1100px 560px at 80% -12%, rgba(18, 138, 74, 0.22), transparent 58%),
    radial-gradient(800px 420px at -8% 30%, rgba(255, 255, 255, 0.04), transparent 52%),
    linear-gradient(180deg, #0a0d0b 0%, #121614 42%, #0c0f0d 100%);
}

html[data-theme='light'] {
  --ink: #f4f7f5;
  --ink-soft: #ffffff;
  --paper: #ffffff;
  --white: #122017;
  --text: #122017;
  --silver: #3d4a41;
  --muted: #5b675f;
  --bg-page: #f3f6f4;
  --bg-panel: #ffffff;
  --line: rgba(18, 32, 23, 0.1);
  --body-gradient:
    radial-gradient(900px 480px at 88% -8%, rgba(18, 138, 74, 0.12), transparent 55%),
    linear-gradient(180deg, #f7faf8 0%, #eef3f0 48%, #f3f6f4 100%);
}

h1,
h2,
h3,
h4 {
  text-transform: none;
  letter-spacing: -0.02em;
}

.btn-primary {
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(18, 138, 74, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #22c55e, var(--red));
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--red-bright) 45%, transparent);
  background: color-mix(in srgb, var(--red-bright) 8%, transparent);
}

.admin-login {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(18, 138, 74, 0.22), transparent 60%),
    #0b100d;
}

.ts-shell {
  --nav-h: 108px;
  --radius: 16px;
}

.ts-shell .surface {
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(18, 32, 23, 0.06);
}

.ts-shell .car-item {
  border-radius: 20px;
  overflow: hidden;
}

html[data-theme='light'] .ts-shell .car-item {
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 32, 23, 0.07);
}

.ts-shell .cat-tabs button.active,
.ts-shell .cat-tabs button:hover {
  background: color-mix(in srgb, var(--red) 16%, transparent);
}

.ts-shell .auth-logo {
  border-radius: 12px;
}

.admin-login-card img {
  border-radius: 12px;
}
