.pub-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 52px;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.pub-nav__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 6px;
  color: #c9a84c;
  text-transform: uppercase;
  text-decoration: none;
}
.pub-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.pub-nav__link {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #444444;
  text-decoration: none;
  transition: color 0.2s;
}
.pub-nav__link:hover, .pub-nav__link.active {
  color: #c9a84c;
}
.pub-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pub-nav__login {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 1px;
  color: #444444;
  text-decoration: none;
  border-bottom: 0.5px solid #1a1a1a;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.pub-nav__login:hover {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.3);
}
.pub-nav__divider {
  width: 0.5px;
  height: 12px;
  background: #1a1a1a;
}
.pub-nav__cta {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  border: 0.5px solid #c9a84c;
  padding: 5px 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pub-nav__cta:hover {
  background: #c9a84c;
  color: #000;
}
.pub-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #444444;
  padding: 4px;
}

.pub-nav-drawer {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  background: #080808;
  border-bottom: 0.5px solid #1a1a1a;
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 18px;
}
.pub-nav-drawer.open {
  display: flex;
}
.pub-nav-drawer a {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #444444;
  text-decoration: none;
}
.pub-nav-drawer a:hover {
  color: #c9a84c;
}

.pub-nav-spacer {
  height: 52px;
}

.pub-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 0.5px solid #111111;
}
.pub-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, #1a1200 0%, #060606 65%);
}
.pub-hero__lines-h {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(0deg, #c9a84c 0px, #c9a84c 0.5px, transparent 0.5px, transparent 80px);
}
.pub-hero__lines-v {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(90deg, #c9a84c 0px, #c9a84c 0.5px, transparent 0.5px, transparent 120px);
}
.pub-hero__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #c9a84c;
  border-style: solid;
  opacity: 0.15;
}
.pub-hero__corner--tl {
  top: 24px;
  left: 24px;
  border-width: 0.5px 0 0 0.5px;
}
.pub-hero__corner--tr {
  top: 24px;
  right: 24px;
  border-width: 0.5px 0.5px 0 0;
}
.pub-hero__corner--bl {
  bottom: 24px;
  left: 24px;
  border-width: 0 0 0.5px 0.5px;
}
.pub-hero__corner--br {
  bottom: 24px;
  right: 24px;
  border-width: 0 0.5px 0.5px 0;
}
.pub-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px;
  max-width: 600px;
}
.pub-hero__pre {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.7;
  margin-bottom: 20px;
}
.pub-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  color: #e8e8e8;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 12px;
}
.pub-hero__title span {
  color: #c9a84c;
}
.pub-hero__divider {
  width: 60px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 0 auto 20px;
}
.pub-hero__subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  color: #666666;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.pub-hero__cta-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.pub-stats {
  display: flex;
  border-top: 0.5px solid #0f0f0f;
  border-bottom: 0.5px solid #0f0f0f;
}
.pub-stats__item {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 0.5px solid #0f0f0f;
}
.pub-stats__item:last-child {
  border-right: none;
}
.pub-stats__num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #c9a84c;
  margin-bottom: 4px;
}
.pub-stats__label {
  font-size: 7px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2a2a2a;
}

.pub-section {
  padding: 40px 32px;
  border-bottom: 0.5px solid #0f0f0f;
}
.pub-section__pre {
  font-size: 7px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.6;
  margin-bottom: 8px;
}
.pub-section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #aaaaaa;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.3;
}
.pub-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.pub-section__header .pub-section__title {
  margin-bottom: 0;
}

.pub-how__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.pub-how__item:last-child {
  margin-bottom: 0;
}
.pub-how__num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: #c9a84c;
  opacity: 0.25;
  flex-shrink: 0;
  width: 32px;
  line-height: 1;
}
.pub-how__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  color: #aaaaaa;
  margin-bottom: 4px;
}
.pub-how__text {
  font-size: 10px;
  color: #444444;
  line-height: 1.7;
}

.pub-quote {
  background: #080808;
  border: 0.5px solid #0f0f0f;
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.pub-quote__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  color: #666666;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  opacity: 0.8;
}
.pub-quote__author {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a2a;
  text-align: center;
}
.pub-quote__stars {
  color: #c9a84c;
  font-size: 11px;
  text-align: center;
  letter-spacing: 2px;
}

.pub-footer {
  padding: 20px 32px;
  border-top: 0.5px solid #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pub-footer__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: #2a2a2a;
  text-transform: uppercase;
}
.pub-footer__links {
  display: flex;
  gap: 20px;
}
.pub-footer__link {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  text-decoration: none;
  transition: color 0.2s;
}
.pub-footer__link:hover {
  color: #444444;
}
.pub-footer__copy {
  font-size: 7px;
  color: #1a1a1a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pub-escort-card {
  background: #0d0d0d;
  border: 0.5px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pub-escort-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
}
.pub-escort-card__photo {
  background: #111111;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pub-escort-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pub-escort-card__photo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f0f0f;
  border: 0.5px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 20px;
}
.pub-escort-card__status {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a6e2a;
}
.pub-escort-card__status--offline {
  background: #555555;
}
.pub-escort-card__body {
  padding: 14px 16px;
}
.pub-escort-card__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  color: #e8e8e8;
  margin-bottom: 3px;
  text-decoration: none;
  display: block;
}
.pub-escort-card__name:hover {
  color: #c9a84c;
}
.pub-escort-card__meta {
  font-size: 8px;
  color: #444444;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pub-escort-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pub-escort-card__price {
  font-size: 10px;
  color: #c9a84c;
  letter-spacing: 1px;
}
.pub-escort-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-style: italic;
  color: #444444;
  text-decoration: none;
  transition: color 0.2s;
}
.pub-escort-card__link::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 0.5px;
  background: #444444;
  transition: background 0.2s, width 0.2s;
}
.pub-escort-card__link:hover {
  color: #c9a84c;
}
.pub-escort-card__link:hover::before {
  background: #c9a84c;
  width: 20px;
}

.pub-escorts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: start;
}

.pub-escort-mini__photo {
  height: 0;
  padding-bottom: 130%;
  position: relative;
  overflow: hidden;
}
.pub-escort-mini__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pub-escort-mini__body {
  padding: 12px 14px;
}
.pub-escort-mini__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  color: #aaaaaa;
  margin-bottom: 2px;
}
.pub-escort-mini__meta {
  font-size: 8px;
  color: #444444;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pub-escort-mini__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pub-escort-mini__price {
  font-size: 9px;
  color: #c9a84c;
  letter-spacing: 1px;
}
.pub-escort-mini__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a6e2a;
}
.pub-escort-mini__dot--offline {
  background: #555555;
}

.pub-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 2px;
}
.pub-btn__line {
  display: inline-block;
  height: 0.5px;
  flex-shrink: 0;
  transition: width 0.2s;
}
.pub-btn__text {
  font-size: 12px;
  transition: color 0.2s;
}
.pub-btn--gold .pub-btn__line {
  width: 28px;
  background: #c9a84c;
}
.pub-btn--gold .pub-btn__text {
  color: #c9a84c;
}
.pub-btn--gold:hover .pub-btn__line {
  width: 36px;
}
.pub-btn--ghost .pub-btn__line {
  width: 24px;
  background: #444444;
}
.pub-btn--ghost .pub-btn__text {
  color: #444444;
  font-size: 11px;
}
.pub-btn--ghost:hover .pub-btn__line {
  background: #666666;
}
.pub-btn--ghost:hover .pub-btn__text {
  color: #666666;
}
.pub-btn--block {
  width: 100%;
}

.pub-filter {
  display: flex;
  gap: 8px;
  padding: 12px 32px;
  border-bottom: 0.5px solid #111111;
  flex-wrap: wrap;
  align-items: center;
}
.pub-filter__pill {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666666;
  border: 0.5px solid #1a1a1a;
  border-radius: 2px;
  padding: 5px 12px;
  background: #0a0a0a;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.pub-filter__pill:hover, .pub-filter__pill.active {
  color: #c9a84c;
  border-color: #c9a84c;
}
.pub-filter__spacer {
  margin-left: auto;
}

.pub-form__label {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 5px;
  display: block;
}
.pub-form__input, .pub-form__select, .pub-form__textarea {
  width: 100%;
  box-sizing: border-box;
  background: #111111;
  border: 0.5px solid #1a1a1a;
  border-radius: 2px;
  padding: 9px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
  color: #aaaaaa;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.pub-form__input::placeholder, .pub-form__select::placeholder, .pub-form__textarea::placeholder {
  color: #2a2a2a;
}
.pub-form__input:focus, .pub-form__select:focus, .pub-form__textarea:focus {
  border-color: rgba(201, 168, 76, 0.3);
}
.pub-form__textarea {
  resize: none;
  line-height: 1.6;
}
.pub-form__group {
  margin-bottom: 16px;
}
.pub-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pub-form__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0.5px solid #1a1a1a;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 6px;
}
.pub-form__option.selected {
  border-color: #c9a84c;
  background: #0f0d00;
}
.pub-form__option-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0.5px solid #2a2a2a;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.selected .pub-form__option-dot {
  background: #c9a84c;
  border-color: #c9a84c;
}
.pub-form__option-name {
  flex: 1;
  font-size: 10px;
  color: #444444;
}
.selected .pub-form__option-name {
  color: #aaaaaa;
}
.pub-form__option-price {
  font-size: 10px;
  color: #444444;
}
.selected .pub-form__option-price {
  color: #c9a84c;
}

.pub-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040404;
  position: relative;
  overflow: hidden;
}
.pub-gate__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #1a1400 0%, #040404 70%);
}
.pub-gate__lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, #c9a84c 0px, #c9a84c 0.5px, transparent 0.5px, transparent 60px);
}
.pub-gate__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 40px;
  max-width: 380px;
  width: 100%;
}
.pub-gate__ornament {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: #c9a84c;
  opacity: 0.5;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pub-gate__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  letter-spacing: 8px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pub-gate__tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: #666666;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 32px;
}
.pub-gate__divider {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
  margin: 0 auto 32px;
  width: 120px;
}
.pub-gate__warning {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 8px;
}
.pub-gate__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.pub-gate__box {
  border: 0.5px solid #1a1a1a;
  border-radius: 4px;
  padding: 24px 28px;
  background: #0a0900;
  margin-bottom: 20px;
}
.pub-gate__box-title {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 18px;
}
.pub-gate__btns {
  display: flex;
  gap: 12px;
}
.pub-gate__btn-yes {
  flex: 1;
  padding: 12px;
  background: #c9a84c;
  border: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 2px;
  color: #000;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.pub-gate__btn-yes:hover {
  opacity: 0.9;
}
.pub-gate__btn-no {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 0.5px solid #1a1a1a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 2px;
  color: #2a2a2a;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.pub-gate__btn-no:hover {
  border-color: #444444;
  color: #444444;
}
.pub-gate__legal {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #2a2a2a;
  line-height: 1.8;
  text-transform: uppercase;
}

.pub-login__tabs {
  display: flex;
  border-bottom: 0.5px solid #1a1a1a;
  margin-bottom: 0;
}
.pub-login__tab {
  flex: 1;
  padding: 11px;
  text-align: center;
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.2s;
}
.pub-login__tab.active {
  color: #c9a84c;
  border-bottom-color: #c9a84c;
}
.pub-login__box {
  border: 0.5px solid #1a1a1a;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 22px 28px;
  background: #0a0900;
  margin-bottom: 20px;
}
.pub-login__label {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}
.pub-login__input {
  width: 100%;
  box-sizing: border-box;
  background: #0d0d0d;
  border: 0.5px solid #1a1a1a;
  border-radius: 2px;
  padding: 9px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
  color: #666666;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.pub-login__input::placeholder {
  color: #2a2a2a;
}
.pub-login__input:focus {
  border-color: rgba(201, 168, 76, 0.3);
}
.pub-login__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.pub-login__forgot {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.pub-login__forgot:hover {
  color: #444444;
}

.pub-booking {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: calc(100vh - 52px);
}
.pub-booking__main {
  padding: 32px 32px;
  border-right: 0.5px solid #111111;
}
.pub-booking__sidebar {
  background: #0a0a0a;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pub-steps {
  margin-bottom: 32px;
}
.pub-steps__label {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 12px;
}
.pub-steps__track {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.pub-steps__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}
.pub-steps__dot--done {
  background: #c9a84c;
  color: #000;
  font-weight: 700;
}
.pub-steps__dot--active {
  background: transparent;
  border: 0.5px solid #c9a84c;
  color: #c9a84c;
}
.pub-steps__dot--todo {
  background: transparent;
  border: 0.5px solid #1a1a1a;
  color: #2a2a2a;
}
.pub-steps__line {
  flex: 1;
  height: 0.5px;
  background: #1a1a1a;
}
.pub-steps__line--done {
  background: rgba(201, 168, 76, 0.3);
}
.pub-steps__labels {
  display: flex;
  justify-content: space-between;
}
.pub-steps__step-label {
  font-size: 7px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2a2a2a;
}
.pub-steps__step-label--active {
  color: #c9a84c;
}

.pub-cal__header {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 10px;
}
.pub-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 12px;
}
.pub-cal__weekday {
  font-size: 7px;
  color: #2a2a2a;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 1px;
}
.pub-cal__day {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.pub-cal__day--avail {
  color: #666666;
}
.pub-cal__day--avail:hover {
  background: #0f0f0f;
  color: #e8e8e8;
}
.pub-cal__day--selected {
  background: #c9a84c;
  color: #000;
  font-weight: 700;
}
.pub-cal__day--taken {
  color: #2a2a2a;
  text-decoration: line-through;
  cursor: default;
}
.pub-cal__legend {
  display: flex;
  gap: 14px;
}
.pub-cal__legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 7px;
  color: #444444;
  letter-spacing: 1px;
}
.pub-cal__legend-item span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pub-timeslots__header {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 8px;
}
.pub-timeslots__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.pub-timeslots__slot {
  padding: 7px 10px;
  border: 0.5px solid #1a1a1a;
  border-radius: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  color: #444444;
  text-align: center;
  cursor: pointer;
  background: #0d0d0d;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.pub-timeslots__slot:hover {
  border-color: #444444;
  color: #aaaaaa;
}
.pub-timeslots__slot--selected {
  border-color: #c9a84c;
  color: #c9a84c;
  background: #0f0d00;
}

.pub-booking-summary {
  background: #0d0d0d;
  border: 0.5px solid #1a1a1a;
  border-radius: 4px;
  padding: 14px;
  flex: 1;
}
.pub-booking-summary__header {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 12px;
}
.pub-booking-summary__escort {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 0.5px solid #111111;
}
.pub-booking-summary__photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111111;
  border: 0.5px solid #1a1a1a;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pub-booking-summary__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pub-booking-summary__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  color: #aaaaaa;
  margin-bottom: 1px;
}
.pub-booking-summary__sub {
  font-size: 7px;
  color: #444444;
  letter-spacing: 1px;
}
.pub-booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 0.5px solid #0f0f0f;
  font-size: 9px;
}
.pub-booking-summary__row:last-of-type {
  border-bottom: none;
}
.pub-booking-summary__key {
  color: #444444;
}
.pub-booking-summary__val {
  color: #aaaaaa;
}
.pub-booking-summary__total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 4px;
}
.pub-booking-summary__total-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666666;
}
.pub-booking-summary__total-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #c9a84c;
}
.pub-booking-summary__disclaimer {
  font-size: 7px;
  color: #2a2a2a;
  letter-spacing: 1px;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1024px) {
  .pub-escorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pub-hero__title {
    font-size: 36px;
  }
  .pub-booking {
    grid-template-columns: 1fr 180px;
  }
}
@media (max-width: 768px) {
  .pub-nav {
    padding: 0 16px;
  }
  .pub-nav__links, .pub-nav__actions {
    display: none;
  }
  .pub-nav__hamburger {
    display: flex;
  }
  .pub-hero {
    min-height: 380px;
  }
  .pub-hero__content {
    padding: 40px 20px;
  }
  .pub-hero__title {
    font-size: 28px;
  }
  .pub-hero__cta-row {
    flex-direction: column;
    gap: 16px;
  }
  .pub-stats {
    flex-wrap: wrap;
  }
  .pub-stats__item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 0.5px solid #0f0f0f;
  }
  .pub-stats__item:nth-child(odd) {
    border-right: 0.5px solid #0f0f0f;
  }
  .pub-section {
    padding: 28px 16px;
  }
  .pub-filter {
    padding: 10px 16px;
  }
  .pub-escorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pub-escort-card__photo {
    height: 160px;
  }
  .pub-booking {
    grid-template-columns: 1fr;
  }
  .pub-booking__sidebar {
    border-top: 0.5px solid #111;
    border-right: none;
  }
  .pub-gate__content {
    padding: 32px 20px;
  }
  .pub-gate__logo {
    font-size: 28px;
  }
  .pub-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 16px;
  }
}
@media (max-width: 480px) {
  .pub-escorts-grid {
    grid-template-columns: 1fr;
  }
  .pub-hero__title {
    font-size: 24px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #080808;
  color: #e8e8e8;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
}

.pub-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.pub-page {
  background: #080808;
  min-height: 100vh;
}

.pub-divider-h {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0.3;
  margin: 0;
}

.pub-divider-v {
  width: 0.5px;
  background: #1a1a1a;
  align-self: stretch;
}