body {
  font-family: "Noto Sans", sans-serif;
}

/* User menu (Fossatech glass dropdown) */
.auth-lang-toggle {
  background: rgba(36, 36, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e5e5;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-lang-toggle:hover,
.auth-lang-toggle:focus,
.auth-lang-toggle.show {
  background: rgba(48, 48, 48, 0.82);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.auth-lang-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.08);
}

.auth-lang-menu {
  min-width: 10rem;
  margin-top: 0.35rem !important;
  padding: 0.35rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.45);
}

.auth-lang-menu .dropdown-header {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: normal;
  padding: 0.25rem 0.5rem;
}

.auth-lang-menu .auth-lang-item {
  color: #e5e5e5;
  border-radius: 0.35rem;
  font-size: 0.875rem;
}

.auth-lang-menu .auth-lang-item:hover,
.auth-lang-menu .auth-lang-item:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.auth-lang-menu .auth-lang-divider {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.auth-lang-menu .auth-lang-item.text-danger {
  color: #fca5a5 !important;
}

/* Admin sign-in / sign-up */
.auth-page {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(165deg, #1e2128 0%, #171a21 45%, #12151a 100%);
  color: #f8f9fa;
}

.auth-page__viewport {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.35rem);
}

.auth-page__header {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
}

.auth-page__brand {
  color: #f8f9fa;
}

.auth-page__brand:hover {
  color: #fff;
}

.auth-page__brand .app-brand-lockup-text {
  min-width: 10.5rem;
}

.auth-page__brand .app-brand-line--top {
  font-size: 0.875rem;
}

.auth-page__brand .app-brand-line--bottom {
  font-size: 1.5rem;
}

.auth-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.25rem 0;
}

.auth-page__card-wrap {
  width: 100%;
  max-width: 26rem;
}

.auth-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.12);
  color: #212529;
}

.auth-card__body {
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.5rem);
}

.auth-card__title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  letter-spacing: -0.02em;
}

.auth-card__form .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.auth-card__form .form-control {
  border-color: #cbd5e1;
  border-radius: 0.4rem;
}

.auth-card__form .form-control:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.15);
}

.auth-card__submit {
  margin-top: 0.25rem;
  padding: 0.7rem 1rem;
  font-weight: 600;
  border-radius: 0.4rem;
}

.auth-card__footer-link {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e8ecf1;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

.auth-card__footer-link a {
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
}

.auth-card__footer-link a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.auth-page__footer {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
}

.auth-page__fossa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.15s ease;
}

.auth-page__fossa:hover {
  opacity: 0.88;
  color: #fff;
}

.auth-page__fossa-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.auth-page__fossa-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  line-height: 1.2;
  font-size: 0.8125rem;
}

.auth-page__fossa-by {
  font-weight: 500;
  opacity: 0.88;
}

.auth-page__fossa-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.auth-turnstile-wrap {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.auth-lang-menu .auth-lang-item.text-danger:hover,
.auth-lang-menu .auth-lang-item.text-danger:focus {
  color: #fecaca !important;
  background: rgba(248, 113, 113, 0.22) !important;
}

/* App shell (Fossatech CRM layout) */
.app-body-root {
  margin: 0;
  min-height: 100vh;
  background: #e9ecef;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-topbar {
  flex-shrink: 0;
  height: 3.75rem;
  padding: 0 0.75rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e2128;
  color: #f8f9fa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.app-topbar-start {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
}

.app-topbar-menu-btn {
  color: #e9ecef;
  padding: 0.35rem 0.5rem;
  border: none;
  background: transparent;
  border-radius: 0.35rem;
}

.app-topbar-menu-btn:hover,
.app-topbar-menu-btn:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.app-icon-menu {
  display: block;
  width: 1.25rem;
  height: 1rem;
  background: linear-gradient(#e9ecef, #e9ecef) 0 0 / 100% 2px no-repeat,
    linear-gradient(#e9ecef, #e9ecef) 0 50% / 100% 2px no-repeat,
    linear-gradient(#e9ecef, #e9ecef) 0 100% / 100% 2px no-repeat;
}

.app-brand {
  color: #f8f9fa;
  text-decoration: none;
}

.app-brand:hover {
  color: #fff;
}

.app-brand-lockup {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.app-brand-lockup-text {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 9.5rem;
  font-family: "Google Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.05;
  gap: 0.28rem;
}

.app-brand-line {
  text-transform: uppercase;
  white-space: nowrap;
}

.app-brand-line--top {
  align-self: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-right: -0.14em;
  opacity: 0.92;
}

.app-brand-line--bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.34em;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-topbar-end {
  flex-shrink: 0;
}

.app-user-dropdown .auth-lang-toggle {
  max-width: 14rem;
  letter-spacing: normal;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-user-dropdown .auth-lang-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.15em;
}

.app-frame {
  flex: 1;
  display: flex;
  min-height: 0;
}

.app-sidebar {
  width: 15rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  background: #252830;
  color: #ced4da;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.app-sidebar-nav {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.75rem 0;
  gap: 0.125rem;
}

.app-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1rem;
  margin: 0 0.5rem;
  min-height: 2.75rem;
  box-sizing: border-box;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #adb5bd;
  text-decoration: none;
  border: none;
  background: transparent;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.app-nav-label {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

.app-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f8f9fa;
}

.app-nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 500;
}

.app-nav-icon-bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.app-nav-icon-bi .bi {
  font-size: 1.125rem;
  line-height: 1;
  color: currentColor;
  opacity: 0.88;
}

.app-nav-link:hover .app-nav-icon-bi .bi,
.app-nav-link.active .app-nav-icon-bi .bi {
  opacity: 1;
}

/* SEO status counts (sidebar text + dashboard cards) */
.admin-seo-stats-text {
  font-size: inherit;
  font-weight: inherit;
  font-variant-numeric: tabular-nums;
  color: #9ca3af;
  opacity: 0.85;
}

.app-nav-link.active .admin-seo-stats-text {
  color: #ced4da;
  opacity: 0.9;
}

.admin-seo-stat-card__value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.admin-seo-stat-card__label {
  font-size: 0.8125rem;
  color: #6c757d;
  margin-top: 0.35rem;
}

.admin-seo-stat-card--complete .admin-seo-stat-card__value {
  color: #198754;
}

.admin-seo-stat-card--partial .admin-seo-stat-card__value {
  color: #fd7e14;
}

.admin-seo-stat-card--incomplete .admin-seo-stat-card__value {
  color: #dc3545;
}

.admin-seo-stat-card--empty .admin-seo-stat-card__value {
  color: #6c757d;
}

.admin-seo-stat-card:hover {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08) !important;
}

.seo-og-preview {
  max-width: 14rem;
}

.app-main {
  flex: 1;
  min-width: 0;
  padding: 1.25rem;
  overflow-x: auto;
  color: #000;
}

@media (min-width: 768px) {
  .app-main {
    padding: 1.5rem 1.75rem;
  }
}

.app-main-inner {
  width: 100%;
  max-width: none;
}

.app-breadcrumb-shell {
  display: inline-block;
  max-width: 100%;
  background: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.22rem 0.7rem;
  box-shadow: none;
}

.app-breadcrumb-inline {
  --bs-breadcrumb-margin-bottom: 0;
  --bs-breadcrumb-divider: "";
  font-size: 0.75rem;
  line-height: 1.35;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
}

.app-breadcrumb-inline .breadcrumb-item {
  display: flex;
  align-items: center;
  padding: 0;
}

.app-breadcrumb-inline .breadcrumb-item::before {
  display: none !important;
  content: none !important;
}

.app-breadcrumb-inline .app-breadcrumb-sep {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  margin: 0;
  user-select: none;
}

.app-breadcrumb-inline .app-breadcrumb-sep .bi {
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.4;
  color: #000;
}

.app-main .app-breadcrumb a {
  color: #3459e6;
  text-decoration: none;
}

.app-main .app-breadcrumb a:hover {
  text-decoration: underline;
}

.app-main .app-breadcrumb .active {
  color: #000;
}

.app-main .card {
  color: #000;
  --bs-card-color: #000;
  background-color: #fff;
}

.app-offcanvas.offcanvas {
  --bs-offcanvas-width: min(15rem, 92vw);
  --bs-offcanvas-bg: #252830;
  --bs-offcanvas-color: #ced4da;
  background-color: #252830 !important;
  color: #ced4da;
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
}

.app-offcanvas-header {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  background: #252830;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-offcanvas-title {
  color: #adb5bd;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-offcanvas-close {
  opacity: 0.85;
}

.app-offcanvas-close:hover,
.app-offcanvas-close:focus {
  opacity: 1;
}

.app-offcanvas-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  background: #252830;
}

.app-offcanvas .app-sidebar-nav {
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.app-offcanvas .app-nav-link {
  color: #adb5bd;
}

.app-offcanvas .app-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f8f9fa;
}

.app-offcanvas .app-nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.offcanvas-backdrop {
  --bs-backdrop-opacity: 0.45;
}

/* File manager */
.fm-card {
  overflow: hidden;
}

.fm-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #fafbfc;
}

.fm-path-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fm-path-sep {
  display: flex;
  align-items: center;
  color: #94a3b8;
}

.fm-path-sep .bi {
  font-size: 0.65rem;
}

.fm-path-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3459e6;
  text-decoration: none;
}

.fm-path-link:hover {
  text-decoration: underline;
}

.fm-path-current {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

.fm-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.fm-refresh-spin .bi {
  animation: fm-upload-spin 0.85s linear infinite;
}

.fm-table thead th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  border-bottom-width: 1px;
  background: #fff;
}

.fm-table tbody td {
  font-size: 0.875rem;
  border-color: rgba(15, 23, 42, 0.06);
}

.fm-col-check {
  width: 2.5rem;
  padding-left: 1rem !important;
}

.fm-col-size {
  width: 6rem;
}

.fm-col-date {
  width: 11rem;
}

.fm-col-actions {
  width: 8.5rem;
  padding-right: 1rem !important;
}

/* Image editor modal */
.fm-editor-modal .modal-body {
  background: #f1f5f9;
}

.fm-editor-canvas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fm-crop-wrap {
  position: relative;
  width: 100%;
  height: min(58vh, 480px);
  min-height: 320px;
  background: #0f172a;
  border-radius: 0.5rem;
  overflow: hidden;
}

.fm-crop-wrap .fm-crop-img {
  display: block;
  max-width: none;
  max-height: none;
}

.fm-crop-wrap .cropper-container {
  width: 100% !important;
  height: 100% !important;
}

.fm-crop-wrap .cropper-view-box {
  outline: 2px solid #3459e6;
  outline-offset: -1px;
}

.fm-crop-wrap .cropper-face {
  background: transparent;
}

.fm-crop-wrap.fm-crop-mode-move .cropper-face,
.fm-crop-wrap .cropper-move .cropper-face {
  cursor: grab;
}

.fm-crop-wrap.fm-crop-mode-move .cropper-drag-box,
.fm-crop-wrap .cropper-move .cropper-drag-box {
  cursor: grab;
}

.fm-crop-wrap.fm-crop-mode-scale .cropper-face,
.fm-crop-wrap.fm-crop-mode-scale .cropper-drag-box {
  cursor: grab;
}

.fm-crop-wrap.fm-crop-mode-scale .cropper-face:active,
.fm-crop-wrap.fm-crop-mode-scale .cropper-drag-box:active {
  cursor: grabbing;
}

.fm-crop-wrap.fm-crop-mode-crop .cropper-face,
.fm-crop-wrap .cropper-crop .cropper-face {
  cursor: crosshair;
}

[data-fm-drag-mode-group] .btn.active {
  background-color: #3459e6;
  border-color: #3459e6;
  color: #fff;
}

.fm-crop-wrap .cropper-line {
  background-color: rgba(52, 89, 230, 0.55);
}

.fm-crop-wrap .cropper-point {
  width: 10px;
  height: 10px;
  background: #3459e6;
  opacity: 1;
}

.fm-crop-wrap .cropper-dashed {
  border-color: rgba(255, 255, 255, 0.45);
}

.fm-crop-wrap .cropper-modal {
  background: rgba(15, 23, 42, 0.55);
}

.fm-crop-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.875rem;
}

.fm-crop-loading.is-hidden {
  display: none;
}

.fm-crop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.5rem;
}

.fm-crop-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.fm-crop-hint {
  flex: 1 1 12rem;
  min-width: 0;
}

.fm-crop-zoom-row {
  align-items: center;
}

.fm-crop-zoom-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 10rem;
  min-width: 0;
  max-width: 18rem;
}

.fm-image-transform-layer {
  position: absolute;
  inset: 0;
  z-index: 11;
  pointer-events: none;
  overflow: hidden;
}

.fm-image-transform-layer.is-active {
  pointer-events: none;
}

.fm-image-transform-layer.is-active .fm-image-transform-box {
  pointer-events: auto;
}

.fm-image-transform-box {
  position: absolute;
  box-sizing: border-box;
  border: 2px solid rgba(52, 89, 230, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65);
  cursor: grab;
  touch-action: none;
  min-width: 32px;
  min-height: 32px;
}

.fm-image-transform-box.is-dragging {
  cursor: grabbing;
}

.fm-image-transform-label {
  position: absolute;
  left: 0;
  top: 0;
  max-width: calc(100% - 0.5rem);
  padding: 0.2rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: rgba(52, 89, 230, 0.92);
  border-radius: 0 0 0.25rem 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fm-image-transform-resize {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 16px;
  height: 16px;
  background: #3459e6;
  border: 2px solid #fff;
  border-radius: 2px;
  cursor: nwse-resize;
  touch-action: none;
  z-index: 1;
}

.fm-overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  overflow: hidden;
}

.fm-overlay-box {
  position: absolute;
  box-sizing: border-box;
  border: 2px dashed rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.45);
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  min-width: 24px;
  min-height: 24px;
}

.fm-overlay-box.is-dragging {
  cursor: grabbing;
}

.fm-overlay-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.fm-overlay-resize {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 14px;
  height: 14px;
  background: #3459e6;
  border: 2px solid #fff;
  border-radius: 2px;
  cursor: nwse-resize;
  touch-action: none;
}

.fm-overlay-pos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  max-width: 9.5rem;
}

.fm-overlay-pos-grid .btn {
  padding: 0.2rem 0.35rem;
  line-height: 1;
}

.fm-brightness-slider {
    width: 100%;
}

.fm-editor-panel .fm-brightness-slider::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        #495057 0%,
        #dee2e6 50%,
        #f8f9fa 100%
    );
}

.fm-crop-zoom-slider {
  flex: 1 1 auto;
  min-width: 4.5rem;
  margin: 0;
}

.fm-editor-panel {
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.fm-editor-section-title {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.fm-editor-panel .form-range::-webkit-slider-thumb {
  background: #3459e6;
}

.seo-table td {
  vertical-align: middle;
}

.seo-table .text-break {
  word-break: break-all;
}

#seo-manager .tx-slug-status.is-ok {
  color: #198754;
}

#seo-manager .tx-slug-status.is-taken,
#seo-manager .tx-slug-status.is-invalid {
  color: #dc3545;
}

.fm-editor-panel .form-range::-moz-range-thumb {
  background: #3459e6;
}

.fm-thumb-btn {
  flex-shrink: 0;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0.35rem;
  cursor: zoom-in;
  line-height: 0;
}

.fm-thumb-btn:hover {
  opacity: 0.9;
}

.fm-list-thumb {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 0.35rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: block;
}

.fm-preview-modal .modal-body.fm-preview-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  background: #0f172a;
  padding: 1rem;
}

.fm-preview-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: #e2e8f0;
}

.fm-preview-loading.is-hidden {
  display: none;
}

.fm-preview-img {
  max-width: 100%;
  max-height: min(72vh, 640px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.fm-name-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

/* Colored file / folder badges (visible on white table rows) */
.fm-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.fm-icon-badge .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.fm-icon-badge--folder {
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
}

.fm-icon-badge--file {
  background: linear-gradient(145deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #4338ca;
}

.fm-icon-badge--image {
  background: linear-gradient(145deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
}

.fm-icon-badge--pdf {
  background: linear-gradient(145deg, #fee2e2 0%, #fecaca 100%);
  color: #b91c1c;
}

.fm-icon-badge--doc {
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
}

.fm-icon-badge--sheet {
  background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
}

.fm-icon-badge--archive {
  background: linear-gradient(145deg, #ffedd5 0%, #fed7aa 100%);
  color: #c2410c;
}

.fm-icon-badge--video {
  background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
}

.fm-icon-badge--audio {
  background: linear-gradient(145deg, #fce7f3 0%, #fbcfe8 100%);
  color: #be185d;
}

.fm-icon-badge--code {
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #334155;
}

.fm-icon-badge--text {
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
}

/* Drag & drop upload zone */
.fm-dropzone {
  position: relative;
  margin: 1rem 1rem 0.75rem;
  border-radius: 0.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fm-dropzone-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.fm-dropzone-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  padding: 1rem 1.25rem;
  text-align: center;
  border: 2px dashed rgba(52, 89, 230, 0.28);
  border-radius: 0.75rem;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(52, 89, 230, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #f8faff 0%, #f1f5f9 100%);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.fm-dropzone:hover .fm-dropzone-panel,
.fm-dropzone:focus-within .fm-dropzone-panel {
  border-color: rgba(52, 89, 230, 0.45);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(52, 89, 230, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #f5f8ff 0%, #eef2ff 100%);
}

.fm-dropzone.is-dragover .fm-dropzone-panel {
  border-color: #3459e6;
  border-style: solid;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(52, 89, 230, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
  transform: scale(1.01);
  box-shadow: 0 8px 28px -12px rgba(52, 89, 230, 0.45);
}

.fm-dropzone.is-uploading .fm-dropzone-panel {
  opacity: 0.45;
  pointer-events: none;
}

.fm-dropzone-visual {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
}

.fm-dropzone-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(52, 89, 230, 0.15), rgba(99, 102, 241, 0.35), rgba(52, 89, 230, 0.1));
  animation: fm-orbit-spin 8s linear infinite;
}

.fm-dropzone-icon-wrap {
  position: absolute;
  inset: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #3459e6 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(52, 89, 230, 0.35);
}

.fm-dropzone-icon-wrap .bi {
  font-size: 1.35rem;
}

.fm-dropzone-copy {
  flex: 1 1 12rem;
  min-width: 0;
}

.fm-dropzone-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.fm-dropzone-hint {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.fm-dropzone-btn {
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(52, 89, 230, 0.25);
}

.fm-upload-bar {
  margin-top: 0.5rem;
  padding: 0.5rem 0.65rem 0.55rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid rgba(52, 89, 230, 0.12);
}

.fm-upload-bar-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3459e6;
}

.fm-upload-progress {
  background: #e2e8f0;
}

.fm-upload-progress .progress-bar {
  background: linear-gradient(90deg, #3459e6, #6366f1);
}

.fm-upload-spin {
  animation: fm-upload-spin 0.9s linear infinite;
}

@keyframes fm-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fm-upload-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .fm-dropzone-panel {
    flex-wrap: nowrap;
    text-align: left;
    justify-content: flex-start;
    padding: 0.85rem 1.15rem;
  }

  .fm-dropzone-copy {
    flex: 1;
  }
}

.fm-open {
  color: #0f172a;
  font-weight: 500;
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-open:hover {
  color: #3459e6;
}

.fm-row-up {
  background: rgba(248, 250, 252, 0.9);
}

.fm-row-up .fm-up-btn {
  color: #475569;
  font-weight: 500;
}

.fm-table tr[data-fm-row]:hover {
  background: rgba(52, 89, 230, 0.04);
}

.fm-empty-cell {
  padding: 2.5rem 1rem !important;
  text-align: center;
}

.fm-empty-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.65rem;
}

.fm-empty-icon .bi {
  font-size: 1.25rem;
}

.fm-empty-text {
  font-size: 0.875rem;
  color: #64748b;
}

/* Categories & filters (taxonomy) */
.tx-root {
  max-width: 960px;
}

.tx-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tx-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tx-refresh-spin .bi {
  animation: fm-upload-spin 0.8s linear infinite;
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tx-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.tx-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.tx-drag-wrap {
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.tx-drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border-radius: 0.4rem;
  background: transparent;
  color: #94a3b8;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.tx-drag-handle:hover {
  background: #f1f5f9;
  color: #475569;
}

.tx-drag-handle:active {
  cursor: grabbing;
}

.tx-card.tx-dragging,
.tx-filter-row.tx-dragging {
  opacity: 0.55;
}

.tx-filter-row .tx-drag-handle {
  flex-shrink: 0;
}

.tx-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
  color: #3459e6;
}

.tx-card-icon .bi {
  font-size: 1.25rem;
}

.tx-card-meta {
  flex: 1;
  min-width: 0;
}

.tx-card-title {
  color: #0f172a;
}

.tx-card-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.tx-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.35rem;
}

.tx-filters-list {
  padding: 0 0.5rem 0.75rem;
}

.tx-filter-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
}

.tx-filter-row:hover {
  background: rgba(52, 89, 230, 0.04);
}

.tx-filter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: #f1f5f9;
  color: #475569;
  flex-shrink: 0;
}

.tx-filter-name {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  color: #0f172a;
}

.tx-filter-order {
  flex-shrink: 0;
}

.tx-filter-actions {
  flex-shrink: 0;
}

.tx-filters-empty {
  padding: 0.35rem 0.5rem 0.5rem;
}

.tx-icon-btn {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid rgba(52, 89, 230, 0.2);
  border-radius: 0.65rem;
  background: #f8faff;
  color: #3459e6;
}

.tx-icon-preview-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tx-icon-preview-img,
.tx-card-icon-img,
.tx-filter-icon-img {
  width: 100%;
  height: 100%;
  max-width: 2.5rem;
  max-height: 2.5rem;
  object-fit: contain;
}

.tx-card-icon-img {
  max-width: 1.75rem;
  max-height: 1.75rem;
}

.tx-filter-icon-img {
  max-width: 1.25rem;
  max-height: 1.25rem;
}

.fp-modal .modal-body {
  min-height: 280px;
}

.fp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.fp-table-wrap {
  max-height: min(55vh, 420px);
  overflow: auto;
}

.fp-col-thumb {
  width: 3rem;
}

.fp-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.35rem;
  background: #f1f5f9;
  overflow: hidden;
}

.fp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-thumb--muted {
  color: #64748b;
}

.fp-row-selected {
  background: rgba(52, 89, 230, 0.08);
}

.fp-row-selected .fp-file-name {
  font-weight: 600;
  color: #3459e6;
}

.tx-icon-btn:hover {
  background: #eef2ff;
  border-color: rgba(52, 89, 230, 0.35);
}

.tx-lang-tabs .nav-link {
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
}

.tx-seo-block {
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.tx-slug-status {
  min-width: 2.25rem;
  justify-content: center;
  border-left: 0;
}

.tx-slug-status--ok {
  background: #dcfce7;
  color: #15803d;
  border-color: #86efac;
}

.tx-slug-status--err {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #fca5a5;
}

.tx-seo-block .input-group:has(.tx-slug-status--ok) .form-control {
  border-color: #22c55e;
}

.tx-seo-block .input-group:has(.tx-slug-status--err) .form-control {
  border-color: #ef4444;
}

.tx-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(2.75rem, 1fr));
  gap: 0.35rem;
  max-height: 18rem;
  overflow-y: auto;
}

.tx-icon-option {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  background: #f8fafc;
  color: #334155;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tx-icon-option:hover,
.tx-icon-option:focus {
  background: #eef2ff;
  border-color: rgba(52, 89, 230, 0.25);
  color: #3459e6;
}

.tx-icon-option .bi {
  font-size: 1.15rem;
}

/* Items admin */
.it-root {
  max-width: 100%;
}

.it-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.it-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.it-refresh-spin .bi {
  animation: tx-spin 0.65s linear infinite;
}

.it-toolbar-filter {
  min-width: 12rem;
  max-width: 100%;
}

.it-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  white-space: nowrap;
}

.it-table td {
  vertical-align: middle;
  font-size: 0.875rem;
}

.it-coords {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  color: #475569;
}

.it-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
}

.it-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.it-filter-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.75rem;
  background: #f8fafc;
}

.it-filter-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.it-lang-tabs .nav-link {
  font-size: 0.8125rem;
  padding: 0.35rem 0.65rem;
}

.it-map {
  height: 320px;
  min-height: 240px;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  z-index: 0;
}

.it-map-section .leaflet-container {
  font-family: inherit;
}

@media (max-width: 991.98px) {
  .it-map {
    height: 260px;
  }
}

.it-col-thumb {
  width: 3.5rem;
}

.it-list-thumb {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 0.35rem;
  display: block;
}

.it-list-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  font-size: 1rem;
}

.it-form-page-wrap {
  max-width: 1200px;
}

.it-form-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .it-form-layout {
    grid-template-columns: 1fr;
  }
}

.it-form-card {
  margin-bottom: 1.25rem;
}

.it-form-card-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.it-form-aside {
  position: sticky;
  top: 1rem;
}

.it-form-loading {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
}

.it-image-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.it-image-preview {
  aspect-ratio: 16 / 10;
  border: 1px dashed #cbd5e1;
  border-radius: 0.5rem;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.it-image-preview--thumb {
  aspect-ratio: 4 / 3;
  max-width: 12rem;
}

.it-image-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.it-image-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.it-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-start;
}

.it-gallery--sortable {
  min-height: 6.5rem;
}

.it-gallery-item {
  position: relative;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 0.45rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  cursor: default;
  transition: box-shadow 0.15s ease, opacity 0.15s ease;
}

.it-gallery-item--dragging {
  opacity: 0.55;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.it-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.it-gallery-order {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  z-index: 2;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
}

.it-gallery-drag {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.92);
  color: #475569;
  border: 1px solid #e2e8f0;
  cursor: grab;
}

.it-gallery-drag:active {
  cursor: grabbing;
}

.it-gallery-remove {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.it-map--form {
  height: 380px;
  min-height: 280px;
}

/* Item types admin */
.ity-root {
  max-width: 640px;
}

.ity-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ity-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ity-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.ity-row--dragging {
  opacity: 0.55;
  background: #f8fafc;
}

.ity-drag-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  color: #94a3b8;
  cursor: grab;
  flex-shrink: 0;
}

.ity-drag-handle:active {
  cursor: grabbing;
}

.ity-row-name {
  flex: 1;
  font-weight: 500;
  color: #1e293b;
  min-width: 0;
}

.ity-row-swatch {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.ity-color-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.ity-color-field input[type='color'] {
  width: 2.75rem;
  height: 2.25rem;
  padding: 0.15rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.35rem;
  cursor: pointer;
  background: #fff;
}

.ity-color-field input[type='text'] {
  max-width: 7.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
}

.ity-row-actions {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.it-location-switch .form-check-label {
  font-weight: 500;
  white-space: nowrap;
}

.it-location-panel--off {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.it-location-panel--off .it-map {
  visibility: hidden;
  height: 0;
  min-height: 0;
  margin: 0;
  border: 0;
}

/* ——— Public site (home hero & navbar) ——— */
.page-home {
  margin: 0;
}

.site-header {
  z-index: 1030;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.site-navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.site-navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.125rem 1.5rem;
}

@media (min-width: 992px) {
  .site-navbar__inner {
    padding: 1.35rem 2.25rem;
  }
}

@media (min-width: 1200px) {
  .site-navbar__inner {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
}

/* Public navbar: same lockup as admin, dark on light */
.site-navbar .navbar-brand.app-brand-lockup {
  font-size: inherit;
  line-height: inherit;
}

.site-navbar .app-brand--site {
  color: #0f172a;
  text-decoration: none;
}

.site-navbar .app-brand--site:hover {
  color: #0f172a;
  opacity: 0.88;
}

.site-navbar .app-brand--site .app-brand-line--top {
  color: #64748b;
  opacity: 1;
}

.site-navbar .app-brand--site .app-brand-line--bottom {
  color: #0f172a;
}

.site-navbar__links {
  gap: 0.35rem;
}

@media (min-width: 992px) {
  .site-navbar__links {
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
  }
}

.site-navbar__actions {
  gap: 1rem;
}

@media (min-width: 992px) {
  .site-navbar__actions {
    gap: 1.35rem;
  }
}

.site-navbar__toggler {
  border: none;
}

.site-navbar__toggler:focus {
  box-shadow: none;
}

/* Mobile off-canvas navigation */
.site-nav-offcanvas {
  width: min(20rem, 88vw);
  border-left: 1px solid #e2e8f0;
}

.site-nav-offcanvas__header {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid #e2e8f0;
}

.site-nav-offcanvas__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
}

.site-nav-offcanvas__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 1.35rem 1.5rem;
}

.site-navbar__links--drawer {
  gap: 0.25rem;
  margin-bottom: 0;
}

.site-nav-link--drawer {
  padding: 0.85rem 0.75rem !important;
  font-size: 1.0625rem;
  border-radius: 0.55rem;
}

.site-nav-offcanvas__divider {
  height: 1px;
  margin: 1rem 0;
  background: #e2e8f0;
}

.site-call-link--drawer {
  padding: 0.5rem 0.75rem;
  border-radius: 0.55rem;
}

.site-call-link--drawer:hover {
  background: rgba(15, 23, 42, 0.04);
}

.site-nav-offcanvas__section-label {
  margin: 0 0 0.65rem;
  padding: 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.site-nav-offcanvas__lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav-offcanvas__lang-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  text-decoration: none;
  border-radius: 0.55rem;
  transition: background 0.15s ease;
}

.site-nav-offcanvas__lang-link:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #000;
}

.site-nav-offcanvas__lang-link.active {
  background: rgba(15, 23, 42, 0.1);
  color: #000;
}

.site-nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: 0.45rem;
  letter-spacing: 0.01em;
}

@media (min-width: 992px) {
  .site-nav-link {
    padding: 0.7rem 1.25rem !important;
  }
}

.site-nav-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.05);
}

.site-btn-outline {
  border: 1px solid #93c5fd;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.45rem;
  background: #fff;
  padding: 0.6rem 1.35rem;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .site-btn-outline {
    padding: 0.65rem 1.5rem;
  }
}

.site-btn-outline:hover {
  background: #eff6ff;
  color: #1e40af;
  border-color: #60a5fa;
}

.site-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  text-decoration: none;
  color: #1e293b;
  background: none;
  border: none;
  padding: 0.35rem 0;
  line-height: 1.15;
  transition: color 0.15s ease;
}

.site-call-link:hover {
  color: #0f172a;
}

.site-call-link:focus-visible {
  outline: 2px solid rgba(51, 65, 85, 0.35);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.site-call-link__icon {
  flex-shrink: 0;
  font-size: 1.35rem;
  color: #334155;
  line-height: 1;
}

.site-call-link:hover .site-call-link__icon {
  color: #0f172a;
}

.site-call-link__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.site-call-link__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.site-call-link__number {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
  white-space: nowrap;
}

.site-call-link:hover .site-call-link__number {
  color: #020617;
}

/* Public site dropdown panels: soft near-white (not pure #fff, not heavy glass) */
.site-dropdown-glass {
  min-width: 11rem;
  padding: 0.4rem;
  margin-top: 0.5rem !important;
  background: rgba(252, 252, 253, 0.97) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #e5e9ef;
  border-radius: 0.85rem;
  box-shadow:
    0 8px 28px rgba(15, 23, 42, 0.09),
    0 2px 8px rgba(15, 23, 42, 0.05);
}

.dropdown-menu.site-dropdown-glass.show {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-dropdown-glass .dropdown-item {
  border-radius: 0.55rem;
  font-weight: 500;
  color: #000;
  padding: 0.5rem 0.85rem;
}

.site-dropdown-glass .dropdown-item:hover,
.site-dropdown-glass .dropdown-item:focus {
  background: rgba(15, 23, 42, 0.06);
  color: #000;
}

.site-dropdown-glass .dropdown-item.active {
  background: rgba(15, 23, 42, 0.1);
  color: #000;
}

.site-dropdown-glass .dropdown-item:active {
  color: #000;
}

.site-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(248, 250, 252, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: 0.875rem;
  color: #334155;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.site-lang-btn:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(148, 163, 184, 0.45);
  color: #0f172a;
}

.site-lang-btn:focus-visible {
  outline: 2px solid rgba(100, 116, 139, 0.35);
  outline-offset: 2px;
}

.site-lang-btn::after {
  margin-left: 0.15em;
  vertical-align: 0.15em;
}

.site-lang-flag {
  display: block;
  height: 1rem;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.site-lang-flag--item {
  height: 0.9rem;
  flex-shrink: 0;
}

/* Grid icon only — opens quick-links dropdown, no button chrome */
.site-apps-menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.15rem;
  border: none;
  background: transparent;
  color: #334155;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.4rem;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.site-apps-menu-trigger .bi {
  font-size: 1.75rem;
}

.site-apps-menu-trigger:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
}

.site-apps-menu-trigger:focus-visible {
  outline: 2px solid rgba(100, 116, 139, 0.35);
  outline-offset: 2px;
}

.site-apps-menu-trigger.dropdown-toggle::after {
  display: none !important;
}

.site-hero {
  position: relative;
  min-height: min(88vh, 920px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #0f172a;
}

.site-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.site-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .site-hero__media {
    display: none;
  }

  .site-hero {
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
  }
}

.site-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.45) 45%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}

.site-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
}

.site-hero__content {
  max-width: 42rem;
  text-align: left;
}

.site-hero__headline {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.site-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-hero__toggles {
  display: inline-flex;
  gap: 0.125rem;
  padding: 0.3rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-hero__toggle {
  position: relative;
  border: none;
  padding: 0.55rem 1.55rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.12s ease;
}

.site-hero__toggle:hover:not(.site-hero__toggle--active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-hero__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.site-hero__toggle:active:not(.site-hero__toggle--active) {
  transform: scale(0.98);
}

.site-hero__toggle--active {
  background: #fff;
  color: #0f172a;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.14),
    0 1px 2px rgba(0, 0, 0, 0.06);
}

.site-hero__toggle--active:hover {
  background: #f8fafc;
  color: #020617;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.18),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.site-hero__toggle--active:active {
  transform: scale(0.99);
}

.site-hero__search-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 0.75rem;
  overflow: visible;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .site-hero__search-inner {
    flex-direction: row;
    align-items: stretch;
    border-radius: 999px;
  }
}

.site-hero__field {
  display: flex;
  align-items: center;
  min-height: 3.35rem;
}

.site-hero__field--type {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.15s ease;
  border-radius: 0.75rem 0.75rem 0 0;
}

.site-hero__field--type:hover,
.site-hero__field--type:focus-within {
  background: rgba(15, 23, 42, 0.045);
}

@media (min-width: 768px) {
  .site-hero__field--type {
    border-bottom: none;
    border-right: 1px solid #e2e8f0;
    flex: 0 0 12rem;
    border-radius: 999px 0 0 999px;
  }

  .site-hero__field--location {
    flex: 1 1 auto;
  }

  .site-hero__field--submit {
    flex: 0 0 auto;
  }
}

.site-hero__field--location {
  transition: background 0.15s ease;
}

.site-hero__field--location:hover,
.site-hero__field--location:focus-within,
.site-hero__field--location.is-panel-open {
  background: rgba(15, 23, 42, 0.045);
}

/* Location field: chips + attached dropdown (structure unchanged) */
.site-hero__field--location.site-hero__area-field {
  position: relative;
  z-index: 6;
  align-items: stretch;
  align-self: stretch;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.site-hero__area-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
  padding: 0 0.25rem;
  cursor: text;
}

.site-hero__area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-hero__area-chips:empty {
  display: none;
}

.site-hero__area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.35rem 0.45rem 0.35rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  background: #eef1f4;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  line-height: 1.25;
}

.site-hero__area-chip-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 14rem;
}

.site-hero__area-chip-remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0.25rem;
  background: transparent;
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.12s ease, background 0.12s ease;
}

.site-hero__area-chip-remove:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.08);
}

.site-hero__area-filter.site-hero__input {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 1.75rem;
}

.site-hero__area-field .site-hero__area-filter:focus,
.site-hero__area-field .site-hero__area-filter:focus-visible {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none;
  color: #0f172a;
}

.site-hero__area-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 25;
  background: #fff;
  border: 1px solid #e8ecef;
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  max-height: min(10.5rem, 38vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.3rem 0.4rem 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.site-hero__area-panel::-webkit-scrollbar {
  width: 6px;
}

.site-hero__area-panel::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

@media (min-width: 768px) {
  .site-hero__field--location.is-panel-open {
    border-radius: 0;
  }

  .site-hero__area-panel {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

.site-hero__area-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-hero__area-option {
  display: block;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: none;
  border-radius: 0.4rem;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease;
}

.site-hero__area-option:hover:not(:disabled),
.site-hero__area-option:focus:not(:disabled) {
  background: #f1f5f9;
  color: #000;
}

.site-hero__area-option:disabled {
  opacity: 0.45;
  cursor: default;
}

.site-hero__area-empty {
  margin: 0;
  padding: 0.75rem 0.35rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.site-hero__search .site-dropdown-glass {
  width: 100%;
  min-width: 100%;
}

.site-hero__type-trigger {
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
  cursor: pointer;
  line-height: 1.3;
  padding: 0.65rem 1rem;
  border-radius: 0;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.site-hero__type-trigger:hover,
.site-hero__field--type:hover .site-hero__type-trigger,
.site-hero__field--type:focus-within .site-hero__type-trigger {
  background: transparent;
  color: #000;
}

.site-hero__type-trigger:focus-visible {
  outline: 2px solid rgba(100, 116, 139, 0.45);
  outline-offset: -2px;
}

.site-hero__type-trigger.dropdown-toggle::after {
  margin-left: 0.75rem;
  flex-shrink: 0;
  vertical-align: 0.15em;
  border-top-color: #000;
}

@media (min-width: 768px) {
  .site-hero__type-trigger {
    border-radius: 999px 0 0 999px;
  }
}

.site-hero__type-option.dropdown-item {
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
}

.site-hero__input {
  border: none;
  box-shadow: none !important;
  font-size: 0.95rem;
  height: 100%;
  padding: 0.65rem 1rem;
  background: transparent;
  color: #0f172a;
  border-radius: 0;
}

.site-hero__input::placeholder {
  color: #94a3b8;
}

.site-hero__submit {
  width: 100%;
  border: none;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: #ea580c;
  color: #fff;
  white-space: nowrap;
  transition: background 0.15s ease, filter 0.15s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .site-hero__submit {
    width: auto;
    border-radius: 999px;
    margin: 0.35rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.site-hero__submit:hover {
  background: #c2410c;
  color: #fff;
}

.site-hero__map-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.site-hero__map-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.site-hero__map-trigger:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-hero__map-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.site-hero__map-trigger .bi {
  font-size: 1.1rem;
  opacity: 0.95;
}

.site-hero__map-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem 0.3rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.site-hero__map-summary-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.site-hero__map-summary-remove:hover {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.site-hero-map-modal .modal-content {
  border: none;
  border-radius: 0.85rem;
  overflow: hidden;
}

.site-hero-map-modal .modal-body {
  padding-bottom: 1.35rem;
}

.site-hero-map-modal__desc {
  color: #334155;
  font-size: 0.9375rem;
}

.site-hero-map {
  width: 100%;
  min-height: 280px;
  height: 280px;
  border-radius: 0.55rem;
  border: 1px solid #e2e8f0;
  z-index: 0;
}

.site-hero-map-modal .leaflet-container {
  font-family: inherit;
}

.site-hero-map-modal__radius {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.site-hero-map-modal__radius-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.site-hero-map-modal__radius-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.site-hero-map-modal__radius-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.site-hero-map-modal__range {
  --range-pct: 1.35%;
  --range-track-h: 10px;
  --range-thumb-size: 1.25rem;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: var(--range-track-h);
  margin: 1rem 0 0.55rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #0d9488 0%,
    #14b8a6 var(--range-pct),
    #e2e8f0 var(--range-pct),
    #e2e8f0 100%
  );
  outline: none;
  cursor: pointer;
}

.site-hero-map-modal__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  margin-top: calc((var(--range-track-h) - var(--range-thumb-size)) / 2);
  border-radius: 50%;
  border: 3px solid #fff;
  background: #ea580c;
  box-shadow:
    0 2px 8px rgba(234, 88, 12, 0.4),
    0 0 0 1px rgba(234, 88, 12, 0.15);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.site-hero-map-modal__range::-moz-range-thumb {
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  border-radius: 50%;
  border: 3px solid #fff;
  background: #ea580c;
  box-shadow:
    0 2px 8px rgba(234, 88, 12, 0.4),
    0 0 0 1px rgba(234, 88, 12, 0.15);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.site-hero-map-modal__range::-moz-range-track {
  height: var(--range-track-h);
  border-radius: 999px;
  background: #e2e8f0;
}

.site-hero-map-modal__range::-moz-range-progress {
  height: var(--range-track-h);
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.site-hero-map-modal__range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.site-hero-map-modal__range::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.site-hero-map-modal__range:focus-visible::-webkit-slider-thumb {
  box-shadow:
    0 2px 8px rgba(234, 88, 12, 0.4),
    0 0 0 3px rgba(234, 88, 12, 0.22);
}

.site-hero-map-modal__range:focus-visible {
  outline: none;
}

.site-hero-map-modal__range-ticks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

.site-hero-map-modal__range-ticks span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-hero-map-modal__range-ticks span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

.site-hero-map-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}

.site-hero-map-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

.site-hero-map-modal__btn:active {
  transform: scale(0.98);
}

.site-hero-map-modal__btn--clear {
  padding: 0.6rem 0.95rem;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.35rem;
  font-weight: 600;
}

.site-hero-map-modal__btn--clear:hover {
  color: #334155;
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.site-hero-map-modal__btn--clear .bi {
  font-size: 0.95rem;
}

.site-hero-map-modal__btn--search {
  padding: 0.7rem 1.35rem;
  color: #fff;
  background: #ea580c;
  border-radius: 0.4rem;
  box-shadow: none;
}

.site-hero-map-modal__btn--search:hover {
  background: #c2410c;
  color: #fff;
}

.site-hero-map-modal__btn--search:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 3px;
}

.site-hero-map-modal__btn--search .bi {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .site-hero-map {
    min-height: 340px;
    height: 340px;
  }

  .site-hero-map-modal__actions {
    gap: 0.75rem;
  }

  .site-hero-map-modal__btn--search {
    padding-left: 1.85rem;
    padding-right: 1.85rem;
  }
}

/* Site footer */
.site-footer {
  margin-top: auto;
  background: #f0f4f7;
  color: #334155;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1200px) {
  .site-footer__inner {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
}

.site-footer__main {
  padding: 2.5rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer__seo-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.75rem 2.25rem;
  min-width: 0;
  width: 100%;
}

.site-footer__col--type {
  min-width: 14rem;
}

.site-footer__area-group + .site-footer__area-group {
  margin-top: 1.1rem;
}

.site-footer__area-heading {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.3;
}

.site-footer__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.site-footer__sidebar .site-footer__aside {
  justify-content: flex-start;
}

.site-footer__sidebar .site-footer__actions {
  align-items: flex-start;
  max-width: none;
}

.site-footer__sidebar .site-call-link--footer {
  align-self: flex-start;
}

.site-footer__sidebar .site-footer__lang-row {
  justify-content: flex-start;
}

@media (min-width: 576px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 16rem) minmax(9rem, auto);
    gap: 2rem 2.5rem;
  }

  .site-footer__seo-cols {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr) minmax(8rem, 11rem);
    gap: 2.5rem 2rem;
    align-items: start;
  }

  .site-footer__seo-cols {
    grid-column: 2;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: 2rem 2.75rem;
  }

  .site-footer__col--type {
    min-width: 17rem;
  }

  .site-footer__sidebar {
    grid-column: 3;
  }
}

.site-footer__brand-col {
  max-width: 16rem;
  text-align: left;
}

.site-footer .site-footer__brand.app-brand-lockup {
  display: inline-flex;
  justify-content: flex-start;
  align-self: flex-start;
}

.site-footer .site-footer__brand .app-brand-lockup-text {
  align-items: flex-start;
}

.site-footer .site-footer__brand .app-brand-line--top {
  align-self: flex-start;
}

.site-footer .site-footer__brand .app-brand-line--bottom {
  justify-content: flex-start;
}

.site-footer .app-brand--site {
  color: #0f172a;
  text-decoration: none;
}

.site-footer .app-brand--site:hover {
  color: #0f172a;
  opacity: 0.88;
}

.site-footer__tagline {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #64748b;
  max-width: 16rem;
}

.site-footer__brand-social {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 16rem;
}

.site-footer__brand-social .site-call-link--boxed {
  width: 100%;
}

.site-footer__aside {
  display: flex;
  justify-content: flex-end;
}

.site-footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
  max-width: 16rem;
}

.site-call-link--footer {
  align-self: flex-end;
}

.site-call-link--boxed {
  padding: 0.55rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.65rem;
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.site-call-link--boxed:hover {
  border-color: #94a3b8;
  background: #f1f5f9;
  color: #0f172a;
}

.site-call-link--boxed .site-call-link__icon {
  color: #64748b;
}

.site-call-link--boxed:hover .site-call-link__icon {
  color: #475569;
}

.site-footer__lang-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.site-lang-btn--labeled {
  padding: 0.45rem 1rem 0.45rem 0.85rem;
}

.site-lang-btn__label {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-footer__lang-dropdown {
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .site-footer__aside {
    justify-content: flex-start;
  }

  .site-footer__actions {
    align-items: flex-start;
    max-width: none;
  }

  .site-call-link--footer {
    align-self: flex-start;
  }

  .site-footer__lang-row {
    justify-content: flex-start;
  }
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.12s ease;
}

.site-footer__col--type .site-footer__links a {
  display: block;
  line-height: 1.35;
}

.site-footer__links a:hover {
  color: #0d9488;
}

.site-footer__bottom {
  border-top: 1px solid #dde3e8;
  padding: 1rem 0 1.35rem;
  background: #f0f4f7;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__bottom-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.site-footer__developer {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.site-footer__developer:hover {
  opacity: 0.88;
}

.site-footer__developer-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}

.site-footer__developer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.site-footer__developer-by {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.site-footer__developer-brand {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
  text-shadow:
    0.5px 0 0 rgba(34, 211, 238, 0.55),
    -0.5px 0 0 rgba(249, 115, 22, 0.5);
}

@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .site-footer__bottom-start {
    align-items: flex-start;
  }

  .site-footer__developer {
    align-self: flex-end;
  }
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.75rem;
}

.site-footer__legal a {
  color: #64748b;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: #0f172a;
}

.site-footer__legal-sep {
  color: #cbd5e1;
  user-select: none;
}

.page-home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 404 page */
.page-404 {
  background: #f8fafc;
}

.site-not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 12rem);
  padding: 3rem 0 4rem;
}

.site-not-found__container {
  max-width: 36rem;
  text-align: center;
}

.site-not-found__code {
  margin: 0 0 0.75rem;
  font-size: clamp(4rem, 12vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ea580c;
  opacity: 0.92;
}

.site-not-found__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.site-not-found__message {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.site-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.site-not-found__btn {
  font-weight: 600;
  padding: 0.55rem 1.35rem;
}

.site-not-found__actions .btn-primary {
  background: #ea580c;
  border-color: #ea580c;
}

.site-not-found__actions .btn-primary:hover {
  background: #c2410c;
  border-color: #c2410c;
}

@media (max-width: 575.98px) {
  .site-not-found__actions {
    flex-direction: column;
    width: 100%;
  }

  .site-not-found__btn {
    width: 100%;
  }
}

/* Item detail (public) */
.page-item {
  background: #fff;
}

.item-detail__container {
  max-width: 1320px;
}

.item-detail__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .item-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
    gap: 2.5rem;
  }

  .item-contact-panel {
    position: sticky;
    top: 1.25rem;
  }
}

.item-detail__main {
  min-width: 0;
}

/* Toolbar: back link + breadcrumb */
.item-detail__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.item-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
}

.item-detail__back:hover {
  color: #ea580c;
}

.item-detail__crumbs {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
}

.item-detail__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.item-detail__crumbs-item {
  display: inline-flex;
  align-items: center;
}

.item-detail__crumbs-item:not(:last-child)::after {
  content: "›";
  margin: 0 0.4rem;
  color: #94a3b8;
  font-weight: 400;
}

.item-detail__crumbs-item a {
  color: #64748b;
  text-decoration: none;
}

.item-detail__crumbs-item a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.item-detail__crumbs-item--current span {
  color: #0f172a;
  font-weight: 600;
}

/* Gallery mosaic */
.item-detail__gallery {
  margin-bottom: 1.5rem;
}

.item-detail__gallery-single {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e2e8f0;
  aspect-ratio: 16 / 9;
}

.item-detail__gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 1fr);
  gap: 0.5rem;
  height: clamp(280px, 42vw, 480px);
  align-items: stretch;
}

.item-detail__gallery-main,
.item-detail__gallery-cell,
.item-detail__gallery-single {
  border: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #e2e8f0;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease;
}

.item-detail__gallery-single {
  aspect-ratio: 16 / 9;
}

.item-detail__gallery-main {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 0;
}

.item-detail__gallery-main:hover,
.item-detail__gallery-cell:hover,
.item-detail__gallery-single:hover {
  box-shadow: 0 0 0 2px #ea580c;
}

.item-detail__gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  min-height: 0;
  min-width: 0;
}

.item-detail__gallery-side--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.item-detail__gallery-side--2 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
}

.item-detail__gallery-side--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.item-detail__gallery-side--3 .item-detail__gallery-cell:last-child {
  grid-column: 1 / -1;
}

.item-detail__gallery-cell {
  min-height: 0;
  min-width: 0;
  height: 100%;
}

.item-detail__gallery-img,
.item-detail__gallery-cell img,
.item-detail__gallery-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.item-detail__fancybox-more {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.item-detail__gallery-count {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.35rem;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  pointer-events: none;
}

/* Title block */
.item-detail__header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8ecf1;
}

.item-detail__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.item-detail__location {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.item-detail__location .bi {
  color: #94a3b8;
}

/* Filters / highlights row */
.item-detail__highlights {
  margin-bottom: 1.5rem;
}

.item-detail__highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.item-detail__highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.item-detail__highlight-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1.35rem;
}

.item-detail__highlight-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.item-detail__highlight-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.item-detail__highlight-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.item-detail__highlight-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.item-detail__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.item-detail__map-section {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.item-detail__map-hint {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #0f172a;
}

.site-map {
  position: relative;
}

.site-map__gmaps-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.14);
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.site-map__gmaps-btn:hover {
  color: #0d9488;
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
}

.site-map__gmaps-btn:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.site-map__gmaps-btn .bi {
  font-size: 0.9rem;
  opacity: 0.85;
}

.site-map__canvas.item-detail__map,
.site-map__canvas.site-hero-map {
  width: 100%;
}

.item-detail__map {
  height: 320px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* Item contact sidebar */
.item-contact-panel {
  min-width: 0;
}

.item-contact-panel__card {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
  padding: 1.25rem 1.15rem 1.15rem;
}

.item-contact-panel__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.item-contact-panel__intro {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.item-contact-panel__channels {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8ecf1;
}

.site-call-link--item-panel {
  display: flex;
  width: 100%;
  padding: 0.4rem 0;
}

.item-contact-panel__messengers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0;
}

.item-contact-panel__messenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.item-contact-panel__messenger-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.item-contact-panel__messenger-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.item-contact-panel__messenger-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.item-contact-panel__messenger-btn--whatsapp:hover {
  color: #fff;
}

.item-contact-panel__messenger-btn--viber {
  background: #7360f2;
  color: #fff;
}

.item-contact-panel__messenger-btn--viber:hover {
  color: #fff;
}

.item-contact-panel__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item-contact-field {
  margin: 0;
  padding: 0.65rem 0.75rem 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.35rem;
  position: relative;
  min-width: 0;
}

.item-contact-field--message {
  padding-top: 0.75rem;
}

.item-contact-field__legend {
  float: left;
  width: auto;
  margin: 0;
  padding: 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1;
  position: relative;
  top: -1.15rem;
  left: 0.15rem;
  background: #fff;
}

.item-contact-field--message .item-contact-field__legend {
  top: -1.25rem;
}

.item-contact-field__counter {
  position: absolute;
  top: 0.35rem;
  right: 0.65rem;
  font-size: 0.75rem;
  color: #94a3b8;
  pointer-events: none;
}

.item-contact-field__control {
  display: block;
  width: 100%;
  margin-top: 0.15rem;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  color: #0f172a;
  padding: 0.15rem 0 0;
  line-height: 1.4;
  appearance: none;
}

.item-contact-field__control:focus {
  outline: none;
}

.item-contact-field:focus-within {
  border-color: #0d9488;
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.12);
}

select.item-contact-field__control {
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M4.427 6.427l3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 6H4.604a.25.25 0 0 0-.177.427z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.item-contact-field__textarea {
  resize: vertical;
  min-height: 6.5rem;
  font-family: inherit;
}

.item-contact-panel__submit {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.4rem;
  background: #ea580c;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.item-contact-panel__submit:hover {
  background: #c2410c;
}

.item-contact-panel__alt-label {
  margin: 1rem 0 0.65rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.item-contact-panel__alt-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-contact-panel__alt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #0d9488;
  border-radius: 0.4rem;
  background: #fff;
  color: #0d9488;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.item-contact-panel__alt-btn:hover {
  background: #f0fdfa;
  color: #0f766e;
}

.item-contact-panel__agency {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid #e8ecf1;
}

.item-contact-panel__agency-brand {
  flex-shrink: 0;
}

.item-contact-panel__agency-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.item-contact-panel__agency-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.item-contact-panel__agency-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.item-contact-panel__agency-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.item-contact-panel__agency-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.15rem;
}

.item-contact-panel__agency-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.item-contact-panel__agency-link .bi {
  color: #0d9488;
  font-size: 1rem;
}

.item-contact-panel__agency-link:hover {
  color: #0d9488;
}

@media (max-width: 991.98px) {
  .item-detail__gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .item-detail__gallery-main {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 220px;
  }

  .item-detail__gallery-side {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: 160px;
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 575.98px) {
  .item-detail__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-detail__highlights-list {
    gap: 1rem 1.25rem;
  }
}

/* ——— Listings page ——— */
.listings-page {
  background: #f8fafc;
}

.listings-page__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  color: var(--bs-secondary-color);
}

.listings-page__crumbs-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.listings-page__crumbs-list a {
  color: inherit;
  text-decoration: none;
}

.listings-page__crumbs-list a:hover {
  color: #3459e6;
}

.listings-page__header {
  margin-bottom: 1.5rem;
}

.listings-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.listings-page__count {
  margin: 0;
  color: var(--bs-secondary-color);
  font-size: 0.95rem;
}

.listings-page__layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.listings-filters {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  gap: 1rem;
}

.listings-filters__toggles {
  align-self: stretch;
  width: 100%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.listings-filters__toggles .site-hero__toggle {
  flex: 1;
  color: #475569;
}

.listings-filters__toggles .site-hero__toggle:hover:not(.site-hero__toggle--active) {
  color: #0f172a;
  background: #e2e8f0;
}

.listings-filters__toggles .site-hero__toggle--active {
  color: #0f172a;
  background: #fff;
}

.listings-filters__field {
  margin-bottom: 0;
}

.listings-filters__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.listings-filters__field .form-control.site-hero__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: none;
}

.listings-filters__field .form-control.site-hero__input:focus {
  border-color: #3459e6;
  box-shadow: 0 0 0 0.2rem rgba(52, 89, 230, 0.15);
}

.listings-filters__type-dropdown .site-dropdown-glass {
  width: 100%;
  min-width: 100%;
}

.listings-filters__type-trigger.site-lang-btn {
  width: 100%;
  justify-content: space-between;
  padding: 0.55rem 0.95rem;
  border-radius: 0.5rem;
  background: #fff;
  border-color: #e2e8f0;
  color: #0f172a;
  font-size: 0.9375rem;
}

.listings-filters__type-trigger.site-lang-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.listings-filters__type-trigger.site-lang-btn::after {
  margin-left: auto;
  flex-shrink: 0;
}

.listings-filters__type-option.dropdown-item {
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
}

.listings-filters__area-search {
  margin-bottom: 0.5rem;
}

.listings-filters__areas-scroll {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.listings-filters__areas-scroll::-webkit-scrollbar {
  width: 6px;
}

.listings-filters__areas-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.listings-filters__checks {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.listings-filters__check,
.listings-filters__area-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.5rem;
  margin: 0;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.12s ease;
}

.listings-filters__check:hover,
.listings-filters__area-check:hover {
  background: #fff;
}

.listings-filters__check input[type="checkbox"],
.listings-filters__area-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: #ea580c;
  cursor: pointer;
}

.listings-filters__check span,
.listings-filters__area-check span {
  line-height: 1.35;
}

.listings-filters__categories-scroll {
  max-height: 11rem;
  overflow-y: auto;
  padding: 0.35rem 0.5rem;
  margin-top: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.listings-filters__categories-scroll::-webkit-scrollbar {
  width: 6px;
}

.listings-filters__categories-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.listings-filters__categories-empty {
  font-size: 0.875rem;
  color: #64748b;
}

.listings-filters__types-scroll {
  max-height: 11rem;
  overflow-y: auto;
  padding: 0.35rem 0.5rem;
  margin-top: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.listings-filters__types-scroll::-webkit-scrollbar {
  width: 6px;
}

.listings-filters__types-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.listings-filters__types-empty {
  font-size: 0.875rem;
  color: #64748b;
}

.listings-filters__areas-empty-msg {
  margin: 0 0 0.5rem;
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.35;
  border-radius: 0.5rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
}

.listings-filters__areas-empty-msg .bi {
  display: block;
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 0.3rem;
}

.listings-filters__areas-empty-msg strong {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.15rem;
}

.listings-filters__areas-empty-msg span {
  display: block;
}

.listings-filters__section-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.listings-sqm-range__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.listings-filters__field--sqm {
  --sqm-accent: #ea580c;
  --sqm-accent-light: #f97316;
  --sqm-accent-glow: rgba(234, 88, 12, 0.35);
}

.listings-sqm-range__value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sqm-accent, #ea580c);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.listings-sqm-range__track-wrap {
  --sqm-track-h: 8px;
  --sqm-thumb-size: 1.25rem;
  --sqm-thumb-offset: calc(var(--sqm-thumb-size) / 2);
  position: relative;
  display: flex;
  align-items: center;
  height: var(--sqm-thumb-size);
  margin: 0.35rem var(--sqm-thumb-offset) 0.55rem;
}

.listings-sqm-range__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: var(--sqm-track-h);
  border-radius: 999px;
  background: #e2e8f0;
  pointer-events: none;
}

.listings-sqm-range__fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: var(--sqm-track-h);
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sqm-accent, #ea580c), var(--sqm-accent-light, #f97316));
  pointer-events: none;
}

.listings-sqm-range__input {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--sqm-track-h);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  outline: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.listings-sqm-range__input::-webkit-slider-runnable-track {
  height: var(--sqm-track-h);
  border-radius: 999px;
  background: transparent;
  border: none;
}

.listings-sqm-range__input::-moz-range-track {
  height: var(--sqm-track-h);
  border-radius: 999px;
  background: transparent;
  border: none;
}

.listings-sqm-range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--sqm-thumb-size);
  height: var(--sqm-thumb-size);
  margin-top: calc((var(--sqm-track-h) - var(--sqm-thumb-size)) / 2);
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--sqm-accent, #ea580c);
  box-shadow: 0 2px 8px var(--sqm-accent-glow, rgba(234, 88, 12, 0.35));
  cursor: grab;
  pointer-events: auto;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.listings-sqm-range__input::-moz-range-thumb {
  width: var(--sqm-thumb-size);
  height: var(--sqm-thumb-size);
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--sqm-accent, #ea580c);
  box-shadow: 0 2px 8px var(--sqm-accent-glow, rgba(234, 88, 12, 0.35));
  cursor: grab;
  pointer-events: auto;
}

.listings-sqm-range__input--max {
  z-index: 2;
}

.listings-sqm-range__input--min {
  z-index: 3;
}

.listings-sqm-range__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

.listings-filters__map-row {
  margin-top: 0.25rem;
}

.listings-filters__map-row .site-hero__map-trigger {
  color: #ea580c;
}

.listings-filters__map-row .site-hero__map-trigger:hover {
  color: #c2410c;
}

.listings-filters__map-row .site-hero__map-trigger:focus-visible {
  outline-color: rgba(234, 88, 12, 0.45);
}

.listings-map-modal .site-hero-map-modal__radius-value {
  color: #ea580c;
}

.listings-map-modal .site-hero-map-modal__range {
  background: linear-gradient(
    90deg,
    #ea580c 0%,
    #f97316 var(--range-pct, 1.35%),
    #e2e8f0 var(--range-pct, 1.35%),
    #e2e8f0 100%
  );
}

.listings-map-modal .site-hero-map-modal__range::-moz-range-progress {
  background: linear-gradient(90deg, #ea580c, #f97316);
}

.listings-filters__actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.listings-filters__submit.site-hero__submit {
  width: 100%;
  border-radius: 0.5rem;
  margin: 0;
}

.listings-filters__reset {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  padding: 0.25rem;
}

.listings-filters__reset:hover {
  color: #3459e6;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.listing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.15s, box-shadow 0.15s;
}

.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  color: inherit;
}

.listing-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  overflow: hidden;
}

.listing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #94a3b8;
  font-size: 2rem;
}

.listing-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.listing-card__badge--type {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.listing-card__body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.listing-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.listing-card__sqm,
.item-detail__sqm {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ea580c;
}

.listing-card__sqm {
  margin-top: 0.1rem;
}

.item-detail__sqm {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.listing-card__price,
.item-detail__price {
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
}

.listing-card__price {
  margin-top: 0.1rem;
}

.item-detail__price {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.it-quill-editor {
  background: #fff;
}

.it-quill-editor .ql-editor {
  min-height: 10rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.it-quill-editor .ql-toolbar {
  border-radius: 0.375rem 0.375rem 0 0;
}

.it-quill-editor .ql-container {
  border-radius: 0 0 0.375rem 0.375rem;
}

.item-detail__description-block {
  margin-bottom: 1.5rem;
}

.item-detail__description-body {
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.item-detail__description-body p:last-child {
  margin-bottom: 0;
}

.item-detail__description-body h2,
.item-detail__description-body h3 {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
}

.item-detail__description-body ul,
.item-detail__description-body ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.item-detail__description-body a {
  color: #ea580c;
}

.listing-card__location {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.listings-page__results--loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.listings-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
}

.listings-empty__icon {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.listings-empty__title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.listings-empty__hint {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .listings-page__layout {
    grid-template-columns: 1fr;
  }

  .listings-filters {
    position: static;
  }
}

/* Static site pages (contact, terms, privacy) */
.page-contact,
.page-terms,
.page-privacy {
  background: #fff;
}

.site-page__container {
  max-width: 1100px;
}

.site-page__crumbs {
  margin-bottom: 1rem;
}

.site-page__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.site-page__crumbs-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.4rem;
  color: #94a3b8;
}

.site-page__crumbs-list a {
  color: #64748b;
  text-decoration: none;
}

.site-page__crumbs-list a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.site-page__header {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.site-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.site-page__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #334155;
}

.site-page__header--contact {
  margin-bottom: 1.5rem;
}

.site-page__contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .site-page__contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
    gap: 2.5rem;
  }

  .site-page__contact-aside .item-contact-panel {
    position: sticky;
    top: 1.25rem;
  }
}

.site-page__contact-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-page__address {
  padding: 0.15rem 0;
}

.site-page__map-section {
  min-width: 0;
}

.site-page__map-heading {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.site-page__map {
  width: 100%;
}

.site-page__info-card {
  padding: 1.25rem 1.15rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.site-page__info-heading {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
}

.site-page__info-text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #475569;
}

.site-page__info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-page__info-item {
  margin: 0;
}

.site-page__info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.site-page__info-link:hover {
  color: #ea580c;
}

.site-page__info-link .bi {
  color: #ea580c;
}

.site-page__info-hours {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.45;
}

.site-page__info-hours .bi {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #94a3b8;
}

.site-page__contact-form-wrap .item-contact-panel__card {
  margin: 0;
}

.site-page__prose {
  max-width: 48rem;
}

.site-page__section + .site-page__section {
  margin-top: 1.75rem;
}

.site-page__section-title {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.site-page__section-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
}

.site-page__section-body p {
  margin: 0 0 0.85rem;
}

.site-page__section-body p:last-child {
  margin-bottom: 0;
}

.site-page__updated {
  margin: 2.5rem 0 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}
