/* Eskort Dizin — base tokens (Luxury Gold default; themes.css overrides via data-theme) */
:root {
  --bg: #0c0b0a;
  --bg-elevated: #161412;
  --bg-soft: #1e1b18;
  --text: #f3efe6;
  --text-muted: #a89f90;
  --accent: #c9a24a;
  --accent-hover: #dbb65c;
  --accent-soft: rgba(201, 162, 74, 0.14);
  --on-accent: #1a1408;
  --line: rgba(243, 239, 230, 0.1);
  --danger: #e07070;
  --ok: #6fbf8a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-bg: rgba(12, 11, 10, 0.82);
  --body-glow-1: rgba(201, 162, 74, 0.12);
  --body-glow-2: rgba(255, 220, 150, 0.04);
  --body-grad-top: #100e0c;
  --body-grad-bottom: #0c0b0a;
  --hero-text: #f7fafb;
  --hero-lead: rgba(247, 250, 251, 0.86);
  --hero-shade-y: linear-gradient(180deg, rgba(12, 11, 10, 0.22) 0%, rgba(12, 11, 10, 0.42) 45%, rgba(12, 11, 10, 0.88) 100%);
  --hero-shade-x: linear-gradient(90deg, rgba(12, 11, 10, 0.62) 0%, rgba(12, 11, 10, 0.2) 42%, transparent 70%);
  --panel-bg: rgba(22, 20, 18, 0.94);
  --logo-ring: rgba(201, 162, 74, 0.35);
  --card-ring: rgba(201, 162, 74, 0.25);
  --card-caption-bg: linear-gradient(180deg, transparent 0%, rgba(12, 11, 10, 0.92) 78%);
  --fab-grad: linear-gradient(145deg, #dbb65c 0%, var(--accent) 55%, #9a7a2e 100%);
  --fab-shadow: 0 10px 28px rgba(201, 162, 74, 0.4), 0 2px 8px rgba(0, 0, 0, 0.35);
  --footer-fade: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  --letter-display: -0.015em;
  --btn-transform: none;
  --btn-tracking: 0;
  --accent-2: #9a7a2e;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 12% -5%, var(--body-glow-1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 8%, var(--body-glow-2), transparent 50%),
    linear-gradient(180deg, var(--body-grad-top) 0%, var(--body-grad-bottom) 100%);
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-hover); }

img, video { max-width: 100%; height: auto; display: block; }

.site-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0 3.5rem;
}

.block { scroll-margin-top: 5rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px) saturate(1.2);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  text-decoration: none;
}
.brand:hover { color: var(--accent); }
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--logo-ring), 0 4px 14px rgba(0, 0, 0, 0.35);
}
.brand__text { white-space: nowrap; }

.nav-desktop { display: none; gap: 1.35rem; align-items: center; }
.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-desktop a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.38rem 0.52rem;
  cursor: pointer;
  min-width: 2.15rem;
}
.lang-switch__btn:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.lang-switch__btn.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}
.lang-switch--mobile {
  margin-bottom: 0.35rem;
  align-self: flex-start;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-te-spinner-pos {
  display: none !important;
}
body { top: 0 !important; }
.skiptranslate,
.goog-te-gadget {
  display: none !important;
}
iframe.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}
font font { background: transparent !important; box-shadow: none !important; }
.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 0 1rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { color: var(--text-muted); padding: 0.35rem 0; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ── Hero (home) ── */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(22rem, 58vh, 34rem);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

/* Visual hero: height tracks 16:9 of viewport width → image fills without harsh crop */
.hero--home.hero--visual {
  min-height: 18rem;
  width: 100%;
  height: min(56.25vw, 70vh, 720px);
  max-height: 720px;
}

.hero:not(.hero--home) {
  min-height: 0;
  align-items: stretch;
  padding: 1.5rem 0 0.5rem;
  overflow: visible;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-soft);
  animation: heroReveal 1.1s var(--ease) both;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 28%;
  display: block;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-shade-y), var(--hero-shade-x);
  pointer-events: none;
}

.hero:not(.hero--visual) .hero__shade {
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, var(--body-glow-1), transparent 60%),
    linear-gradient(180deg, transparent, var(--bg));
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 12vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
  animation: fadeUp 0.7s var(--ease) 0.12s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 0.85rem;
  letter-spacing: var(--letter-display, -0.015em);
  color: var(--text);
}

.hero--home .hero-brand {
  color: var(--hero-text);
}

.page-hero .hero-brand,
.hero:not(.hero--home) .hero-brand {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.hero-lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  max-width: 28rem;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.hero--home .hero-lead {
  color: var(--hero-lead);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero--home .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #f7fafb;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero--home .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

/* Discover / filters */
.discover {
  position: relative;
  z-index: 3;
  margin-top: -1.25rem;
  padding-bottom: 0.25rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.85rem;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.filters select,
.filters input[type="search"] {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.68rem 0.85rem;
  font: inherit;
  min-width: 0;
  flex: 1 1 9rem;
}
.filters .btn { flex: 0 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  border-radius: var(--radius);
  padding: 0.72rem 1.15rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  text-transform: var(--btn-transform, none);
  letter-spacing: var(--btn-tracking, 0);
  transition: transform 0.2s var(--ease), background 0.2s ease;
}
.btn:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: none;
}
.btn-danger { background: var(--danger); color: #fff; }

/* Sections */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.15rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section-count {
  color: var(--text-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Profile grid — photo-first */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .profile-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
}
@media (min-width: 960px) {
  .profile-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.profile-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.55s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.04s);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.profile-card:hover {
  transform: translateY(-4px);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--card-ring);
}
.profile-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}
.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.profile-card:hover .profile-card__media img { transform: scale(1.05); }

.profile-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 2.4rem 0.85rem 0.85rem;
  background: var(--card-caption-bg);
  pointer-events: none;
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  color: var(--hero-text);
}
.profile-card__meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--hero-lead);
  margin: 0.28rem 0 0;
  letter-spacing: 0.01em;
}

.badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 3;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.48rem;
  border-radius: 4px;
}
.badge--inline {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4rem;
  font-size: 0.62rem;
  padding: 0.22rem 0.42rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroReveal {
  from { opacity: 0.6; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.02); }
}

/* Banners */
.banner-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.banner-slot { margin: 0; }
.banner-slot a,
.banner-slot img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}
.banner-slot img {
  max-height: 110px;
  object-fit: cover;
  border: 1px solid var(--line);
  opacity: 0.95;
}

/* Page shell */
.page-shell {
  padding: 0.5rem 0 3rem;
}
.page-hero {
  padding: 1.25rem 0 0.5rem;
}
.page-hero .hero-lead {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Profile detail */
.profile-hero {
  display: grid;
  gap: 1.75rem;
  padding: 1.25rem 0 2.75rem;
}
@media (min-width: 880px) {
  .profile-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 2.25rem;
  }
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  aspect-ratio: 4 / 5;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}
.gallery-main__img {
  cursor: zoom-in;
  transition: transform 0.4s var(--ease), filter 0.35s ease;
}
.gallery-main:hover .gallery-main__img {
  transform: scale(1.03);
  filter: brightness(1.04);
}
.gallery-main::after {
  content: "Büyüt";
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-main:has(img):hover::after { opacity: 1; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  aspect-ratio: 1;
  transition: border-color 0.2s ease;
}
.gallery-thumbs button.is-active { border-color: var(--accent); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-zoom-hint {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.25s ease;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.lightbox[hidden] { display: none !important; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(18, 36, 42, 0.88);
  backdrop-filter: blur(8px);
}
.lightbox__stage {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  height: min(78vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}
.lightbox__canvas {
  transform-origin: center center;
  transition: transform 0.12s ease-out;
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-in;
  will-change: transform;
  touch-action: none;
}
.lightbox__canvas.is-zoomed { cursor: grab; transition: none; }
.lightbox.is-zoomed .lightbox__canvas { cursor: grab; }
.lightbox__canvas:active { cursor: grabbing; }
.lightbox__img,
.lightbox__video {
  display: block;
  max-width: min(96vw, 1100px);
  max-height: min(78vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  touch-action: none;
}
.lightbox__video { pointer-events: auto; }
.lightbox__close,
.lightbox__nav,
.lightbox__toolbar button {
  position: relative;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(26, 35, 48, 0.78);
  color: #f7fafb;
  cursor: pointer;
  border-radius: 8px;
  font: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox__nav--prev { left: 0.75rem; }
.lightbox__nav--next { right: 0.75rem; }
.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__toolbar button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lightbox__toolbar {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  background: rgba(26, 35, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  max-width: calc(100vw - 1.5rem);
}
.lightbox__toolbar button {
  min-width: 44px;
  height: 40px;
  padding: 0 0.7rem;
  font-weight: 600;
}
.lightbox__hint {
  display: none;
  color: rgba(247, 250, 251, 0.7);
  font-size: 0.72rem;
  padding: 0 0.4rem;
  white-space: nowrap;
}
@media (min-width: 720px) {
  .lightbox__hint { display: inline; }
  .gallery-main::after { opacity: 0.85; }
}
@media (hover: none) {
  .gallery-main:hover .gallery-main__img {
    transform: none;
    filter: none;
  }
  .gallery-main:has(img)::after { opacity: 0.9; }
}

.profile-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 0.4rem;
  line-height: 1.1;
  font-weight: 600;
}
.profile-info__place {
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
}

.attr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.attr-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.attr-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.attr-item strong {
  font-weight: 600;
  font-size: 0.95rem;
}

.profile-services {
  margin: 0 0 1.25rem;
}
.profile-services__label {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.profile-services p { margin: 0; line-height: 1.5; }

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.bio {
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.7;
}
.bio :is(h2, h3) {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
}
.bio a { text-decoration: underline; text-underline-offset: 2px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 1rem 0 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  background: var(--footer-fade);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-brand .brand {
  font-size: 1.35rem;
  color: var(--text);
}
.footer-brand p {
  margin: 0.45rem 0 0;
  max-width: 22rem;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}
.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--accent); }
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 11, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate__box {
  width: min(420px, 100%);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  animation: fadeUp 0.4s ease;
}
.age-gate__box h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.age-gate__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Forms / panels */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.92rem;
}
.alert-ok {
  background: rgba(111, 191, 138, 0.15);
  color: var(--ok);
  border: 1px solid rgba(111, 191, 138, 0.3);
}
.alert-err {
  background: rgba(224, 112, 112, 0.12);
  color: var(--danger);
  border: 1px solid rgba(224, 112, 112, 0.3);
}

.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin: 2rem 0 0.5rem;
}
.pager a,
.pager span {
  min-width: 2.35rem;
  text-align: center;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.pager a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pager .is-current {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  font-weight: 600;
}

.city-list {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin: 1.25rem 0 2rem;
}
.city-list a {
  display: block;
  padding: 1rem 1.05rem;
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.25s var(--ease);
}
.city-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
  padding-left: 1.25rem;
}

.blog-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0;
}
.blog-list a {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  transition: color 0.2s ease;
}
.blog-list a:hover { color: var(--accent); }
.blog-list__excerpt {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.article {
  padding: 1.5rem 0 3rem;
  max-width: 720px;
}
.article__cover {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.15rem 0 1.5rem;
}
.article-links,
.article-faq,
.article-related {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.article-links h2,
.article-faq h2,
.article-related h2 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
}
.article-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.article-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-size: 0.78rem;
  text-decoration: none;
}
.article-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.article-faq__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: var(--bg-soft);
  margin-bottom: 0.55rem;
}
.article-faq__item summary {
  cursor: pointer;
  font-weight: 600;
}
.article-faq__item p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
}
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.55rem;
}
.article-related__card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  text-decoration: none;
  background: var(--bg-soft);
  color: var(--text);
  display: grid;
  gap: 0.32rem;
}
.article-related__card strong {
  font-size: 0.88rem;
  line-height: 1.35;
}
.article-related__card span {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.article-related__card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}
.empty .btn { margin-top: 1rem; }

/* Dropzone */
.dropzone {
  border: 2px dashed rgba(201, 162, 74, 0.35);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.dropzone.is-dragover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.dropzone__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.dropzone__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--line);
}
.dropzone__item img,
.dropzone__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dropzone__item .dz-actions {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.65);
}
.dropzone__item button {
  flex: 1;
  font-size: 0.65rem;
  padding: 0.25rem;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}
.progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.progress-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.2s;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  font-family: var(--font-body);
}
.chat-fab {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--fab-grad);
  color: var(--on-accent);
  box-shadow: var(--fab-shadow);
  display: grid;
  place-items: center;
  overflow: visible;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease;
}
.chat-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--fab-shadow);
}
.chat-fab:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.chat-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.55;
  animation: chatPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.chat-fab.is-open .chat-fab__pulse { display: none; }
.chat-fab__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  transition: opacity 0.2s ease, transform 0.25s var(--ease);
}
.chat-fab--avatar {
  padding: 0;
  overflow: visible;
  background: #141018;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-sizing: border-box;
}
.chat-fab--avatar:hover {
  border-color: #fff;
}
.chat-fab--avatar.is-open {
  background: var(--fab-grad);
  border-color: transparent;
  display: grid;
  place-items: center;
  padding: 0;
}
.chat-fab__avatar {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.25s var(--ease);
}
.chat-fab__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.chat-fab--avatar.is-open .chat-fab__avatar {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}
.chat-fab--avatar .chat-fab__pulse {
  z-index: 2;
}
.chat-fab__icon--woman {
  width: 34px;
  height: 34px;
}
.chat-fab__icon--woman svg {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.chat-fab__icon svg { width: 100%; height: 100%; display: block; }
.chat-fab__icon--close {
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}
.chat-fab.is-open .chat-fab__icon--open {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}
.chat-fab.is-open .chat-fab__icon--close {
  opacity: 1;
  transform: none;
}
.chat-fab__hint {
  position: absolute;
  right: calc(100% + 0.65rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  pointer-events: none;
  z-index: 5;
  animation: chatHintIn 0.45s var(--ease) 0.8s both;
}
.chat-fab.is-open .chat-fab__hint {
  opacity: 0;
  animation: none;
  transform: translate(6px, -50%);
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes chatHintIn {
  from { opacity: 0; transform: translate(8px, -50%); }
  to { opacity: 1; transform: translateY(-50%); }
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 4.75rem;
  width: min(360px, calc(100vw - 2rem));
  height: min(480px, calc(100vh - 7rem));
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(26, 35, 48, 0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.is-open { display: flex; }
.chat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.chat-panel__head strong { font-size: 0.95rem; }
.chat-panel__head span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.chat-presence.is-online { color: var(--ok); }
.chat-presence.is-auto { color: var(--accent); }
.chat-msg--bot {
  border-style: dashed;
}
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem 0.15rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}
.chat-suggest {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chat-suggest:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.chat-panel__close {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.2rem 0.4rem;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--bg);
}
.chat-msg {
  max-width: 85%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.chat-msg--guest {
  align-self: flex-end;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 162, 74, 0.28);
}
.chat-msg--admin {
  align-self: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.chat-msg__meta {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.chat-form {
  display: grid;
  gap: 0.45rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}
.chat-form input,
.chat-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  resize: none;
}
.chat-form__row {
  display: flex;
  gap: 0.45rem;
}
.chat-form button {
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  padding: 0 0.9rem;
  cursor: pointer;
}
.chat-form button:hover { background: var(--accent-hover); }
.chat-status {
  min-height: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 0.75rem 0.55rem;
}
.chat-age-locked {
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}
@media (max-width: 720px) {
  .hero--home.hero--visual {
    height: auto;
    min-height: min(78svh, 34rem);
    max-height: none;
    aspect-ratio: 3 / 4;
  }
  .hero--home.hero--visual .hero__img {
    object-position: 74% 20%;
  }
  .hero__inner {
    padding-top: clamp(3.5rem, 14vw, 5rem);
  }
}
@media (max-width: 480px) {
  .chat-widget {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }
  .chat-panel { bottom: 4.5rem; height: min(70vh, 520px); }
  .chat-fab__hint {
    display: block;
    font-size: 0.72rem;
    padding: 0.4rem 0.72rem;
    right: calc(100% + 0.5rem);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 5;
  }
  .chat-fab.is-open .chat-fab__hint {
    display: none;
  }
}

/* Maintenance */
.page-maintenance .site-header,
.page-maintenance .site-footer,
.page-maintenance .chat-widget {
  display: none !important;
}
.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, var(--body-glow-1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, var(--body-glow-2), transparent 50%),
    var(--bg);
}
.maintenance__inner {
  max-width: 34rem;
  text-align: center;
}
.maintenance__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.4), 0 12px 32px rgba(0, 0, 0, 0.45);
}
.maintenance__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.maintenance__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.15;
}
.maintenance__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
