/* ═══════════════════════════════════════════
   DUBAI ELITE — LUXURY DARK GOLD THEME
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #06060a;
  --bg-2:        #0d0d14;
  --bg-3:        #15151e;
  --bg-card:     #0f0f18;
  --border:      rgba(201,160,68,.12);
  --border-2:    rgba(201,160,68,.28);
  --border-3:    rgba(201,160,68,.48);
  --text:        #f0ede6;
  --text-2:      #9a9080;
  --text-3:      #5c5448;
  --gold:        #c9a044;
  --gold-light:  #e2be78;
  --gold-dim:    rgba(201,160,68,.14);
  --gold-glow:   rgba(201,160,68,.22);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.8);
  --transition:  .22s ease;
  --font:        'Inter', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --header-h:    76px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

.header, main, .footer {
  opacity: 0;
  transform: translateY(16px);
  animation: enter .65s cubic-bezier(.22,1,.36,1) forwards;
}
.header { animation-delay: .02s; }
main   { animation-delay: .08s; }
.footer{ animation-delay: .14s; }

@keyframes enter {
  to { opacity: 1; transform: none; }
}

/* ── GOLD DIVIDER ── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap; letter-spacing: .03em; font-size: 14px;
  cursor: pointer;
}
.btn--sm  { font-size: 13px; padding: 8px 20px; border-radius: var(--radius-sm); }
.btn--md  { padding: 11px 28px; }
.btn--lg  { font-size: 15px; padding: 14px 36px; border-radius: var(--radius-lg); letter-spacing: .06em; }
.btn--full{ width: 100%; }

.btn--gold {
  background: var(--gold);
  color: #06060a;
  border: 1px solid transparent;
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 28px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--border-2);
  color: var(--text);
}

/* ═══════════════════════════════════════════
   AGE GATE
═══════════════════════════════════════════ */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.age-gate__backdrop {
  position: absolute; inset: 0;
  background: rgba(6,6,10,.96);
  backdrop-filter: blur(8px);
}
.age-gate__box {
  position: relative; z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  max-width: 420px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.8), 0 0 60px var(--gold-dim);
}
.age-gate__crown {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 12px var(--gold));
}
.age-gate__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.age-gate__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.age-gate__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate__actions {
  display: flex;
  gap: 12px;
}
.age-gate__actions .btn { flex: 1; }

.age-gate.hidden { display: none; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(6,6,10,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.header__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.header__logo-accent { color: var(--gold); }
.header__logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .25em;
  color: var(--text-3);
  display: block;
  font-family: var(--font);
  text-transform: uppercase;
  margin-top: -2px;
}

.header__nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.header__nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header__nav-link:hover,
.header__nav-link.active { color: var(--text); }
.header__nav-link.active { color: var(--gold); }

.header__controls {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.header__tel {
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.header__tel:hover { color: var(--gold); }

.header__burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header__burger:hover { background: var(--bg-3); }
.header__burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-2); border-radius: 2px;
  transition: var(--transition);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(6,6,10,.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-drawer__link:hover,
.mobile-drawer__link.active { color: var(--gold); }
.mobile-drawer__footer {
  margin-top: auto;
  padding-top: 24px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(201,160,68,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,160,68,.04) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(6,6,10,0) 0%, var(--bg) 100%);
}
/* Geometric lines background */
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,160,68,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,68,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 660px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-3);
  animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll svg { color: var(--gold); opacity: .5; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 36px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 8px 24px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat__value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SECTION TITLES
═══════════════════════════════════════════ */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-2); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
}
.section-header--center .section-desc { margin: 0 auto; }

/* ═══════════════════════════════════════════
   PROFILE CARDS
═══════════════════════════════════════════ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.profile-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 32px var(--gold-dim);
}

.profile-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
}
.profile-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.profile-card:hover .profile-card__img {
  transform: scale(1.04);
}

.profile-card__badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.badge--verified {
  background: rgba(201,160,68,.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,160,68,.35);
}
.badge--premium {
  background: rgba(201,160,68,.9);
  color: #06060a;
  border: 1px solid var(--gold);
}
.badge--new {
  background: rgba(255,255,255,.1);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
}

.profile-card__available {
  position: absolute; top: 12px; right: 12px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  border: 1.5px solid rgba(6,6,10,.8);
}

.profile-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,6,10,.92) 60%);
  padding: 40px 16px 16px;
}
.profile-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.profile-card__meta {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 3px;
}
.profile-card__district {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: .04em;
}
.profile-card__district svg { flex-shrink: 0; }

.profile-card__body {
  padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.profile-card__price {
  font-size: 13px;
  color: var(--text-2);
}
.profile-card__price strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.profile-card__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.profile-card:hover .profile-card__arrow {
  background: var(--gold);
  color: #06060a;
}

/* ═══════════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════════ */
.filter-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.filter-bar__inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.filter-bar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
}
.filter-select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  padding: 8px 32px 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239a9080' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.filter-select:focus {
  outline: none;
  border-color: var(--border-2);
}
.filter-select:hover { border-color: var(--border-2); }

.filter-toggle {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  transition: var(--transition);
  cursor: pointer;
}
.filter-toggle.active,
.filter-toggle:hover {
  border-color: var(--border-2);
  color: var(--gold);
}
.filter-toggle .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}

.filter-bar__count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.step {
  background: var(--bg-2);
  padding: 44px 36px;
  text-align: center;
}
.step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.step__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   PROFILE DETAIL PAGE
═══════════════════════════════════════════ */
.profile-page { padding: 48px 0 96px; }

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Gallery */
.gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.gallery__main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.gallery__thumb.active,
.gallery__thumb:hover { border-color: var(--gold); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Profile info */
.profile-info { display: flex; flex-direction: column; gap: 24px; }

.profile-name {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.profile-tagline {
  font-size: 15px;
  color: var(--text-2);
}

.profile-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.profile-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.profile-block__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.profile-stat { }
.profile-stat__label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.profile-stat__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.profile-about {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
}

.services-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--gold-dim);
  border: 1px solid var(--border-2);
  color: var(--gold-light);
}

.rates-table { width: 100%; border-collapse: collapse; }
.rates-table tr { border-bottom: 1px solid var(--border); }
.rates-table tr:last-child { border-bottom: none; }
.rates-table td {
  padding: 12px 0;
  font-size: 14px;
}
.rates-table td:first-child { color: var(--text-2); }
.rates-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 16px;
}

.profile-contact-block {
  background: linear-gradient(135deg, rgba(201,160,68,.08) 0%, rgba(201,160,68,.02) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}
.profile-contact-block__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.profile-contact-block__sub {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.contact-btns {
  display: flex; flex-direction: column; gap: 10px;
}

.lang-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.lang-pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
}

/* Page header */
.page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-header__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.page-header__sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid__text { }
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual__inner {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  opacity: .15;
  user-select: none;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,160,68,.08) 0%, transparent 70%);
}

.values-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.value-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
}
.value-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.value-item__text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-input,
.form-textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--border-2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--border-2); }
.contact-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.contact-item__note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer__brand-logo .accent { color: var(--gold); }
.footer__tagline {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 13px;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-3);
}
.footer__disclaimer {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 600px;
  text-align: right;
}

/* ═══════════════════════════════════════════
   NO RESULTS
═══════════════════════════════════════════ */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-2);
}
.no-results__icon { font-size: 40px; margin-bottom: 16px; }
.no-results__title { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin-bottom: 8px; }
.no-results__sub { font-size: 14px; color: var(--text-3); }

/* ═══════════════════════════════════════════
   BACK LINK
═══════════════════════════════════════════ */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 32px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .profile-layout { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .gallery__main { aspect-ratio: 4/5; max-width: 480px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header__nav { display: none; }
  .header__tel { display: none; }
  .header__burger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .stats__grid .stat:nth-child(2n)::before {
    content: '';
    position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
    display: block;
  }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__disclaimer { text-align: center; }
  .profiles-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
  .hero { padding: 56px 0; min-height: calc(100svh - var(--header-h)); }
  .section { padding: 64px 0; }
  .profile-stats { grid-template-columns: repeat(3, 1fr); }
  .filter-bar__inner { gap: 8px; }
  .filter-select { font-size: 12px; padding: 7px 28px 7px 10px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 36px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .profiles-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .age-gate__box { padding: 36px 28px; }
  .gallery__main { max-width: 100%; }
  .profile-name { font-size: 32px; }
}

/* ═══════════════════════════════════════════
   BLOG — LIST
═══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}
.blog-card__img-wrap { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-3); }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  line-height: 1.3; margin-bottom: 12px;
}
.blog-card__excerpt { color: var(--text-2); font-size: 15px; line-height: 1.7; flex: 1; }
.blog-card__more {
  margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--gold);
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__more { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   BLOG — ARTICLE
═══════════════════════════════════════════ */
.article { max-width: 760px; margin: 0 auto; }
.article__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-2); margin-bottom: 28px;
  transition: color var(--transition);
}
.article__back:hover { color: var(--gold); }
.article__meta {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.article__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.15; letter-spacing: -.01em;
}
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.article__tag {
  padding: 5px 14px; border-radius: 999px;
  background: var(--gold-dim); border: 1px solid var(--border-2);
  color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: .03em;
}
.article__cover {
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 40px; border: 1px solid var(--border);
}
.article__cover img { width: 100%; max-height: 460px; object-fit: cover; }
.article__body { color: var(--text); font-size: 17px; line-height: 1.85; }
.article__body p { margin-bottom: 22px; color: var(--text-2); }
.article__body strong { color: var(--text); font-weight: 600; }
.article__body h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 26px; line-height: 1.3; color: var(--text);
  margin: 40px 0 16px;
}
.article__body ul { margin: 0 0 22px; padding-left: 4px; }
.article__body li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  color: var(--text-2); font-size: 16px;
}
.article__body li::before {
  content: '◆'; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 11px;
}
.article__body blockquote {
  margin: 32px 0; padding: 20px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; line-height: 1.5; color: var(--text);
}
.article__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .article__cta .btn { flex: 1; }
}
