body {
  overflow-y: scroll;
}

:root {
  --Adonis-page-bg: #121212;
  --Adonis-gold: #c79952;
  --Adonis-gold-soft: #f0d193;
  --Adonis-gold-deep: #8c6431;
}

#app,
#app-view {
  background-color: var(--Adonis-page-bg);
}

#app-view[data-route] > section:not(.fixed) {
  background-color: var(--Adonis-page-bg) !important;
}

#app-view { animation: none; }

#app-view.route-transition-out {
  opacity: 1;
  transform: none;
  transition: none;
}

#app-view.route-transition-in {
  animation: appRouteFadeIn 120ms ease-out;
}

@keyframes appRouteFadeIn {
  from {
    opacity: 0.94;
    transform: none;
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@supports (view-transition-name: adonis-route-root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }

  #site-header {
    view-transition-name: none;
  }

  #app-view {
    view-transition-name: adonis-route-root;
  }

  ::view-transition-old(adonis-route-root) {
    animation: appRouteViewOld 170ms ease;
  }

  ::view-transition-new(adonis-route-root) {
    animation: appRouteViewNew 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@keyframes appRouteViewOld {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes appRouteViewNew {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#app-view[data-route="admin"] {
  animation: none;
}

#site-header {
  top: 0;
  left: 0;
  right: 0;
  height: 104px;
  --header-cta-height: 40px;
  z-index: 120;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: none !important;
  will-change: top, height, background-color, border-color;
}

#site-header.no-entrance-transition {
  transition: none !important;
}

body.has-admin-strip #site-header {
  top: 34px;
}

body:not(.has-admin-strip) #site-header {
  top: 0 !important;
}

#site-header.is-scrolled {
  height: 104px;
  background: rgba(12, 12, 14, .62);
  border-bottom: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

#app[data-route]:not([data-route="landing"]) #site-header {
  height: 104px;
  background: rgba(12, 12, 14, .62);
  border-bottom: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: none !important;
}

#site-header.is-scrolled .nav-link,
#app[data-route]:not([data-route="landing"]) #site-header .nav-link {
  color: rgba(255,255,255,.92);
}

#site-header .header-account-btn,
#site-header .ignity-btn,
#site-header nav .nav-link {
  height: var(--header-cta-height);
  min-height: var(--header-cta-height);
  border-radius: 0 !important;
}

#site-header .header-account-btn,
#site-header .ignity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#site-header nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  padding: 0 1.12rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  isolation: isolate;
  transition: color 180ms ease;
}

#site-header nav .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0;
  transition: opacity 180ms ease, border-color 180ms ease;
  pointer-events: none;
  z-index: -1;
}

#site-header nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 0;
  background: var(--Adonis-gold);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease, opacity 180ms ease;
  pointer-events: none;
}

#site-header nav .nav-link:hover,
#site-header nav .nav-link:focus-visible {
  color: #fff;
  outline: none;
}

#site-header nav .nav-link:not(.is-active):hover::before,
#site-header nav .nav-link:not(.is-active):focus-visible::before {
  opacity: 0;
  border-color: transparent;
}

#site-header nav .nav-link:hover::after,
#site-header nav .nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

#site-header nav .nav-link.is-active {
  color: var(--Adonis-gold) !important;
}

#site-header nav .nav-link.is-active:hover,
#site-header nav .nav-link.is-active:focus-visible {
  color: var(--Adonis-gold) !important;
}

#site-header nav .nav-link.is-active::before {
  opacity: 1;
  border-color: var(--Adonis-gold);
}

#site-header nav .nav-link.is-active::after {
  background: var(--Adonis-gold);
  opacity: 0;
  transform: scaleX(0);
}

#site-header nav .nav-link.is-active:hover::after,
#site-header nav .nav-link.is-active:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

#site-header .max-w-\[1526px\] {
  column-gap: 0.75rem;
}

#site-header .header-brand {
  min-width: 0;
  flex-shrink: 1;
}

#site-header .header-brand-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

#site-header .header-brand-word {
  line-height: 1;
  white-space: nowrap;
}

.mobile-nav-brand-logo {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

.landing-hero-content {
  width: min(92vw, 980px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing-hero-logo {
  display: block;
  width: clamp(220px, 48vw, 640px);
  max-width: 100%;
  max-height: min(44vh, 430px);
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 8px 34px rgba(0, 0, 0, 0.45));
}

@media (max-height: 820px) {
  #app-view[data-route="landing"] .landing-hero-logo {
    max-height: min(36vh, 340px);
  }
}

@media (max-height: 700px) {
  #app-view[data-route="landing"] .landing-hero-logo {
    max-height: min(30vh, 270px);
  }
}

#nav-mega-menu .mega-menu-panel,
#nav-mega-menu .mega-menu-footer {
  background: var(--Adonis-page-bg);
}

#nav-mega-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-featured-card {
  position: relative;
  overflow: hidden;
}

.mega-featured-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0) 0%, rgba(7, 8, 12, 0.88) 100%);
}

.mega-featured-meta {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
}

.mega-featured-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: #A57A3D;
  color: #fff;
  padding: 0.25rem 0.5rem;
}

.mega-featured-name {
  margin-top: 0.42rem;
  font-size: clamp(1.3rem, 1.85vw, 1.9rem);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
}

.mega-featured-role {
  margin-top: 0.18rem;
  font-size: 0.76rem;
  line-height: 1.2;
  color: rgba(229, 231, 235, 0.88);
}

.mega-promo-title {
  font-size: clamp(1.9rem, 2.25vw, 2.55rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.mega-promo-price {
  font-size: clamp(1.9rem, 2.05vw, 2.35rem);
  line-height: 1;
  font-weight: 800;
}

.header-mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 8px;
  outline: 0;
  box-shadow: none;
}

.header-mobile-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
}

.header-desktop-nav {
  display: flex;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.mobile-nav-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

.mobile-nav-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.995), rgba(10, 10, 16, 0.995));
  padding: 2.3rem 2.2rem 2.1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.1rem;
  overflow-y: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-nav-links {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.mobile-nav-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
}

.mobile-nav-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

@media (max-width: 1024px) {
  body:not(.has-admin-strip) #site-header,
  body[data-route="landing"] #site-header,
  body[data-route]:not([data-route="landing"]) #site-header {
    top: 0 !important;
  }

  .header-mobile-toggle {
    display: inline-flex !important;
  }

  .header-desktop-nav {
    display: none !important;
  }

  .mobile-nav-overlay {
    display: block;
  }
}

@media (min-width: 1025px) {
  .header-mobile-toggle {
    display: none !important;
  }

  .mobile-nav-overlay,
  .mobile-nav-overlay.open {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(8,8,10,.52), rgba(8,8,10,.86));
}

img.media-lazy {
  opacity: 0.01;
  transition: opacity 180ms ease;
}

img.media-lazy.is-loaded {
  opacity: 1;
}

.hero-bg-image {
  filter: grayscale(1) saturate(0) contrast(0.9) brightness(0.62) !important;
}

.tips-rotator-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tips-rotator-shell {
  background: var(--Adonis-page-bg) !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  min-height: 430px;
}

.tips-rotator-shell [data-tip-active="true"],
.tips-rotator-shell .grid > div:first-child {
  background-color: rgba(255, 255, 255, 0.03) !important;
}

.tips-rotator-shell .grid {
  align-items: stretch;
}

.tips-rotator-media,
.tips-rotator-content {
  min-height: 280px;
}

.tips-rotator-content {
  display: flex;
  flex-direction: column;
}

.tips-rotator-cta-slot {
  margin-top: 1.5rem;
  min-height: 46px;
  display: flex;
  align-items: flex-start;
}

.tips-rotator-cta-placeholder {
  display: inline-flex;
  width: 1px;
  height: 46px;
  opacity: 0;
  pointer-events: none;
}

.tips-rotator-controls {
  display: flex;
  gap: 0.4rem;
}

.tips-rotator-controls .ignity-btn-outline {
  width: 64px;
  min-width: 64px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
}

.tips-rotator-image-fallback {
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(165,122,61, 0.14), rgba(255, 255, 255, 0.02));
}

.tips-rotator-image-fallback span {
  color: rgba(165,122,61, 0.95);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.tips-rotator-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(165,122,61, 0.65);
  background: rgba(165,122,61, 0.12);
  color: #A57A3D;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.calendar-grid-hour {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: absolute;
  width: 100%;
}

.calendar-appt-item {
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.calendar-appt-item.is-calendar-dragging {
  cursor: grabbing;
  z-index: 30;
  opacity: 0.96;
}

.calendar-appt-item.is-calendar-resizing {
  z-index: 30;
}

.admin-calendar-time-tooltip {
  position: fixed;
  z-index: 140;
  pointer-events: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(165,122,61, 0.45);
  background: rgba(10, 10, 14, 0.92);
  color: rgba(255, 255, 255, 0.98);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 120ms ease, transform 120ms ease;
}

.admin-calendar-time-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.booking-pill.active {
  border-color: #A57A3D;
  box-shadow: 0 0 0 1px #A57A3D inset;
  background: rgba(165,122,61, 0.16);
}

#app-view[data-cms-edit-mode="1"] [data-editable="true"] {
  cursor: pointer !important;
  outline: 1px dashed rgba(165, 122, 61, 0.68);
  outline-offset: 3px;
  transition: outline-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

#app-view[data-cms-edit-mode="1"] [data-editable="true"]:hover {
  outline-color: rgba(255, 201, 120, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 201, 120, 0.4);
  background-color: rgba(165, 122, 61, 0.08);
}

#app-view[data-cms-edit-mode="1"] .cms-live-text-target,
#app-view[data-cms-edit-mode="1"] .cms-live-link-target,
#app-view[data-cms-edit-mode="1"] .cms-live-image-target,
#app-view[data-cms-edit-mode="1"] .cms-live-gallery-target,
#app-view[data-cms-edit-mode="1"] .cms-live-module-target {
  position: relative;
}

#app-view[data-cms-edit-mode="1"] .cms-live-text-target::after,
#app-view[data-cms-edit-mode="1"] .cms-live-link-target::after,
#app-view[data-cms-edit-mode="1"] .cms-live-image-target::after,
#app-view[data-cms-edit-mode="1"] .cms-live-gallery-target::after,
#app-view[data-cms-edit-mode="1"] .cms-live-module-target::after {
  content: 'edit';
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 201, 120, 0.7);
  background: rgba(8, 8, 10, 0.95);
  color: rgba(255, 201, 120, 0.98);
  padding: 4px 6px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(2px);
  pointer-events: none;
  transition: opacity 120ms ease, transform 120ms ease;
}

#app-view[data-cms-edit-mode="1"] .cms-live-text-target:hover::after,
#app-view[data-cms-edit-mode="1"] .cms-live-link-target:hover::after,
#app-view[data-cms-edit-mode="1"] .cms-live-image-target:hover::after,
#app-view[data-cms-edit-mode="1"] .cms-live-gallery-target:hover::after,
#app-view[data-cms-edit-mode="1"] .cms-live-module-target:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.cms-editor-input,
.cms-editor-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f3f4f6;
  padding: 0.72rem 0.84rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.cms-editor-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.45;
}

.cms-editor-input:focus,
.cms-editor-textarea:focus {
  border-color: rgba(255, 201, 120, 0.9);
  box-shadow: 0 0 0 2px rgba(255, 201, 120, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.cms-gallery-modal-shell {
  position: relative;
}

.cms-gallery-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 0.75rem;
}

.cms-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  align-content: start;
  padding-right: 0.25rem;
}

.cms-gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  touch-action: manipulation;
  transition: border-color 120ms ease, box-shadow 120ms ease, opacity 120ms ease, transform 120ms ease;
}

.cms-gallery-card.is-highlighted {
  border-color: rgba(255, 201, 120, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 201, 120, 0.34);
}

.cms-gallery-card.is-dragging {
  opacity: 0.35;
  transform: scale(0.99);
}

.cms-gallery-card.is-drop-target {
  border-color: rgba(255, 201, 120, 0.92);
  box-shadow: 0 0 0 2px rgba(255, 201, 120, 0.34);
}

.cms-gallery-thumb-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
}

.cms-gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cms-gallery-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cms-gallery-position {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(156, 163, 175, 0.95);
  font-weight: 800;
}

.cms-gallery-card-actions {
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cms-gallery-card-actions .ignity-btn-outline {
  min-height: 28px;
}

.cms-gallery-drag-hint {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(115, 115, 115, 0.95);
}

.cms-gallery-close-floating {
  position: fixed;
  top: 0.95rem;
  right: 1.05rem;
  z-index: 232;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  color: #f3f4f6;
  font-weight: 800;
  font-size: 0.82rem;
  width: 36px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  transition: border-color 120ms ease, background-color 120ms ease;
}

.cms-gallery-close-floating:hover {
  border-color: rgba(255, 201, 120, 0.85);
  background: rgba(0, 0, 0, 0.78);
}

@media (max-width: 980px) {
  .cms-gallery-toolbar {
    grid-template-columns: 1fr;
  }
}

.portfolio-lightbox {
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: portfolioLightboxFadeIn 140ms ease-out;
}

.portfolio-lightbox-frame {
  width: min(96vw, 1280px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.portfolio-lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: scale(0.992);
  transition: opacity 120ms ease, transform 120ms ease;
}

.portfolio-lightbox-image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.portfolio-lightbox-caption {
  color: rgba(229, 231, 235, 0.95);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.portfolio-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: #f3f4f6;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  padding: 0.48rem 0.7rem;
  transition: border-color 120ms ease, background-color 120ms ease;
}

.portfolio-lightbox-close:hover {
  border-color: rgba(255, 201, 120, 0.75);
  background: rgba(0, 0, 0, 0.72);
}

@keyframes portfolioLightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

#app-view[data-route="portfolio"] > section,
#app-view[data-route="kontakt"] > section,
#app-view[data-route="uslugi"] > section,
#app-view[data-route="vouchery"] > section,
#app-view[data-route="promocje"] > section,
#app-view[data-route="problem"] > section,
#app-view[data-route="rezerwuj"] > section:not(.fixed),
#app-view[data-route="admin"] > section,
#app-view[data-route="konto"] > section {
  padding-top: 11rem !important;
}

#app-view .text-7xl,
#app-view .text-6xl,
#app-view .text-5xl,
#app-view .text-4xl,
#app-view .text-3xl,
#app-view .text-2xl,
#app-view .text-xl {
  line-height: 1.1;
}

#app-view h1,
#app-view h2,
#app-view h3,
#app-view p {
  font-family: 'Poppins', sans-serif !important;
}

#app-view h1 {
  font-size: clamp(3.25rem, 8vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

#app-view h2 {
  font-size: 2.625rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

#app-view h3 {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

#app-view p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
}

#app-view .text-xl { font-size: 1.25rem !important; }
#app-view .text-2xl { font-size: 1.5rem !important; }
#app-view .text-3xl { font-size: 1.875rem !important; }
#app-view .text-4xl { font-size: 2.25rem !important; }
#app-view .text-5xl { font-size: 3rem !important; }
#app-view .text-6xl { font-size: 3.75rem !important; }
#app-view .text-7xl { font-size: 4.5rem !important; }
#app-view .text-9xl { font-size: 6rem !important; }
#app-view .text-12xl { font-size: 10rem !important; }

#app-view .text-lg { font-size: 1.125rem; }
#app-view .text-base { font-size: 1rem; }
#app-view .text-sm { font-size: 0.875rem; }
#app-view .text-xs { font-size: 0.75rem; }

#app-view .ignity-btn,
#app-view .ignity-btn-outline {
  font-size: 14px;
}

#app-view[data-route="landing"] h2 {
  font-size: 3rem !important;
}

#app-view[data-route="landing"] h1 {
  line-height: 0.82 !important;
}

#app-view[data-route="landing"] .landing-hero-title {
  font-size: clamp(3.9rem, 9.6vw, 12rem) !important;
}

#app-view[data-route="landing"] h1 > span + span {
  margin-top: -0.08em;
}

#app-view[data-route="portfolio"] h2,
#app-view[data-route="kontakt"] h2,
#app-view[data-route="uslugi"] h2,
#app-view[data-route="vouchery"] h2,
#app-view[data-route="promocje"] h2 {
  font-size: 42px !important;
}

@media (min-width: 768px) {
  #app-view .md\:text-9xl,
  #app-view .md\:text-7xl,
  #app-view .md\:text-3xl,
  #app-view .md\:text-2xl,
  #app-view .md\:text-lg {
    line-height: 1.1;
  }

  #app-view .md\:text-lg { font-size: 1.125rem !important; }
  #app-view .md\:text-2xl { font-size: 1.5rem !important; }
  #app-view .md\:text-3xl { font-size: 1.875rem !important; }
  #app-view .md\:text-7xl { font-size: 4.5rem !important; }
  #app-view .md\:text-9xl { font-size: 6rem !important; }
}

@media (min-width: 1024px) {
  #app-view .lg\:text-12xl,
  #app-view .lg\:text-3xl {
    line-height: 1.1;
  }

  #app-view .lg\:text-3xl { font-size: 1.875rem !important; }
  #app-view .lg\:text-12xl { font-size: 10rem !important; }
}

.cms-edit-toggle {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 140;
}

.booking-track-line {
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  z-index: 0;
}

.booking-progress-line {
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 190, 84, 0.95) 0%, rgba(255, 221, 136, 1) 55%, rgba(255, 190, 84, 0.95) 100%);
  box-shadow: 0 0 10px rgba(255, 190, 84, 0.55), 0 0 24px rgba(255, 176, 66, 0.3);
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1), left 260ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.booking-progress-line-no-transition {
  transition: none !important;
}

#app-view[data-route="rezerwuj"] .booking-steps-wrap {
  isolation: isolate;
}

#app-view[data-route="rezerwuj"] .booking-steps-grid {
  z-index: 1;
}

#app-view[data-route="rezerwuj"] .booking-step-btn {
  position: relative;
  z-index: 2;
  background-color: #090c12 !important;
  background-image: none !important;
  background-clip: padding-box;
}

.admin-textarea-tall {
  min-height: 180px;
}

#app-view .ignity-btn,
#app-view .ignity-btn-outline {
  min-height: 46px;
  box-sizing: border-box;
}

.admin-appointments-actions .ignity-btn-outline {
  min-width: 148px;
}

.admin-appointments-row-actions .ignity-btn-outline {
  min-width: 86px;
  min-height: 36px;
}

#app-view[data-route="landing"] .landing-section-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
  font-weight: 700 !important;
}

#app-view[data-route="landing"] .landing-hero-cta-row {
  align-items: stretch;
}

#app-view[data-route="landing"] .landing-hero-cta {
  min-width: 220px;
  justify-content: center;
}

#app-view[data-route="landing"] .landing-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#app-view[data-route="landing"] .landing-team-grid {
  align-items: stretch;
}

#app-view[data-route="landing"] .landing-team-card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  min-height: 4.75rem;
  padding-top: 1.5rem;
}

#app-view[data-route="landing"] .landing-team-cta {
  align-self: flex-start;
  width: 100%;
  max-width: 230px;
  height: 48px !important;
  min-height: 48px !important;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}

#app-view[data-route="kontakt"] .subpage-title-balanced,
#app-view[data-route="kontakt"] .subpage-heading-balanced {
  font-weight: 700 !important;
  letter-spacing: -0.015em;
}

#app-view[data-route="kontakt"] .contact-top-grid {
  align-items: stretch;
}

#app-view[data-route="kontakt"] .contact-top-grid > * {
  min-height: 100%;
}

#app-view[data-route="kontakt"] .contact-primary-card,
#app-view[data-route="kontakt"] .contact-hours-card,
#app-view[data-route="kontakt"] .contact-info-tile {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

#app-view[data-route="kontakt"] .contact-primary-card,
#app-view[data-route="kontakt"] .contact-hours-card {
  height: 100%;
}

#app-view[data-route="kontakt"] .contact-hours-card {
  display: flex;
  flex-direction: column;
}

#app-view[data-route="kontakt"] .contact-info-tile {
  background: rgba(255, 255, 255, 0.03);
}

#app-view[data-route="kontakt"] .contact-info-value {
  color: #fff;
  line-height: 1.35;
}

#app-view[data-route="kontakt"] .contact-info-value-phone {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 600;
}

#app-view[data-route="kontakt"] .contact-info-value-address {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 500;
}

#app-view[data-route="kontakt"] .contact-info-tile:hover {
  border-color: rgba(165,122,61, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

#app-view[data-route="kontakt"] .contact-primary-card p,
#app-view[data-route="kontakt"] .contact-booking-module p,
#app-view[data-route="kontakt"] .contact-hours-card {
  line-height: 1.75;
}

#app-view[data-route="kontakt"] .contact-availability-widget {
  border-color: rgba(255, 255, 255, 0.14);
}

#app-view[data-route="kontakt"] .contact-availability-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

#app-view[data-route="kontakt"] .contact-booking-module {
  margin-top: auto;
}

#app-view[data-route="kontakt"] .contact-booking-actions {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

#app-view[data-route="kontakt"] .contact-booking-action {
  width: 100%;
  min-height: 48px !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}

#app-view[data-route="kontakt"] .contact-hours-list {
  display: grid;
  gap: 1.05rem;
}

#app-view[data-route="kontakt"] .contact-hours-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #8a8f9f;
  font-weight: 700;
}

#app-view[data-route="kontakt"] .contact-hours-value {
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.35;
}

#app-view[data-route="kontakt"] .contact-hours-phone {
  letter-spacing: 0.01em;
}

#app-view[data-route="kontakt"] .contact-location-preview {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 320px;
}

#app-view[data-route="kontakt"] .contact-location-frame {
  border-color: rgba(255, 255, 255, 0.1);
  height: 100%;
  min-height: 300px;
}

#app-view[data-route="kontakt"] .contact-location-frame iframe {
  filter: none;
  opacity: 1;
}

#app-view[data-route="rezerwuj"] .booking-step-label-short {
  display: none;
}

#app-view[data-route="rezerwuj"] .booking-sticky-footer {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

#app-view[data-route="rezerwuj"] .booking-sticky-inner {
  align-items: center;
}

#app-view[data-route="rezerwuj"] .booking-sticky-stats {
  min-width: 0;
}

#app-view[data-route="rezerwuj"] .booking-sticky-stat {
  min-width: 0;
}

#app-view[data-route="rezerwuj"] .booking-sticky-actions {
  flex-shrink: 0;
}

#app-view[data-route="rezerwuj"] .booking-sticky-actions .ignity-btn,
#app-view[data-route="rezerwuj"] .booking-sticky-actions .ignity-btn-outline {
  min-width: 118px;
}

#app-view[data-route="rezerwuj"] .booking-barber-card-image {
  height: min(520px, 62vh);
}

#app-view[data-route="rezerwuj"] .booking-barber-selected-badge {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 120, 0.82);
  background: rgba(10, 10, 14, 0.76);
  color: rgba(255, 201, 120, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 201, 120, 0.2) inset;
  pointer-events: none;
}

#app-view[data-route="rezerwuj"] .booking-barber-selected-badge svg {
  width: 1.24rem;
  height: 1.24rem;
  display: block;
}

#app-view[data-route="admin"] .admin-sidebar-overlay {
  display: none;
}

#app-view[data-route="admin"] .admin-sidebar-close,
#app-view[data-route="admin"] .admin-sidebar-toggle {
  display: none;
}

#app-view[data-route="admin"] .admin-main-content .overflow-auto {
  max-width: 100%;
}

#app-view[data-route="admin"] .admin-appointments-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

#app-view[data-route="admin"] .admin-appointments-table-wrap {
  max-width: 100%;
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: visible;
}

#app-view[data-route="admin"] .admin-main-content table {
  min-width: 760px;
}

#app-view[data-route="admin"] .admin-main-content .text-5xl {
  line-height: 1.02;
}

#app-view[data-route="admin"] .admin-main-header {
  gap: 0.45rem;
}

#app-view[data-route="admin"] .admin-main-title {
  letter-spacing: -0.01em;
}

#app-view[data-route="admin"] .admin-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

#app-view[data-route="admin"] .admin-calendar-date-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

#app-view[data-route="admin"] .admin-calendar-date-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

#app-view[data-route="admin"] .admin-calendar-nav-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.14s ease, color 0.14s ease;
}

#app-view[data-route="admin"] .admin-calendar-nav-btn:hover,
#app-view[data-route="admin"] .admin-calendar-nav-btn:focus-visible {
  background: rgba(165,122,61, 0.18);
  color: #fff;
  outline: none;
}

#app-view[data-route="admin"] .admin-calendar-date-input {
  width: 190px;
  min-width: 190px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 0.9rem;
  box-shadow: none;
}

#app-view[data-route="admin"] .admin-calendar-date-input:focus {
  border: 0;
  box-shadow: 0 0 0 2px rgba(165,122,61, 0.25);
}

#app-view[data-route="admin"] .admin-calendar-date-input::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.85);
  cursor: pointer;
}

#app-view[data-route="admin"] .admin-calendar-create-btn {
  min-width: 210px;
  height: 44px;
  min-height: 44px !important;
}

#app-view[data-route="admin"] .admin-sidebar-toggle {
  min-width: 30px;
  min-height: 30px !important;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 1rem;
}

#app-view[data-route="admin"] .admin-sidebar-close {
  min-width: 34px;
  min-height: 34px !important;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

#app-view[data-route="admin"] .admin-appointments-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#app-view[data-route="admin"] .admin-appointments-row td {
  vertical-align: middle;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

#app-view[data-route="admin"] .admin-appointments-row td:first-child {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

#app-view[data-route="admin"] .admin-appointments-row .admin-select-compact {
  min-height: 34px;
  margin: 0;
}

#app-view[data-route="admin"] .admin-appointments-row .admin-appt-actions-dropdown {
  display: flex;
  align-items: center;
  min-height: 34px;
}

#app-view[data-route="admin"] .admin-appt-actions-dropdown {
  position: relative;
}

#app-view[data-route="admin"] .admin-appt-actions-trigger {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

#app-view[data-route="admin"] .admin-appt-actions-trigger::-webkit-details-marker {
  display: none;
}

#app-view[data-route="admin"] .admin-appt-actions-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 148px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 16, 0.97);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  display: grid;
  z-index: 40;
}

#app-view[data-route="admin"] .admin-appt-actions-item {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #f4f4f5;
  text-align: left;
  padding: 0.58rem 0.7rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#app-view[data-route="admin"] .admin-appt-actions-item:last-child {
  border-bottom: 0;
}

#app-view[data-route="admin"] .admin-appt-actions-item-danger {
  color: #fda4af;
}

#app-view[data-route="admin"] .admin-appt-actions-item:disabled {
  opacity: 0.55;
}

#app-view[data-route="admin"] .finance-export-actions,
#app-view[data-route="admin"] .finance-filter-grid {
  min-width: 0;
}

#app-view[data-route="admin"] .gallery-add-row #gallery-image-add {
  width: 100%;
}

#app-view[data-route="admin"] .admin-cms-title {
  line-height: 1.04;
}

@media (max-width: 640px) {
  .cms-edit-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  #app-view[data-route="landing"] .landing-hero-cta {
    width: 100%;
    min-width: 0;
  }

  #app-view[data-route="landing"] .landing-team-card-footer {
    min-height: 4.25rem;
    padding-top: 1.15rem;
  }

  #app-view[data-route="landing"] .landing-team-cta {
    width: 100%;
    max-width: none;
    height: 46px;
    min-height: 46px !important;
  }

  #app-view[data-route="rezerwuj"] .booking-page-shell > .max-w-\[1526px\] {
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }

  #app-view[data-route="rezerwuj"] .booking-steps-wrap {
    margin-bottom: 1.5rem;
  }

  #app-view[data-route="rezerwuj"] .booking-track-line,
  #app-view[data-route="rezerwuj"] .booking-progress-line {
    top: 1.25rem !important;
  }

  #app-view[data-route="rezerwuj"] .booking-steps-grid {
    gap: 0.5rem;
  }

  #app-view[data-route="rezerwuj"] .booking-step-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  #app-view[data-route="rezerwuj"] .booking-step-label {
    margin-top: 0.5rem;
    font-size: 0.56rem !important;
    letter-spacing: 0.06em !important;
    line-height: 1.2;
    min-height: 2.35em;
  }

  #app-view[data-route="rezerwuj"] .booking-step-label-full {
    display: none;
  }

  #app-view[data-route="rezerwuj"] .booking-step-label-short {
    display: inline;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-top: 0.45rem;
    padding-bottom: 0.55rem;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
    align-items: start;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-stat {
    padding-right: 0 !important;
    border-right: 0 !important;
    text-align: center;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-stat > div:first-child {
    font-size: 0.44rem;
    letter-spacing: 0.08em;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-stat > div:last-child {
    font-size: 1rem;
    line-height: 1.1;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.45rem;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-actions .ignity-btn,
  #app-view[data-route="rezerwuj"] .booking-sticky-actions .ignity-btn-outline {
    min-width: 0;
    width: 100%;
    min-height: 42px !important;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    font-size: 0.78rem !important;
    letter-spacing: 0.05em;
  }

  #app-view[data-route="rezerwuj"] .booking-barber-card-image {
    height: 420px;
  }

  #app-view[data-route="admin"] .admin-main-title {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 1024px) {
  #site-header,
  #site-header.is-scrolled,
  #app[data-route]:not([data-route="landing"]) #site-header {
    height: 92px;
  }

  #app-view[data-route="portfolio"] > section,
  #app-view[data-route="kontakt"] > section,
  #app-view[data-route="uslugi"] > section,
  #app-view[data-route="vouchery"] > section,
  #app-view[data-route="promocje"] > section,
  #app-view[data-route="problem"] > section,
  #app-view[data-route="rezerwuj"] > section:not(.fixed),
  #app-view[data-route="admin"] > section,
  #app-view[data-route="konto"] > section {
    padding-top: 9.25rem !important;
  }

  #app-view[data-route="landing"] .max-w-\[1526px\] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  #app-view[data-route="landing"] .py-24 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  #app-view[data-route="landing"] .py-20 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  #app-view[data-route="landing"] .landing-section-title {
    font-size: clamp(1.9rem, 4.8vw, 2.45rem) !important;
    line-height: 1.1 !important;
  }

  #app-view[data-route="landing"] h1 {
    font-size: clamp(2.5rem, 9vw, 5.5rem) !important;
    line-height: 0.9 !important;
  }

  #app-view[data-route="landing"] .landing-hero-logo {
    width: min(78vw, 560px);
    max-height: 36vh;
  }

  #app-view[data-route="landing"] .landing-hero-title {
    font-size: clamp(3rem, 10.8vw, 6.6rem) !important;
  }

  #app-view[data-route="landing"] .tracking-\[0\.5em\] {
    letter-spacing: 0.32em;
  }

  #app-view[data-route="admin"] .admin-main-content {
    padding: 1.1rem !important;
  }

  #app-view[data-route="admin"] .admin-main-content .text-5xl {
    font-size: 2rem !important;
  }

  #app-view[data-route="admin"] .admin-main-date {
    font-size: 0.75rem;
  }

  #app-view[data-route="admin"] .admin-panel-card {
    padding: 1rem;
  }

  #app-view[data-route="admin"] .finance-export-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  #app-view[data-route="admin"] .finance-filter-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  #app-view[data-route="admin"] .finance-filter-grid > :nth-child(3),
  #app-view[data-route="admin"] .finance-filter-grid > :nth-child(4),
  #app-view[data-route="admin"] .finance-filter-grid > :nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  #app-view[data-route="portfolio"] > section,
  #app-view[data-route="kontakt"] > section,
  #app-view[data-route="uslugi"] > section,
  #app-view[data-route="vouchery"] > section,
  #app-view[data-route="promocje"] > section,
  #app-view[data-route="problem"] > section,
  #app-view[data-route="rezerwuj"] > section:not(.fixed),
  #app-view[data-route="admin"] > section,
  #app-view[data-route="konto"] > section {
    padding-top: 8.5rem !important;
  }

  #app-view[data-route="landing"] .max-w-\[1526px\] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #app-view[data-route="landing"] .py-24 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  #app-view[data-route="landing"] .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #app-view[data-route="landing"] .landing-section-title {
    font-size: clamp(1.6rem, 7.2vw, 2rem) !important;
    line-height: 1.12 !important;
  }

  #app-view[data-route="landing"] h1 {
    font-size: clamp(2rem, 12vw, 3.4rem) !important;
    line-height: 0.94 !important;
  }

  #app-view[data-route="landing"] .landing-hero-title {
    font-size: clamp(2.4rem, 14.4vw, 4.08rem) !important;
  }

  #app-view[data-route="landing"] .landing-hero-content {
    width: min(94vw, 760px);
  }

  #app-view[data-route="landing"] .landing-hero-logo {
    width: min(84vw, 460px);
    max-height: 32vh;
  }

  #app-view[data-route="landing"] .text-sm.md\:text-lg {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }

  #app-view[data-route="landing"] .tracking-\[0\.5em\] {
    letter-spacing: 0.24em;
  }

  #app-view[data-route="rezerwuj"] .booking-barber-grid {
    gap: 1rem;
  }

  #app-view[data-route="rezerwuj"] .booking-barber-card-image {
    height: 440px;
  }

  #app-view[data-route="rezerwuj"] .booking-page-shell {
    padding-bottom: 13.5rem !important;
  }

  #app-view[data-route="landing"] .tracking-\[0\.32em\] {
    letter-spacing: 0.2em;
  }

  #app-view[data-route="landing"] .tracking-\[0\.3em\] {
    letter-spacing: 0.18em;
  }

  #app-view[data-route="landing"] .tracking-\[0\.28em\] {
    letter-spacing: 0.16em;
  }

  #app-view[data-route="landing"] .tracking-widest {
    letter-spacing: 0.14em;
  }

  #app-view[data-route="kontakt"] .contact-page-shell .max-w-\[1526px\] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #app-view[data-route="kontakt"] .contact-page-shell .glass-panel,
  #app-view[data-route="kontakt"] .contact-page-shell .contact-hours-card {
    padding: 1.25rem !important;
  }

  #app-view[data-route="kontakt"] .contact-booking-actions {
    grid-template-columns: 1fr;
  }

  #app-view[data-route="kontakt"] .contact-booking-action {
    min-height: 46px !important;
    white-space: normal;
  }

  #app-view[data-route="kontakt"] .contact-hours-value {
    font-size: 1.05rem;
  }

  #app-view[data-route="kontakt"] .contact-location-frame {
    min-height: 220px;
    height: 220px;
  }

  #app-view[data-route="kontakt"] .subpage-title-balanced {
    line-height: 1.02 !important;
  }

  #app-view[data-route="kontakt"] .subpage-heading-balanced {
    line-height: 1.15;
  }

  #app-view[data-route="landing"] .text-xs.font-bold.uppercase {
    font-size: 0.68rem;
  }

  .admin-appointments-toolbar {
    align-items: stretch;
    gap: 0.75rem;
  }

  .admin-appointments-actions {
    width: 100%;
    justify-content: stretch;
  }

  .admin-appointments-actions .ignity-btn-outline {
    flex: 1 1 0;
    min-width: 0;
  }

  .admin-appointments-row-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
  }

  .admin-appointments-row-actions .ignity-btn-outline {
    width: 100%;
    min-width: 0;
  }

  .cms-edit-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 160;
  }

  body.has-admin-strip #site-header {
    top: 30px;
  }

  #app-view[data-route="admin"] > section {
    padding-top: 7.8rem !important;
  }

  #app-view[data-route="admin"] .admin-layout {
    display: block !important;
    min-height: 0;
  }

  #app-view[data-route="admin"] .admin-sidebar {
    position: fixed;
    top: 134px;
    left: 0;
    bottom: 0;
    width: min(84vw, 320px);
    transform: translateX(-105%);
    transition: transform 180ms ease;
    z-index: 150;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 12px 0 34px rgba(0, 0, 0, 0.45);
  }

  body.admin-sidebar-open #app-view[data-route="admin"] .admin-sidebar {
    transform: translateX(0);
  }

  #app-view[data-route="admin"] .admin-sidebar-overlay {
    position: fixed;
    inset: 134px 0 0 0;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    z-index: 140;
    transition: opacity 180ms ease;
  }

  body.admin-sidebar-open #app-view[data-route="admin"] .admin-sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  #app-view[data-route="admin"] .admin-sidebar-close,
  #app-view[data-route="admin"] .admin-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px !important;
    padding: 0 0.75rem;
  }

  #app-view[data-route="admin"] .admin-main-header {
    align-items: flex-start;
    gap: 0.75rem;
  }

  #app-view[data-route="admin"] .admin-main-title {
    font-size: 1.5rem !important;
    line-height: 1.08;
    max-width: 100%;
    word-break: break-word;
  }

  #app-view[data-route="admin"] .admin-main-date {
    display: none;
  }

  #app-view[data-route="admin"] .admin-main-content {
    padding: 0.85rem !important;
  }

  #app-view[data-route="admin"] .admin-main-content .admin-panel-card,
  #app-view[data-route="admin"] .admin-main-content .glass-panel,
  #app-view[data-route="admin"] .admin-main-content .border {
    min-width: 0;
  }

  #app-view[data-route="admin"] .admin-main-content .overflow-auto {
    overflow-x: auto;
  }

  #app-view[data-route="admin"] .admin-appointments-card {
    min-height: 420px;
  }

  #app-view[data-route="admin"] .admin-main-content table {
    min-width: 880px;
  }

  #app-view[data-route="admin"] .admin-appointments-table {
    min-width: 980px !important;
  }

  #app-view[data-route="admin"] .admin-appt-actions-panel {
    right: auto;
    left: 0;
  }

  #app-view[data-route="admin"] .finance-export-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  #app-view[data-route="admin"] .finance-export-actions .ignity-btn-outline {
    min-width: 0;
    width: 100%;
    font-size: 0.74rem !important;
    letter-spacing: 0.06em;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  #app-view[data-route="admin"] .finance-filter-grid {
    grid-template-columns: 1fr !important;
  }

  #app-view[data-route="admin"] .finance-filter-grid > * {
    grid-column: span 1 !important;
  }

  #app-view[data-route="admin"] .team-timeoff-range-grid,
  #app-view[data-route="admin"] .team-block-range-grid {
    grid-template-columns: 1fr;
  }

  #app-view[data-route="admin"] .team-timeoff-form .ignity-btn,
  #app-view[data-route="admin"] .team-block-form .ignity-btn {
    width: 100%;
  }

  #app-view[data-route="admin"] .admin-cms-title {
    font-size: 1.75rem !important;
  }

  #app-view[data-route="admin"] + .site-footer {
    display: none;
  }

  #app-view[data-route="admin"] .admin-main-content .grid {
    gap: 0.75rem;
  }

  #app-view[data-route="admin"] .admin-main-content .ignity-btn,
  #app-view[data-route="admin"] .admin-main-content .ignity-btn-outline,
  #app-view[data-route="admin"] .admin-main-content .ui-input-dark,
  #app-view[data-route="admin"] .admin-main-content .ui-input-dark-sm,
  #app-view[data-route="admin"] .admin-main-content .admin-input-dark,
  #app-view[data-route="admin"] .admin-main-content .admin-select-dark,
  #app-view[data-route="admin"] .admin-main-content .admin-textarea-dark {
    width: 100%;
  }

  #app-view[data-route="admin"] .admin-main-content .admin-sidebar-toggle {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px;
    min-height: 30px !important;
    height: 30px;
    padding: 0 !important;
  }

  #app-view[data-route="admin"] .admin-main-content .flex.items-center.justify-between {
    flex-wrap: wrap;
  }

  #app-view[data-route="admin"] .admin-calendar-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  #app-view[data-route="admin"] .admin-calendar-date-label {
    white-space: normal;
    text-align: left;
  }

  #app-view[data-route="admin"] .admin-calendar-date-switch {
    width: 100%;
    justify-content: space-between;
  }

  #app-view[data-route="admin"] .admin-calendar-date-input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }

  #app-view[data-route="admin"] .admin-main-content #admin-calendar {
    height: 72vh !important;
    min-height: 560px;
  }
}

@media (max-width: 480px) {
  #app-view[data-route="landing"] h1 {
    font-size: clamp(1.72rem, 11.4vw, 2.45rem) !important;
    line-height: 0.98 !important;
  }

  #app-view[data-route="landing"] .landing-hero-title {
    font-size: clamp(2.45rem, 16vw, 3.35rem) !important;
  }

  #app-view[data-route="landing"] .landing-section-title {
    font-size: clamp(1.35rem, 8.4vw, 1.75rem) !important;
    line-height: 1.15 !important;
  }

  #app-view[data-route="landing"] .text-sm.md\:text-lg {
    font-size: 0.74rem !important;
  }

  #app-view[data-route="landing"] .text-\[10px\] {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  #app-view[data-route="kontakt"] .contact-map-wrap .h-\[420px\] {
    height: 300px;
  }

  .admin-appointments-row-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-edit-toggle {
    right: 0.6rem;
    bottom: 0.6rem;
    min-height: 40px !important;
    padding: 0.5rem 0.7rem;
    font-size: 12px !important;
  }

  #app-view[data-route="rezerwuj"] .booking-step-label {
    font-size: 0.52rem !important;
    letter-spacing: 0.045em !important;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-stat > div:last-child {
    font-size: 0.94rem;
  }

  #app-view[data-route="rezerwuj"] .booking-sticky-actions .ignity-btn,
  #app-view[data-route="rezerwuj"] .booking-sticky-actions .ignity-btn-outline {
    font-size: 0.72rem !important;
  }

  #app-view[data-route="rezerwuj"] .booking-barber-card-image {
    height: 360px;
  }

  .header-mobile-toggle {
    width: 34px;
    height: 34px;
    padding: 0 7px;
  }

  #site-header .max-w-\[1526px\] {
    padding-left: 1.85rem !important;
    padding-right: 1.85rem !important;
    column-gap: 0.55rem;
  }

  #site-header .header-brand {
    gap: 0.5rem;
    font-size: 1.5rem;
    letter-spacing: -0.015em;
  }

  #site-header .header-brand-logo {
    height: 36px;
  }

  .header-mobile-toggle {
    margin-left: 0.2rem;
  }

  .mobile-nav-panel {
    padding: 2rem 1.85rem 1.65rem;
  }

  #app-view[data-route="admin"] .admin-sidebar {
    width: min(88vw, 310px);
  }

  #app-view[data-route="admin"] .admin-main-title {
    font-size: 1.12rem !important;
  }

  #app-view[data-route="admin"] .admin-main-content table {
    min-width: 940px;
  }

  #app-view[data-route="admin"] .admin-cms-title {
    font-size: 1.45rem !important;
  }
}

@media (max-width: 390px) {
  #app-view[data-route="landing"] .landing-hero-title {
    font-size: clamp(2.3rem, 15.8vw, 3.15rem) !important;
  }

  #app-view[data-route="landing"] .landing-hero-logo {
    width: min(86vw, 350px);
    max-height: 27vh;
  }

  #site-header .max-w-\[1526px\] {
    padding-left: 1.85rem !important;
    padding-right: 1.85rem !important;
    column-gap: 0.45rem;
  }

  #site-header .header-brand {
    font-size: 1.36rem;
    gap: 0.42rem;
  }

  #site-header .header-brand-logo {
    height: 34px;
  }

  .header-mobile-toggle {
    width: 32px;
    height: 32px;
    padding: 0 6px;
  }
}

@media (max-width: 375px) {
  #app-view[data-route="landing"] .landing-hero-title {
    font-size: clamp(2.5rem, 17.2vw, 3.42rem) !important;
  }

  #app-view[data-route="landing"] .landing-hero-logo {
    width: min(86vw, 330px);
    max-height: 26vh;
  }
}

/* Graphite + gold accent remap for Tailwind-generated utility classes. */
:root {
  --adonis-gold-rgb: 165,122,61;
}

.text-brand-magenta,
.hover\:text-brand-magenta:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--adonis-gold-rgb) / var(--tw-text-opacity, 1));
}

.bg-brand-magenta,
.hover\:bg-brand-magenta:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--adonis-gold-rgb) / var(--tw-bg-opacity, 1));
}

.bg-brand-magenta\/10 {
  background-color: rgba(165,122,61, 0.1);
}

.bg-brand-magenta\/20 {
  background-color: rgba(165,122,61, 0.2);
}

.bg-brand-magenta\/25 {
  background-color: rgba(165,122,61, 0.25);
}

.bg-brand-magenta\/80 {
  background-color: rgba(165,122,61, 0.8);
}

.border-brand-magenta,
.hover\:border-brand-magenta:hover,
.border-violet-400 {
  --tw-border-opacity: 1;
  border-color: rgb(var(--adonis-gold-rgb) / var(--tw-border-opacity, 1));
}

.border-brand-magenta\/20 {
  border-color: rgba(165,122,61, 0.2);
}

.border-brand-magenta\/30 {
  border-color: rgba(165,122,61, 0.3);
}

.border-brand-magenta\/35 {
  border-color: rgba(165,122,61, 0.35);
}

.border-brand-magenta\/40,
.hover\:border-brand-magenta\/40:hover {
  border-color: rgba(165,122,61, 0.4);
}

.border-brand-magenta\/45 {
  border-color: rgba(165,122,61, 0.45);
}

.border-brand-magenta\/50,
.hover\:border-brand-magenta\/50:hover {
  border-color: rgba(165,122,61, 0.5);
}

.border-brand-magenta\/55,
.hover\:border-brand-magenta\/55:hover {
  border-color: rgba(165,122,61, 0.55);
}

.border-brand-magenta\/60 {
  border-color: rgba(165,122,61, 0.6);
}

.from-brand-magenta\/30 {
  --tw-gradient-from: rgba(165,122,61, 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(165,122,61, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.shadow-\[0_0_20px_rgba\(217\2c 70\2c 239\2c 0\.2\)\] {
  --tw-shadow: 0 0 20px rgba(165,122,61, 0.22);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_0_20px_rgba\(217\2c 70\2c 239\2c 0\.3\)\] {
  --tw-shadow: 0 0 20px rgba(165,122,61, 0.3);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_0_20px_rgba\(217\2c 70\2c 239\2c 0\.5\)\] {
  --tw-shadow: 0 0 20px rgba(165,122,61, 0.45);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
