/* ===== RESET ===== */
html { box-sizing: border-box; overflow-x: hidden; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; font-size: 16px; }
@media (max-width: 480px) { html { font-size: 14px; } }

*, *::before, *::after { box-sizing: inherit; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, var(--season-glow-1), transparent 36%),
    radial-gradient(circle at bottom right, var(--season-glow-2), transparent 42%),
    var(--bg-body);
  margin: 0; padding: 0; color: var(--text-main);
  -webkit-font-smoothing: antialiased; -moz-osx-osx-font-smoothing: grayscale;
  overflow-x: hidden; min-width: 320px;
  line-height: 1.5;
}

/* ===== CSS VARS ===== */
:root {
  --accent: #d4af37;
  --accent-2: #aa8a1e;
  --accent-rgb: 212, 175, 55;
  --bg-body: #0a0a0c;
  --bg-card: #14141a;
  --bg-header: #050508;
  --bg-header-solid: rgba(8, 8, 11, 0.98);
  --text-main: #f3f4f6;
  --text-muted: #8c8c94;
  --text-inv: #1a1505;
  --card-radius: 20px;
  --card-border: rgba(212, 175, 55, 0.08);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.45);
  --card-shadow-hover: 0 20px 50px rgba(0,0,0,0.65);
  --overlay: rgba(0,0,0,0.82);
  --season-glow-1: rgba(212, 175, 55, 0.14);
  --season-glow-2: rgba(212, 175, 55, 0.06);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 114px;
  --container-max: 1320px;
  --container-pad: max(16px, 4vw);
}

/* Primary Container Utility */
.container-fluid {
  width: min(var(--container-max), 100% - 32px);
  margin-left: auto;
  margin-right: auto;
}

/* Fluid Typography */
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }

/* Premium Gradient */
.btn-gold-prestige {
  background: linear-gradient(135deg, var(--accent) 0%, #f9d976 45%, var(--accent) 55%, #b8860b 100%);
  color: var(--text-inv);
}

/* ===== LIGHT THEME OVERRIDE ===== */
html[data-theme="light"],
body[data-theme="light"] {
  --bg-body: #f9fafb;
  --bg-card: #ffffff;
  --bg-header: #ffffff;
  --bg-header-solid: rgba(255, 255, 255, 0.98);
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-inv: #1a1505;
  --card-border: rgba(0, 10, 30, 0.08);
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);
  --overlay: rgba(0, 0, 0, 0.5);
  --season-glow-1: rgba(212, 175, 55, 0.09);
  --season-glow-2: rgba(212, 175, 55, 0.05);
}

/* Light Theme Header & Nav */
html[data-theme="light"] header { border-bottom: 1px solid rgba(0,0,0,.06); color: var(--text-main); }
html[data-theme="light"] .logo { color: var(--text-main); }
html[data-theme="light"] .burger span { background: var(--text-main); }
html[data-theme="light"] .burger { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .nav-search { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .nav-search input { color: var(--text-main); }
html[data-theme="light"] .nav-search input::placeholder { color: var(--text-muted); }
html[data-theme="light"] .nav-search svg { stroke: var(--text-muted); }
html[data-theme="light"] .search-close-btn { color: var(--text-muted); }
html[data-theme="light"] .search-icon-btn, html[data-theme="light"] .action-btn { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color: var(--text-main); }
html[data-theme="light"] .action-btn.add-profile-btn { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
html[data-theme="light"] .nav-secondary { background: rgba(255,255,255,0.8); border-top: 1px solid rgba(0,0,0,.05); }
html[data-theme="light"] .nav-pill { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color: var(--text-muted); }
html[data-theme="light"] .nav-pill.active { color: var(--text-main); background: rgba(var(--accent-rgb), 0.15); border-color: var(--accent); }
html[data-theme="light"] .meta-btn { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color: var(--text-main); }
html[data-theme="light"] .theme-toggle-btn { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color: var(--text-main); }

/* Light Theme Sidebar Drawer */
html[data-theme="light"] .services-drawer { background: rgba(255,255,255,0.98); color: var(--text-main); box-shadow: 20px 0 60px rgba(0,0,0,.15); }
html[data-theme="light"] .drawer-logo { background: linear-gradient(135deg, var(--text-main) 30%, var(--accent) 110%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
html[data-theme="light"] .drawer-header, html[data-theme="light"] .drawer-action-row, html[data-theme="light"] .drawer-cats-grid, html[data-theme="light"] .services-section-title, html[data-theme="light"] .drawer-bottom { border-color: rgba(0,0,0,.06); }
html[data-theme="light"] .drawer-tag { color: #fff; }
html[data-theme="light"] .drawer-close { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color: var(--text-muted); }
html[data-theme="light"] .drawer-cta { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.06); }
html[data-theme="light"] .drawer-cta-title { color: var(--text-main); }
html[data-theme="light"] .drawer-cta-sub, html[data-theme="light"] .drawer-section-label, html[data-theme="light"] .services-section-title { color: var(--text-muted); }
html[data-theme="light"] .drawer-cat-tile { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.06); color: var(--text-main); }
html[data-theme="light"] .services-section ul li { color: var(--text-main); }
html[data-theme="light"] .services-section ul li:hover { background: rgba(0,0,0,.04); }
html[data-theme="light"] .drawer-bottom-links a { color: var(--text-muted); }
html[data-theme="light"] .drawer-bottom-copy { color: rgba(0,0,0,.3); }

/* Light Theme Profile Cards & Map */
html[data-theme="light"] .price-row { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.05); }
html[data-theme="light"] .price-row:hover { background: rgba(0,0,0,0.06); border-color: rgba(var(--accent-rgb), 0.3); }
html[data-theme="light"] .tag-gold-dark { color: var(--text-main); background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .tg-btn { background: rgba(0,0,0,0.04); color: var(--text-main); border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .tg-btn:hover { background: rgba(0,0,0,0.08); border-color: rgba(var(--accent-rgb), 0.4); }
html[data-theme="light"] .intim-map-block p { color: var(--text-muted); }

/* ===== SEASONAL BG ===== */
html[data-theme="dark"][data-season="winter"] { --season-glow-1: rgba(126, 177, 255, 0.18); --season-glow-2: rgba(212, 175, 55, 0.08); }
html[data-theme="dark"][data-season="spring"] { --season-glow-1: rgba(212, 175, 55, 0.16); --season-glow-2: rgba(233, 129, 182, 0.08); }
html[data-theme="dark"][data-season="summer"] { --season-glow-1: rgba(255, 196, 65, 0.16); --season-glow-2: rgba(255, 126, 67, 0.07); }
html[data-theme="dark"][data-season="autumn"] { --season-glow-1: rgba(208, 128, 44, 0.16); --season-glow-2: rgba(134, 77, 28, 0.07); }
html[data-theme="light"][data-season="winter"] { --season-glow-1: rgba(154, 190, 255, 0.28); --season-glow-2: rgba(212, 175, 55, 0.07); }
html[data-theme="light"][data-season="spring"] { --season-glow-1: rgba(240, 186, 215, 0.24); --season-glow-2: rgba(212, 175, 55, 0.08); }
html[data-theme="light"][data-season="summer"] { --season-glow-1: rgba(255, 220, 119, 0.24); --season-glow-2: rgba(255, 174, 86, 0.1); }
html[data-theme="light"][data-season="autumn"] { --season-glow-1: rgba(245, 192, 116, 0.25); --season-glow-2: rgba(210, 124, 72, 0.11); }

/* ===== THEME TOGGLE ===== */
.theme-toggle-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08); color: #fff; transition: var(--transition);
  flex-shrink: 0; cursor: pointer;
}
.theme-toggle-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.18); }
.theme-toggle-btn:active { transform: scale(0.93); }
.theme-icon-moon { display: block; }
.theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-sun { display: block; }
[data-theme="light"] .theme-icon-moon { display: none; }

/* ===== AGE GATE ===== */
html.age-verified .age-gate { display: none !important; }
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(145deg, #0a0a14 0%, #110920 60%, #0d0d18 100%);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  transition: opacity .4s, visibility .4s;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 52px 40px 40px; max-width: 440px; width: 100%;
  text-align: center; backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(var(--accent-rgb),.12);
  animation: age-pop .5s cubic-bezier(.22,1,.36,1);
}
@keyframes age-pop { 0% {opacity:0;transform:scale(.9) translateY(8px)} 100% {opacity:1;transform:scale(1) translateY(0)} }
.age-gate-logo {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 2.2em; font-weight: 900; color: #fff; letter-spacing: .5px; margin-bottom: 20px;
}
.age-gate-icon {
  width: 84px; height: 84px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 2.1em; font-weight: 900; color: #fff;
  box-shadow: 0 14px 36px rgba(var(--accent-rgb),.45);
}
.age-gate-title { font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.45em; font-weight: 800; color: #fff; margin-bottom: 12px; }
.age-gate-text { color: rgba(255,255,255,.6); font-size: .95em; line-height: 1.6; margin-bottom: 32px; }
.age-gate-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.age-yes {
  background: linear-gradient(135deg, var(--accent) 0%, #f9d976 45%, var(--accent) 55%, #b8860b 100%); 
  color: var(--text-inv);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px; padding: 16px 24px;
  font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.05em; font-weight: 700; cursor: pointer;
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), .3); transition: transform .15s, box-shadow .2s;
}
.age-yes:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(var(--accent-rgb), .45); }
.age-yes:active { transform: scale(.97); }
.age-no {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 14px 24px; font-size: .93em; font-weight: 600; display: block;
  transition: background .2s, color .2s;
}
.age-no:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.age-gate-note { font-size: .74em; color: rgba(255,255,255,.28); line-height: 1.5; }

/* ===== SEASON PARTICLES ===== */
.season-particles { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 40; overflow: hidden; }
.season-particle { position: absolute; top: -30px; pointer-events: none; user-select: none; will-change: transform; }
@keyframes snowfall { 0%{transform:translateY(0) rotate(0);opacity:.7} 100%{transform:translateY(100vh) rotate(360deg) translateX(20px);opacity:0} }
@keyframes petalfall { 0%{transform:translateY(0) rotate(0);opacity:.8} 50%{transform:translateY(50vh) rotate(180deg) translateX(-15px)} 100%{transform:translateY(100vh) rotate(360deg) translateX(30px);opacity:0} }
@keyframes starfall { 0%{transform:translateY(0) scale(1);opacity:1} 100%{transform:translateY(100vh) scale(.5) rotate(360deg);opacity:0} }
@keyframes leaffall { 0%{transform:translateY(0) rotate(0);opacity:.8} 50%{transform:translateY(50vh) rotate(200deg) translateX(20px)} 100%{transform:translateY(100vh) rotate(400deg) translateX(-10px);opacity:0} }


/* ===== GARLAND (winter) ===== */
.xmas-garland { position: absolute; top: 0; left: 0; right: 0; height: 60px; pointer-events: none; z-index: 100; overflow: visible; }
.garland-string { position: absolute; top: 8px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,#2d5a27 5%,#3d7a37 50%,#2d5a27 95%,transparent); }
.xmas-lights { position: absolute; top: 3px; left: 0; right: 0; display: flex; justify-content: space-around; padding: 0 10px; }
.xmas-light { width: 6px; height: 10px; border-radius: 50% 50% 50% 50%/30% 30% 70% 70%; animation: blink 1.1s ease-in-out infinite; box-shadow: 0 0 6px currentColor; }
.xmas-light.red {background:#ff3333;color:#ff3333} .xmas-light.yellow {background:#ffdd00;color:#ffdd00;animation-delay:.2s} .xmas-light.green {background:#00ff66;color:#00ff66;animation-delay:.4s} .xmas-light.blue {background:#3399ff;color:#3399ff;animation-delay:.6s} .xmas-light.pink {background:#f9d976;color:#f9d976;animation-delay:.8s}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.xmas-balls { position: absolute; top: 10px; left: 0; right: 0; display: flex; justify-content: space-around; padding: 0 20px; }
.xmas-ball { width: 24px; height: 28px; position: relative; animation: swing 3.2s ease-in-out infinite; }
.xmas-ball::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: #c9a227; border-radius: 1px; }
.ball-body { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 20px; height: 20px; border-radius: 50%; box-shadow: inset -3px -3px 6px rgba(0,0,0,.3),inset 3px 3px 6px rgba(255,255,255,.35); }
.xmas-ball.red .ball-body {background:linear-gradient(135deg,#fbbf24,#f59e0b)} .xmas-ball.gold .ball-body {background:linear-gradient(135deg,#f4d03f,#c9a227)}
@keyframes swing { 0%,100%{transform:rotate(-4deg)} 50%{transform:rotate(4deg)} }

/* ===== HEADER ===== */
header {
  background: var(--bg-header); color: #fff; position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: transform .3s ease, box-shadow .25s, background .25s, border-color .25s;
  overflow: visible;
  transform: translateZ(0);
  backface-visibility: hidden;
}
header.compact {
  background: var(--bg-header-solid);
  box-shadow: 0 4px 28px rgba(0,0,0,.4);
}
header.compact .xmas-garland,
header.compact .xmas-corner { opacity: 0; visibility: hidden; pointer-events: none; }
header.header-hidden { transform: translateY(-100%); }

.top-nav { width: min(var(--container-max), 100% - 32px); margin: 0 auto; padding: 48px 0 12px; display: flex; flex-direction: column; gap: 10px; }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.logo {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.85em; font-weight: 900; letter-spacing: .3px; color: #fff;
  cursor: pointer; user-select: none; position: relative; display: inline-block;
  transition: opacity .15s;
}
.logo:hover { opacity: .88; }
.logo-text { position: relative; }

.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0; transition: background .18s, border-color .18s;
}
.burger span { display: block; width: 18px; height: 2px; border-radius: 999px; background: #fff; margin: 0 auto; transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .22s; }
.burger:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); }
.burger.open span:nth-child(1) {transform: translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2) {opacity: 0; transform: scaleX(0)}
.burger.open span:nth-child(3) {transform: translateY(-7px) rotate(-45deg)}

.nav-search {
  display: flex; align-items: center; gap: 10px; flex: 1 1 360px; max-width: 480px;
  min-width: 160px; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 13px; padding: 0 14px; height: 42px; transition: border-color .18s, background .18s;
}
.nav-search:focus-within { border-color: rgba(var(--accent-rgb),.55); background: rgba(255,255,255,.09); }
.nav-search input { flex: 1; background: transparent; border: none; color: #fff; font-size: .9em; outline: none; font-family: inherit; }
.nav-search input::placeholder { color: rgba(255,255,255,.35); }
.search-close-btn { background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.4em; cursor: pointer; line-height: 1; padding: 2px 0; flex-shrink: 0; transition: color .18s; display: none; }
.search-close-btn:hover { color: rgba(255,255,255,.8); }
.nav-search.mobile-visible .search-close-btn { display: block; }

.nav-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.search-icon-btn {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.07);
  color: #fff; transition: background .18s; flex-shrink: 0;
}
.search-icon-btn:hover { background: rgba(255,255,255,.13); }
.action-btn {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 11px;
  padding: 9px 14px; font-size: .87em; font-weight: 600;
  transition: background .18s, border-color .18s, color .18s; white-space: nowrap;
  color: rgba(255,255,255,.85); background: rgba(255,255,255,.07);
}
.action-btn:hover { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.2); }
.action-btn.add-profile-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb),.28);
}
.action-btn.add-profile-btn:hover { box-shadow: 0 6px 20px rgba(var(--accent-rgb),.42); filter: brightness(1.06); }
.btn-label-short { display: none; }

.nav-secondary { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.05); background: rgba(0,0,0,0.2); }
.nav-pills-wrap { display: flex; align-items: center; width: 100%; overflow: hidden; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  overflow-x: auto; scrollbar-width: none; padding: 2px 4px; flex-wrap: nowrap;
  width: 100%; justify-content: flex-start;
  list-style: none; margin: 0;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-pill {
  flex: 0 0 auto; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.75); padding: 8px 18px; border-radius: 12px;
  font-size: .88em; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1); user-select: none;
}
.nav-pill:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.nav-pill.active {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.25), rgba(var(--accent-rgb), 0.1));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.15);
}
.nav-pill-gold { color: #f9d976; border-color: rgba(249, 217, 118, 0.2); }
.nav-pill-gold.active { background: rgba(240,192,64,.15); border-color: rgba(240,192,64,.6); }
.nav-plain { cursor: default; opacity: .55; pointer-events: none; }

.nav-meta { display: flex; align-items: center; gap: 5px; flex-shrink: 0; margin-left: 8px; }
.meta-btn {
  display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09); border-radius: 10px;
  padding: 6px 11px; font-size: .82em; font-weight: 500; cursor: pointer;
  color: rgba(255,255,255,.78); transition: background .18s, color .18s; white-space: nowrap;
}
.meta-btn:hover { background: rgba(255,255,255,.13); color: #fff; }
.caret { opacity: .5; flex-shrink: 0; }

/* ===== SIDEBAR DRAWER ===== */
.mobile-menu { position: fixed; inset: 0; display: flex; pointer-events: none; opacity: 0; transition: opacity .3s; z-index: 2500; }
.services-drawer {
  width: 400px; max-width: 88vw;
  background: rgba(12,12,20,0.96);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  color: #fff; box-shadow: 20px 0 60px rgba(0,0,0,.45);
  transform: translateX(-102%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
  display: flex; flex-direction: column;
  height: 100vh; height: 100dvh; overflow: hidden;
}
.services-overlay { flex: 1; background: var(--overlay); backdrop-filter: blur(3px); cursor: pointer; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu.open .services-drawer { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 20px 16px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.drawer-header-left { display: flex; align-items: center; gap: 10px; }
.drawer-logo {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.7em; font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 110%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.drawer-tag {
  background: var(--accent); color: #fff; font-size: .65em; font-weight: 800;
  border-radius: 7px; padding: 2px 7px; letter-spacing: .5px;
}
.drawer-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .18s; flex-shrink: 0;
}
.drawer-close:hover { background: rgba(var(--accent-rgb),.22); color: #fff; border-color: rgba(var(--accent-rgb),.38); }

.drawer-action-row { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px 12px; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.drawer-cta {
  display: flex; align-items: center; gap: 13px; padding: 11px 13px;
  border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  text-decoration: none; transition: background .18s, border-color .18s, transform .15s;
}
.drawer-cta:hover { background: rgba(var(--accent-rgb),.12); border-color: rgba(var(--accent-rgb),.28); transform: translateX(4px); }
.drawer-cta-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb),.32);
}
.drawer-cta-add .drawer-cta-icon { background: rgba(255,255,255,.1); box-shadow: none; border: 1px solid rgba(255,255,255,.12); }
.drawer-cta-text { flex: 1; min-width: 0; }
.drawer-cta-title { font-size: .9em; font-weight: 700; color: #fff; line-height: 1.2; }
.drawer-cta-sub { font-size: .74em; color: rgba(255,255,255,.42); margin-top: 2px; }
.drawer-cta-arrow { color: rgba(255,255,255,.28); flex-shrink: 0; transition: color .18s, transform .18s; }
.drawer-cta:hover .drawer-cta-arrow { color: rgba(var(--accent-rgb),.7); transform: translateX(2px); }

.drawer-section-label {
  padding: 12px 20px 7px; font-size: .66em; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,.28); text-transform: uppercase; flex-shrink: 0;
}
.drawer-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none; padding-right: 20px; transition: color .18s;
}
.drawer-services-toggle:hover { color: rgba(255,255,255,.6); }
.toggle-arrow { transition: transform .3s cubic-bezier(.4,0,.2,1); opacity: .45; }
.drawer-services-toggle.open .toggle-arrow { transform: rotate(180deg); }

.drawer-cats-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px;
  padding: 0 16px 14px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.drawer-cat-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; padding: 12px 6px; border-radius: 13px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  cursor: pointer; transition: background .18s, border-color .2s, transform .15s;
  color: rgba(255,255,255,.7); font-size: .77em; font-weight: 600; line-height: 1.2; text-align: center;
}
.drawer-cat-tile:hover { background: rgba(var(--accent-rgb),.15); border-color: rgba(var(--accent-rgb),.32); color: #fff; transform: scale(1.04); }
.drawer-cat-tile svg { opacity: .65; transition: opacity .18s; }
.drawer-cat-tile:hover svg { opacity: 1; }
.drawer-cat-gold { color: #f0c040; }
.drawer-cat-gold:hover { background: rgba(240,192,64,.13); border-color: rgba(240,192,64,.38); color: #f0c040; }

.drawer-scroll-area {
  flex: 1; overflow-y: auto; min-height: 0; -webkit-overflow-scrolling: touch;
  padding: 0 18px 28px;
  transition: max-height .35s ease, opacity .25s;
  scrollbar-width: thin; scrollbar-color: rgba(var(--accent-rgb),.3) transparent;
}
.drawer-scroll-area.collapsed { max-height: 0; overflow: hidden; opacity: 0; padding: 0 18px; }
.drawer-scroll-area::-webkit-scrollbar { width: 2px; }
.drawer-scroll-area::-webkit-scrollbar-thumb { background: rgba(var(--accent-rgb),.36); border-radius: 2px; }
.services-section { margin-bottom: 10px; }
.services-section-title {
  font-size: .64em; font-weight: 700; letter-spacing: 1.4px; color: rgba(255,255,255,.28);
  text-transform: uppercase; margin-bottom: 4px; padding: 9px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.services-section:first-child .services-section-title { border-top: none; padding-top: 8px; }
.services-section ul { display: flex; flex-direction: column; list-style: none; padding:0; margin:0; }
.services-section ul li {
  padding: 5px 7px; font-size: .86em; color: rgba(255,255,255,.55);
  cursor: pointer; border-radius: 7px; transition: background .12s, color .12s;
}
.services-section ul li:hover { background: rgba(var(--accent-rgb),.12); color: rgba(255,255,255,.9); }
.services-section ul li.service-selected { background: rgba(var(--accent-rgb),.22); color: #fff; }
.services-section ul li.service-selected::before { content: '✓ '; font-size: .8em; color: var(--accent); }

.drawer-bottom { padding: 10px 18px 14px; border-top: 1px solid rgba(255,255,255,.06); flex-shrink: 0; }
.drawer-bottom-links { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.drawer-bottom-links a { font-size: .75em; color: rgba(255,255,255,.32); transition: color .18s; }
.drawer-bottom-links a:hover { color: rgba(255,255,255,.75); text-decoration: underline; }
.drawer-bottom-copy { font-size: .7em; color: rgba(255,255,255,.18); }

body.services-open { overflow: hidden; }

/* ===== MAIN ===== */
main { width: 100%; }

.banners { width: min(1320px, 100% - 32px); margin: 16px auto 0; padding: 0; contain: layout paint; }
.banner-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 12px;
  padding: 4px 0 0;
  align-items: stretch;
}
.banner-card {
  min-width: 0; border-radius: 14px; overflow: hidden;
  background: var(--bg-card); border: 1px solid rgba(var(--accent-rgb),.16);
  transition: transform .2s, box-shadow .2s, border-color .2s; text-decoration: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.banner-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.28); border-color: rgba(var(--accent-rgb),.42); }
.banner-inner { padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; position: relative; overflow: hidden; min-height: 96px; height: 100%; }
.banner-inner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--accent-rgb),.09), transparent 70%); }
.banner-text { position: relative; z-index: 1; }
.banner-label { color: var(--text-main); font-weight: 700; font-size: .85em; line-height: 1.25; margin-bottom: 4px; }
.banner-sublabel { color: var(--text-muted); font-size: .72em; line-height: 1.3; }
.banner-icon { position: relative; z-index: 1; flex-shrink: 0; color: var(--accent); }

/* ===== SECTIONS ===== */
.profiles { width: min(1320px, 100% - 32px); margin: 32px auto 0; padding: 0; }
.profiles h2 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.6em; font-weight: 800; margin-bottom: 18px;
  color: var(--text-main); letter-spacing: .2px;
}
.online-badge { font-size: .55em; font-weight: 700; margin-left: 8px; vertical-align: middle; display: inline-block; padding-bottom: 3px; }
.online-dot { color: #22c55e; }
#onlineNum { color: #22c55e; }
.profiles-seo { max-width: 1320px; margin: 22px auto 0; padding: 0 16px 52px; color: var(--text-muted); font-size: .88em; line-height: 1.7; }

.intim-map-block { max-width: 1320px; margin: 42px auto; padding: 32px 16px; text-align: center; background: radial-gradient(circle at center, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%); border-radius: 24px; }
.intim-map-block h2 { font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.6em; font-weight: 800; margin-bottom: 10px; color: var(--accent); }
.intim-map-block p { color: rgba(255,255,255,0.5); font-size: 1em; margin-bottom: 20px; }
.map-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #f9d976 45%, var(--accent) 55%, #b8860b 100%);
  color: var(--text-inv);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 28px; font-size: 1em; font-weight: 700;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.25);
}
.map-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.4); filter: brightness(1.05); }

/* ===== PROFILE CARDS ===== */
.profile-list { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 20px; 
}
.profile-card {
  background: var(--bg-card); border: 1px solid var(--card-border);
  border-radius: var(--card-radius); box-shadow: var(--card-shadow);
  padding: 14px; display: flex; flex-direction: column;
  transition: box-shadow .22s, transform .22s; position: relative; cursor: pointer; overflow: hidden;
}
.profile-card-bg {
  pointer-events: none;
}
.profile-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.profile-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: calc(var(--card-radius) + 2px);
  z-index: -1; opacity: 0; transition: opacity .3s; pointer-events: none;
}
[data-season="spring"] .profile-card::before { background: linear-gradient(45deg, var(--accent), #f9d976, var(--accent-2)); background-size: 300% 300%; animation: border-move 4s ease infinite; }
[data-season="summer"] .profile-card::before { background: linear-gradient(45deg, var(--accent), #f9d976, var(--accent-2)); background-size: 300% 300%; animation: border-move 4s ease infinite; }
[data-season="autumn"] .profile-card::before { background: linear-gradient(45deg, var(--accent), #f9d976, var(--accent-2)); background-size: 300% 300%; animation: border-move 4s ease infinite; }
[data-season="winter"] .profile-card::before { background: linear-gradient(45deg, var(--accent), #f9d976, var(--accent-2)); background-size: 300% 300%; animation: border-move 6s ease infinite; }
.profile-card:hover::before { opacity: 1; }
@keyframes border-move { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.profile-img-wrap { width: 100%; height: 200px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; position: relative; background: rgba(0,0,0,.05); flex-shrink: 0; }
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-name { font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.1em; font-weight: 700; color: var(--text-main); margin-bottom: 9px; }
.tier-badge {
  display: inline-flex; align-items: center; margin-left: 6px;
  padding: 2px 8px; border-radius: 999px; font-size: .68em; font-weight: 800;
  background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.92);
  vertical-align: middle;
}

.profile-params { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 9px; }
.param-item {
  background: var(--bg-body); border: 1px solid rgba(var(--accent-rgb),.07);
  border-radius: 10px; padding: 6px 9px; display: flex; align-items: center; gap: 6px;
}
.param-icon { color: var(--accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 14px; }
.param-texts { display: flex; flex-direction: column; min-width: 0; }
.param-label { font-size: .66em; color: var(--text-muted); line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.param-value { font-size: .86em; font-weight: 800; color: var(--text-main); line-height: 1.2; display: flex; align-items: baseline; gap: 2px; }
.param-unit { font-weight: 600; color: var(--text-muted); font-size: .84em; }

.tags-custom { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag {
  border-radius: 8px; padding: 5px 12px; font-weight: 700; font-size: .78em;
  white-space: nowrap; min-height: 28px; display: inline-flex; align-items: center;
  transition: all 0.2s;
}
.tag-gold-dark { background: rgba(var(--accent-rgb), 0.05); border: 1px solid rgba(var(--accent-rgb), 0.2); color: rgba(255,255,255,0.9); }
.tag-gold-light { background: var(--accent); color: var(--text-inv); border: 1px solid transparent; }
.profile-summary {
  font-size: .84em; line-height: 1.55; color: rgba(255,255,255,.8);
  margin: 0 0 14px; min-height: 3.3em;
}
html[data-theme="light"] .profile-summary { color: rgba(17,24,39,.78); }

.profile-price { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.price-row {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; padding: 8px 12px; display: flex; align-items: center; gap: 8px; font-size: .88em;
  transition: all 0.2s;
}
.price-row:hover { background: rgba(255,255,255,0.06); border-color: rgba(var(--accent-rgb), 0.2); }
.price-icon { color: var(--accent); display: flex; align-items: center; justify-content: center; width: 14px; }
.price-label { color: var(--text-main); font-weight: 600; opacity: .82; }
.price-value { font-weight: 800; color: var(--accent-2); margin-left: auto; }

.profile-actions { display: grid; grid-template-columns: 1fr 42px; gap: 8px; margin-top: auto; }
.order-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #f9d976 45%, var(--accent) 55%, #b8860b 100%); 
  color: var(--text-inv);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px; height: 42px; font-size: .88em; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 14px rgba(var(--accent-rgb), .2);
  transition: box-shadow .18s, transform .13s, filter .15s;
  font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 6px;
  white-space: nowrap; padding: 0 12px;
}
.order-btn:hover { box-shadow: 0 8px 24px rgba(var(--accent-rgb), .38); transform: translateY(-1px); filter: brightness(1.08); }
.order-btn:active { transform: scale(.97); }
.tg-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: #0e0e1c; border: 1.5px solid rgba(var(--accent-rgb),.2); border-radius: 11px;
  transition: background .18s, border-color .18s, transform .15s; text-decoration: none;
  color: rgba(255,255,255,.85); flex-shrink: 0;
}
.tg-btn:hover { background: #1a1a2e; border-color: rgba(var(--accent-rgb),.5); transform: scale(1.05); }

/* ===== FOOTER ===== */
.footer-gold { background: #000; border-top: 1px solid rgba(var(--accent-rgb), 0.1); color: #fff; margin-top: 56px; }
.footer-gold-content { width: min(1320px, 100% - 32px); margin: 0 auto; padding: 0; }
.footer-gold-main { display: flex; flex-wrap: wrap; gap: 24px; padding: 32px 0 20px; }
.footer-gold-left { min-width: 200px; flex: 1; }
.footer-gold-title { font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.85em; font-weight: 900; margin-bottom: 8px; color: var(--accent); }
.footer-gold-desc { font-size: .86em; margin-bottom: 16px; line-height: 1.5; opacity: .82; max-width: 240px; }
.footer-tg-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); border: 2px solid var(--accent); border-radius: 12px; color: var(--text-inv); font-size: .9em; font-weight: 700; padding: 10px 18px; transition: opacity .18s; }
.footer-tg-btn:hover { opacity: .88; }
.footer-gold-cols { display: flex; gap: 24px; flex-wrap: wrap; flex: 2; }
.footer-gold-cols > div { display: flex; flex-direction: column; gap: 8px; min-width: 150px; }
.footer-link { color: rgba(255,255,255,.86); font-size: .86em; transition: color .18s; }
.footer-link:hover { color: var(--accent); text-decoration: none; }
.footer-18-col { display: flex; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 13px 0; font-size: .81em; opacity: .6; }

/* ===== MODALS ===== */
.modal-bg {
  position: fixed; z-index: 2000; inset: 0; background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}
.modal-bg.active { opacity: 1; pointer-events: auto; }
.modal-window {
  background: #14141a; border-radius: 28px; box-shadow: 0 32px 80px rgba(0,0,0,.8);
  padding: 40px 32px; max-width: 440px; width: 100%; text-align: center;
  position: relative; transform: scale(0.9) translateY(20px); 
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}
.modal-bg.active .modal-window { transform: scale(1) translateY(0); }
.modal-window::before { display: none; }
.modal-title { font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.6em; font-weight: 900; color: var(--accent); margin-bottom: 12px; line-height: 1.2; }
.modal-text { color: rgba(255,255,255,0.7); font-size: 1.05em; margin-bottom: 28px; line-height: 1.6; }
[data-theme="light"] .modal-window { background: #fff; border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .modal-text { color: #4b5563; }
.modal-write-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #f9d976 45%, var(--accent) 55%, #b8860b 100%);
  color: var(--text-inv);
  border: none; border-radius: 16px; padding: 16px 32px; font-size: 1.1em; font-weight: 800;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; font-family: inherit;
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}
.modal-write-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.45); filter: brightness(1.05); }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 32px; height: 32px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.modal-close:hover { background: rgba(var(--accent-rgb), 0.2); color: #fff; border-color: var(--accent); }
.map-stub { margin-top: 8px; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(60px);
  background: #0e0e1e; color: #fff; padding: 11px 22px; border-radius: 12px;
  font-size: .9em; font-weight: 600; z-index: 9999;
  box-shadow: 0 6px 22px rgba(0,0,0,.3); transition: transform .28s, opacity .28s;
  opacity: 0; pointer-events: none; white-space: nowrap;
  border: 1px solid rgba(var(--accent-rgb),.22);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-thumb { background: rgba(var(--accent-rgb),.35); border-radius: 3px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 24px; right: 20px; z-index: 500;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(var(--accent-rgb),.4);
  opacity: 0; transform: translateY(14px) scale(.85);
  transition: opacity .28s, transform .28s cubic-bezier(.22,1,.36,1); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 12px 32px rgba(var(--accent-rgb),.55); transform: translateY(-2px) scale(1); }

/* ===== RESPONSIVE ===== */

/* Desktop */
@media (min-width: 1025px) {
  .profile-list { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .top-nav { padding: 48px 20px 12px; }
  .profile-list { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
  .logo { font-size: 1.65em; }
  .nav-search { max-width: 380px; }
  .services-drawer { width: 460px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 90px; }
  .top-nav { padding: 38px 14px 10px; gap: 7px; }
  .nav-row.nav-main { display: flex; align-items: center; gap: 8px; }
  .nav-left { flex: 1; }
  .logo { font-size: 1.35em; }

  /* Search: compact top bar on mobile */
  .nav-search { display: none; }
  .nav-search.mobile-visible {
    display: flex; flex-direction: row; align-items: center;
    position: fixed; top: 0; left: 0; right: 0; z-index: 3000;
    padding: 10px 14px; height: 58px; max-width: none; flex: none;
    background: rgba(10,10,18,0.99); border-radius: 0;
    border: none; border-bottom: 1px solid rgba(255,255,255,.1);
    animation: slideDown .25s ease;
  }
  @keyframes slideDown { from {opacity:0;transform:translateY(-8px)} to {opacity:1;transform:translateY(0)} }
  .search-icon-btn { display: flex; }
  .action-btn { padding: 8px 10px; font-size: .82em; }
  .action-btn.login-btn { display: none; }
  .btn-label-long { display: none; }
  .btn-label-short { display: inline; }
  .nav-meta { display: none; }
  .nav-secondary { overflow-x: auto; scrollbar-width: none; padding: 10px 0; background: rgba(0,0,0,0.2); position: relative; width: 100%; }
  .nav-secondary::-webkit-scrollbar { display: none; }
  .nav-pills-wrap { width: 100%; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .nav-links { display: flex; gap: 8px; padding: 0 16px; width: max-content; flex-wrap: nowrap; }
  .nav-pill { padding: 7px 15px; font-size: 0.85em; border-radius: 11px; flex: 0 0 auto; }

  /* Profile grid */
  .profile-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .profile-card { padding: 8px; display: flex; flex-direction: column; min-width: 0; }
  .profile-img-wrap { height: 160px; border-radius: 10px; margin-bottom: 8px; }
  .profile-name { font-size: .88em; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .profile-params { gap: 4px; }
  .param-item { padding: 4px 6px; border-radius: 8px; }
  .param-label { font-size: .58em; }
  .param-value { font-size: .78em; }
  .price-row { padding: 5px 7px; font-size: .78em; border-radius: 10px; }
  .price-value { font-size: .78em; }
  .tag { font-size: .65em; padding: 2px 7px; min-height: 22px; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  .profile-actions { grid-template-columns: 1fr 34px; gap: 5px; }
  .order-btn { height: 34px; font-size: .72em; padding: 0 6px; gap: 3px; border-radius: 9px; }
  .order-btn span { display: inline-block; max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
  .tg-btn { width: 34px; height: 34px; border-radius: 8px; }
  .tg-btn svg { width: 14px; height: 14px; }

  .profiles { margin-top: 20px; padding: 0 16px; width: 100%; }
  .profiles h2 { font-size: 1.25em; margin-bottom: 12px; line-height: 1.3; }
  .banner-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .banner-inner { min-height: 84px; padding: 10px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .top-nav { padding: 36px 12px 9px; }
  .profile-list { grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 8px; }
  .profile-img-wrap { height: 145px; }
  .logo { font-size: 1.2em; }
  .order-btn span { display: none; }
  .order-btn { padding: 0 10px; }
}

/* ===== PERFORMANCE ===== */
.no-transitions *, .no-transitions *::before, .no-transitions *::after {
  transition: none !important;
  animation: none !important;
}

header, .services-drawer, .back-to-top, .modal-bg { will-change: transform, opacity; }
.profile-list { contain: layout style; }
.profile-card { contain: layout style paint; }
* { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
