/* ============================================================
   ESCORT ALEMİ — VELVET NOIR Design System v3.0
   Premium Dark-Gold luxury aesthetic
   ============================================================ */

/* ─── GOOGLE FONTS (loaded in header) ─── */
/* Cormorant Garamond (serif luxury), DM Sans (clean body) */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand Palette */
  --gold-50: #fdf9ed;
  --gold-100: #f8eecc;
  --gold-200: #f0d98a;
  --gold-300: #e5c04e;
  --gold-400: #d4af37;
  --gold-500: #b8920d;
  --gold-600: #9a7608;
  --gold-700: #7a5c06;

  /* Dark Palette */
  --noir-50: #f4f3f1;
  --noir-100: #e8e5df;
  --noir-200: #c9c3b6;
  --noir-300: #a69d8c;
  --noir-400: #7d7265;
  --noir-500: #574f44;
  --noir-600: #3c3530;
  --noir-700: #252019;
  --noir-800: #161209;
  --noir-900: #0d0b06;
  --noir-950: #080705;

  /* Semantic */
  --bg-body: #0d0b06;
  --bg-surface: #141209;
  --bg-card: #1a1710;
  --bg-card-hover: #201d14;
  --bg-elevated: #242018;
  --border-subtle: rgba(212, 175, 55, 0.08);
  --border-soft: rgba(212, 175, 55, 0.16);
  --border-medium: rgba(212, 175, 55, 0.30);
  --border-strong: rgba(212, 175, 55, 0.55);

  /* Text */
  --text-primary: #f0e8d5;
  --text-secondary: #c9ba9a;
  --text-muted: #8a7d68;
  --text-faint: #5c5244;
  --text-gold: #d4af37;
  --text-gold-soft: #e5c04e;

  /* Motion */
  --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-med: 400ms;
  --dur-slow: 700ms;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold-strong: 0 0 50px rgba(212, 175, 55, 0.25), 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-700);
  border-radius: var(--r-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

/* ─── UTILITIES ─── */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2.5rem;
  }
}

.mobile-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
    align-items: flex-start;
  }
}


/* ─── GRADIENT TEXT ─── */
.text-gold {
  background: linear-gradient(135deg, #f8eecc 0%, #d4af37 40%, #b8920d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-soft {
  background: linear-gradient(to right, #e5c04e, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── DIVIDER LINE ─── */
.gold-line {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.gold-line-h {
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-400), transparent);
}

/* ─── GLASS / SURFACES ─── */
.glass {
  background: rgba(20, 18, 9, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
}

.glass-gold {
  background: rgba(20, 18, 9, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-gold);
}

.surface {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.surface-elevated {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  padding: 0.75rem 1.75rem;
  transition: all var(--dur-med) var(--ease-luxury);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #c49b28 50%, #a87f18 100%);
  color: #0d0b06;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold::before {
  background: linear-gradient(135deg, #e5c04e 0%, #d4af37 50%, #b8920d 100%);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--border-medium);
  box-shadow: inset 0 0 0 0 rgba(212, 175, 55, 0);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-400);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-400);
  border-color: var(--border-soft);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.65rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--r-md);
}

/* ─── AD CARD (Premium Profile Card) ─── */
.ad-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--dur-slow) var(--ease-luxury);
}

.ad-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color var(--dur-med);
  pointer-events: none;
}

.ad-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-gold);
}

.ad-card:hover::after {
  border-color: var(--border-soft);
}

.ad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.2s var(--ease-luxury);
}

.ad-card:hover img {
  transform: scale(1.07);
}

/* ─── VIP BADGE ─── */
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, #d4af37, #a87f18);
  color: #0d0b06;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

@media (min-width: 640px) {
  .vip-badge {
    gap: 0.3rem;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
  }
}

/* ─── AD CARD INTERNALS (Responsive) ─── */
.ad-card-top {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  right: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ad-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.4rem;
}

.ad-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

.ad-card-reveal {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease-luxury);
  display: none;
  /* Hide on very small mobile to save space */
}

@media (min-width: 640px) {
  .ad-card-top {
    top: 0.625rem;
    left: 0.625rem;
    right: 0.625rem;
  }

  .ad-card-bottom {
    padding: 0.75rem;
  }

  .ad-card-title {
    font-size: clamp(0.7rem, 2vw, 1.05rem);
    margin-bottom: 0.3rem;
  }

  .ad-card-reveal {
    display: flex;
    gap: 0.5rem;
  }
}

/* ─── EYEBROW LABEL ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-400);
  flex-shrink: 0;
}

/* ─── SECTION HEADING ─── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ─── FORM ELEMENTS ─── */
.form-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-faint);
}

.form-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ─── NAV LINK ─── */
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width var(--dur-med) var(--ease-luxury);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-400);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ─── DISTRICT CARD ─── */
.district-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1rem 0.75rem;
  text-align: center;
  transition: all var(--dur-med) var(--ease-luxury);
  cursor: pointer;
}

.district-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.district-card .icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 0.875rem;
  transition: all var(--dur-med);
}

.district-card:hover .icon {
  background: var(--gold-400);
  color: var(--bg-body);
  border-color: var(--gold-400);
}

.district-card .name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  line-height: 1.2;
}

.district-card:hover .name {
  color: var(--gold-400);
}

/* ─── BENEFIT CARD ─── */
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: all var(--dur-slow) var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.benefit-card:hover {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

/* ─── STAT BOX ─── */
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
}

.stat-box .label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}

.stat-box .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

/* ─── SHIMMER (Loading Skeleton) ─── */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-md);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes goldPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes ambientMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.7s var(--ease-snap) both;
}

.anim-fade {
  animation: fadeIn 0.5s ease both;
}

.anim-scale {
  animation: scaleIn 0.5s var(--ease-snap) both;
}

.anim-float {
  animation: float 4s ease-in-out infinite;
}

.anim-ambient {
  animation: ambientMove 12s ease-in-out infinite;
}

.pulse-gold {
  animation: goldPulse 2s ease infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* ─── GRADIENT BACKGROUNDS ─── */
.ambient-glow-tl {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ambient-glow-br {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── VERIFIED BADGE ─── */
.verified-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.verified-badge .shield {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ─── STEP INDICATOR ─── */
.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-item .step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ─── SEARCH BAR ─── */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-full);
  overflow: hidden;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.search-bar:focus-within {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.search-bar input::placeholder {
  color: var(--text-faint);
}

.search-bar button {
  padding: 0.5rem 1.25rem;
  background: var(--gold-400);
  color: var(--bg-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin: 0.25rem;
  transition: background var(--dur-fast);
}

.search-bar button:hover {
  background: var(--gold-300);
}

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(13, 11, 6, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-soft);
}

/* ─── TAG / CHIP ─── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-full);
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ─── ACTIVE NAV INDICATOR ─── */
.nav-active {
  color: var(--gold-400) !important;
}

.nav-active::after {
  width: 100% !important;
}

/* ─── DROPDOWN ─── */
.dropdown-menu {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast);
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-400);
}

/* ─── FOOTER ─── */
.footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--gold-400);
}

.footer-link .arrow {
  font-size: 0.5rem;
  color: var(--text-faint);
  transition: color var(--dur-fast), transform var(--dur-fast);
}

.footer-link:hover .arrow {
  color: var(--gold-400);
  transform: translateX(3px);
}

/* ─── SCROLL TO TOP BTN ─── */
.scroll-top-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-med);
  font-size: 0.75rem;
}

.scroll-top-btn:hover {
  background: var(--gold-400);
  color: var(--bg-body);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

/* ─── INFO BOX ─── */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
}

.info-box .info-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.4);
  margin-bottom: 0.2rem;
}

.info-box .info-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.breadcrumb .sep {
  color: var(--text-faint);
  font-size: 0.5rem;
}

.breadcrumb .current {
  color: var(--gold-400);
}

/* ─── SECTION DIVIDER ─── */
.section-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-soft), transparent);
  margin: 0;
}

/* ─── HERO WATERMARK ─── */
.watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* ─── RESPONSIVE GRID HELPERS ─── */
.grid-ads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
}

@media (min-width: 640px) {
  .grid-ads {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .grid-ads {
    gap: 1.5rem;
  }
}

/* District Grid */
.grid-districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .grid-districts {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
}

@media (min-width: 768px) {
  .grid-districts {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .grid-districts {
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
  }
}


/* ─── HEADER / NAVBAR ─── */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-med), border-color var(--dur-med), box-shadow var(--dur-med);
}

#main-header.scrolled {
  background: rgba(13, 11, 6, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .navbar-inner {
    height: 72px;
    padding-inline: 2rem;
  }
}

/* ─── MOBILE MENU ─── */
#mobile-menu {
  display: none;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.25rem 1.5rem 1.75rem;
}

#mobile-menu.open {
  display: block;
}

/* ─── TRANSITION HELPERS ─── */
.transition-colors {
  transition: color var(--dur-fast), background-color var(--dur-fast);
}

.transition-all-med {
  transition: all var(--dur-med) var(--ease-luxury);
}

.transition-transform {
  transition: transform var(--dur-med) var(--ease-luxury);
}

/* ─── ASPECT RATIOS ─── */
.aspect-card {
  aspect-ratio: 3 / 4.5;
}

.aspect-gallery {
  aspect-ratio: 3 / 4;
}

/* ─── EMPTY AD SLOT ─── */
.empty-ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, #131109 0%, #0d0b06 100%);
  border: 1px dashed rgba(212, 175, 55, 0.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s var(--ease-luxury);
}

.empty-ad-slot:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(145deg, #1a1710 0%, #0d0b06 100%);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.empty-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.empty-ad-slot:hover .empty-glow {
  opacity: 1;
}

.empty-ad-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.06;
  filter: grayscale(100%);
  transition: opacity 0.5s ease, transform 1.2s var(--ease-luxury);
  pointer-events: none;
}

.empty-ad-slot:hover .empty-ad-img {
  opacity: 0.12;
  transform: scale(1.05);
}

.empty-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.02);
  transition: all 0.5s var(--ease-luxury);
  margin-bottom: 1rem;
}

.empty-ad-slot:hover .empty-icon {
  transform: scale(1.1) translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1), inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.empty-action {
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-luxury);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.empty-ad-slot:hover .empty-action {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SELECTION ─── */
::selection {
  background: rgba(212, 175, 55, 0.25);
  color: var(--text-primary);
}