:root {
    --ink: #201829;
    --ink-soft: #6e6578;
    --night: #150d20;
    --night-2: #251431;
    --paper: #fffdfd;
    --paper-alt: #f8f3f7;
    --line: #eadfe8;
    --rose: #d63070;
    --rose-dark: #a91e53;
    --rose-light: #fde5ef;
    --gold: #d5a25d;
    --white: #fff;
    --shadow-sm: 0 10px 30px rgba(42, 17, 39, .08);
    --shadow-lg: 0 30px 80px rgba(28, 10, 29, .18);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --container: 1240px;
    --transition: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.eyebrow {
    margin-bottom: 12px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: linear-gradient(135deg, var(--rose), #b31f62); box-shadow: 0 12px 28px rgba(214, 48, 112, .24); }
.button--primary:hover { box-shadow: 0 16px 34px rgba(214, 48, 112, .34); }
.button--ghost { color: #625769; border-color: #dfd5df; background: #fff; }
.button--ghost-dark { color: var(--night); border-color: rgba(21, 13, 32, .25); background: transparent; }

.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--rose); font-size: 14px; font-weight: 800; }
.text-link span { font-size: 20px; transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
    background: rgba(21, 13, 32, .94);
    backdrop-filter: blur(18px);
}

.site-header__inner { display: flex; align-items: center; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { position: relative; display: grid; width: 38px; height: 38px; place-items: center; transform: rotate(-7deg); }
.brand__mark::before, .brand__mark::after { position: absolute; width: 23px; height: 34px; border-radius: 20px 20px 8px 8px; background: linear-gradient(145deg, #f05a91, var(--rose)); content: ""; }
.brand__mark::before { left: 7px; transform: rotate(-45deg); transform-origin: 0 100%; }
.brand__mark::after { right: 7px; transform: rotate(45deg); transform-origin: 100% 100%; }
.brand__mark span { position: relative; z-index: 1; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 10px 0 0 rgba(255,255,255,.8); }
.brand__text { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 700; letter-spacing: -.03em; }
.brand__text span { color: #ef5a91; }
.brand__text small { font-family: Inter, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0; }

.site-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.site-nav__link { position: relative; padding: 27px 0 24px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.site-nav__link::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; transform: scaleX(0); background: var(--rose); content: ""; transition: transform var(--transition); }
.site-nav__link:hover, .site-nav__link.is-active { color: #fff; }
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }

.header-search { display: inline-flex; align-items: center; gap: 8px; margin-left: 36px; padding: 10px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 700; transition: background var(--transition), border-color var(--transition); }
.header-search:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.header-search svg, .input-with-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: #fff; transition: transform var(--transition), opacity var(--transition); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 92px 0 0; color: #fff; background: radial-gradient(circle at 72% 40%, #412040 0, transparent 30%), linear-gradient(125deg, #130b1d 0%, #21102c 56%, #180c23 100%); }
.hero::before { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 82%); content: ""; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .2; }
.hero__glow--one { top: 60px; right: 10%; width: 360px; height: 360px; background: var(--rose); }
.hero__glow--two { bottom: -200px; left: -100px; width: 480px; height: 480px; background: #6b2f84; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 470px; }
.hero__copy { position: relative; z-index: 3; padding-bottom: 100px; }
.hero h1 { max-width: 730px; margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6vw, 82px); font-weight: 500; letter-spacing: -.05em; }
.hero h1 em { color: #ed6197; font-weight: 500; }
.hero__lead { max-width: 610px; color: rgba(255,255,255,.67); font-size: 19px; }
.hero__stats { display: flex; gap: 44px; margin-top: 38px; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: Georgia, serif; font-size: 28px; line-height: 1; }
.hero__stats span { margin-top: 7px; color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.hero__art { position: relative; align-self: stretch; min-height: 520px; }
.hero__halo { position: absolute; top: 4%; left: 13%; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.025), 0 0 0 70px rgba(255,255,255,.018); }
.hero__silhouette { position: absolute; right: 6%; bottom: 0; display: grid; width: min(78%, 380px); height: 94%; overflow: hidden; border-radius: 190px 190px 20px 20px; place-items: center; background: radial-gradient(circle at 50% 28%, rgba(255,255,255,.16), transparent 16%), radial-gradient(ellipse at 50% 55%, #702c5a 0%, #31172d 45%, #1a0d21 76%); box-shadow: inset 0 0 90px rgba(255,255,255,.05), 0 34px 100px rgba(0,0,0,.45); }
.hero__silhouette::before { position: absolute; top: 18%; width: 140px; height: 140px; border-radius: 50%; background: rgba(12,6,17,.88); box-shadow: 0 118px 0 65px rgba(12,6,17,.88); content: ""; }
.hero__silhouette span { position: relative; z-index: 1; margin-top: 80px; color: rgba(255,255,255,.06); font-family: Georgia, serif; font-size: 72px; }
.hero__card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(31,14,38,.7); box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.hero__card--top { top: 24%; left: 0; }
.hero__card--bottom { right: 0; bottom: 20%; }
.hero__card i { display: block; width: 9px; height: 9px; border-radius: 50%; background: #66d29c; box-shadow: 0 0 0 5px rgba(102,210,156,.12); }
.hero__card b, .hero__card strong { display: block; color: #fff; font-size: 13px; }
.hero__card span { color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.35; }
.hero__card--bottom strong { color: #f06c9e; font-family: Georgia, serif; font-size: 27px; }
.hero__filter { position: relative; z-index: 5; margin-top: -69px; }

/* Filters */
.catalog-filter { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr auto; gap: 12px; align-items: end; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.catalog-filter--compact { grid-template-columns: 1.35fr 1fr 1fr auto; padding: 18px; border: 0; box-shadow: 0 25px 70px rgba(13, 6, 17, .35); }
.catalog-filter__field label { display: block; margin: 0 0 7px 3px; color: #746a78; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.catalog-filter input, .catalog-filter select, .business-filter input, .business-filter select { width: 100%; height: 50px; border: 1px solid #e4dbe3; border-radius: 11px; outline: none; background: #fff; font-size: 14px; transition: border-color var(--transition), box-shadow var(--transition); }
.catalog-filter input, .business-filter input { padding: 0 15px; }
.catalog-filter select, .business-filter select { padding: 0 38px 0 14px; }
.catalog-filter input:focus, .catalog-filter select:focus, .business-filter input:focus, .business-filter select:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(214,48,112,.1); }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; z-index: 1; top: 50%; left: 15px; color: #958a96; transform: translateY(-50%); }
.input-with-icon input { padding-left: 43px; }
.catalog-filter__field--age > div { display: flex; align-items: center; gap: 5px; }
.catalog-filter__field--age input { min-width: 0; padding: 0 7px; text-align: center; }
.catalog-filter__field--age span { color: #a59ca6; }
.catalog-filter__submit { height: 50px; white-space: nowrap; }
.catalog-filter__reset { grid-column: 1 / -1; justify-self: center; margin-bottom: -8px; color: #8f848f; font-size: 12px; text-decoration: underline; }

/* Sections and cards */
.section { padding: 105px 0; }
.section--profiles { padding-top: 100px; background: var(--paper); }
.section--businesses { background: var(--paper-alt); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 48px); font-weight: 500; letter-spacing: -.035em; }
.section-heading--center { justify-content: center; text-align: center; }

.profile-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px 22px; }
.profile-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 7px 24px rgba(44,19,42,.045); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.profile-card:hover { transform: translateY(-6px); border-color: #dbc6d6; box-shadow: 0 22px 48px rgba(44,19,42,.12); }
.profile-card__media { position: relative; display: flex; aspect-ratio: 342 / 440; overflow: hidden; align-items: center; justify-content: center; background: linear-gradient(145deg, #59294b, #24152c); }
.profile-card__media::before { position: absolute; inset: 0; opacity: .32; background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.35), transparent 23%), linear-gradient(160deg, transparent 48%, rgba(0,0,0,.36)); content: ""; }
.profile-card__media--rose { background: linear-gradient(145deg, #a94169, #391a38); }
.profile-card__media--violet { background: linear-gradient(145deg, #714b8a, #2b1a42); }
.profile-card__media--berry { background: linear-gradient(145deg, #9e3c67, #3c1830); }
.profile-card__media--plum { background: linear-gradient(145deg, #60395f, #23182e); }
.profile-card__media--coral { background: linear-gradient(145deg, #b5596b, #45202c); }
.profile-card__media--wine { background: linear-gradient(145deg, #7c2b43, #28131d); }
.profile-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.profile-card:hover .profile-card__media img { transform: scale(1.035); }
.profile-card__initials { position: relative; z-index: 1; color: rgba(255,255,255,.82); font-family: Georgia, serif; font-size: 66px; letter-spacing: -.08em; text-shadow: 0 8px 30px rgba(0,0,0,.28); }
.profile-card__placeholder-label { position: absolute; z-index: 1; bottom: 18px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.badge { position: absolute; z-index: 2; top: 14px; padding: 6px 10px; border-radius: 999px; color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.badge--top { left: 14px; background: var(--rose); }
.badge--business { right: 14px; background: rgba(20,11,27,.7); backdrop-filter: blur(8px); }
.profile-card__body { padding: 17px 17px 15px; }
.profile-card__headline { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.profile-card__headline h3 { min-width: 0; margin: 0; font-family: Georgia, serif; font-size: 22px; font-weight: 600; }
.profile-card__headline h3 a { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.profile-card__headline > span { flex-shrink: 0; color: #887d88; font-size: 12px; }
.profile-card__location { display: flex; align-items: center; gap: 6px; min-height: 22px; margin: 7px 0 0; color: #766c77; font-size: 12px; }
.profile-card__location svg, .profile-summary__location svg { width: 15px; fill: none; stroke: var(--rose); stroke-width: 1.7; }
.profile-card__business { display: block; overflow: hidden; margin-top: 5px; color: var(--rose); font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.profile-card__footer { display: flex; align-items: center; justify-content: space-between; min-height: 38px; margin-top: 13px; padding-top: 12px; border-top: 1px solid #eee6ed; color: #766d76; font-size: 12px; }
.profile-card__phone { color: var(--ink); font-weight: 700; }
.round-link { display: grid; width: 31px; height: 31px; border-radius: 50%; color: var(--rose); place-items: center; background: var(--rose-light); font-size: 17px; transition: color var(--transition), background var(--transition); }
.profile-card:hover .round-link { color: #fff; background: var(--rose); }

.business-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.business-card { overflow: hidden; border: 1px solid #e6dae3; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.business-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(44,19,42,.13); }
.business-card__media { position: relative; display: grid; height: 190px; overflow: hidden; place-items: center; background: radial-gradient(circle at 70% 25%, rgba(216,70,126,.35), transparent 28%), linear-gradient(135deg, #25132f, #4a2045); }
.business-card__media img { width: 100%; height: 100%; object-fit: cover; }
.business-card__icon svg { width: 70px; fill: none; stroke: rgba(255,255,255,.7); stroke-linejoin: round; stroke-width: 1.4; }
.business-card__count { position: absolute; right: 13px; bottom: 13px; padding: 6px 10px; border-radius: 999px; color: #fff; background: rgba(15,7,19,.68); font-size: 10px; font-weight: 800; backdrop-filter: blur(7px); }
.business-card__body { padding: 21px; }
.business-card__body h3 { margin-bottom: 7px; font-family: Georgia, serif; font-size: 24px; }
.business-card__body p { margin-bottom: 13px; color: var(--ink-soft); font-size: 13px; }

/* How and safety */
.how { background: #fff; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 45px; counter-reset: step; }
.how__grid article { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.how__grid article > span { position: absolute; top: 20px; right: 24px; color: #eee5ec; font-family: Georgia, serif; font-size: 46px; }
.how__icon { display: grid; width: 52px; height: 52px; margin-bottom: 25px; border-radius: 17px; color: var(--rose); place-items: center; background: var(--rose-light); font-size: 26px; }
.how__grid h3 { margin-bottom: 10px; font-family: Georgia, serif; font-size: 23px; }
.how__grid p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.safety { padding: 60px 0; color: #fff; background: linear-gradient(125deg, #24122f, #150d20); }
.safety__inner { display: flex; align-items: center; gap: 28px; max-width: 900px; }
.safety__icon { display: grid; flex: 0 0 64px; height: 64px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #f06b9e; place-items: center; font-family: Georgia, serif; font-size: 34px; }
.safety h2 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.safety p:last-child { margin-bottom: 0; color: rgba(255,255,255,.62); }

/* Page headers and archives */
.page-hero { padding: 74px 0 84px; color: #fff; text-align: center; background: radial-gradient(circle at 50% 110%, rgba(214,48,112,.28), transparent 40%), linear-gradient(135deg, #1d1028, #120b1b); }
.page-hero .container { max-width: 850px; }
.page-hero h1 { margin-bottom: 13px; font-family: Georgia, serif; font-size: clamp(46px, 7vw, 70px); font-weight: 500; letter-spacing: -.04em; }
.page-hero > .container > p:last-child { margin: 0; color: rgba(255,255,255,.62); font-size: 17px; }
.breadcrumbs { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 34px; color: rgba(255,255,255,.55); font-size: 12px; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs--dark { justify-content: flex-start; margin: 0; }
.catalog-area { min-height: 600px; padding: 54px 0 100px; background: var(--paper-alt); }
.filter-panel { margin-top: -92px; margin-bottom: 40px; }
.filter-mobile-toggle { display: none; }
.catalog-toolbar { display: flex; justify-content: space-between; margin-bottom: 22px; color: #7c727c; font-size: 13px; }
.catalog-toolbar p { margin: 0; }
.catalog-toolbar strong { color: var(--ink); }
.business-filter { display: grid; grid-template-columns: 1.2fr 1fr auto auto; align-items: center; gap: 12px; margin-top: -90px; margin-bottom: 43px; padding: 20px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.business-filter > a { padding: 10px; color: #8f848f; font-size: 12px; text-decoration: underline; }
.business-grid--archive { grid-template-columns: repeat(3, 1fr); }
.empty-state { padding: 85px 24px; border: 1px dashed #d9cad6; border-radius: var(--radius); text-align: center; background: #fff; }
.empty-state > span { display: block; color: #dac8d6; font-family: Georgia, serif; font-size: 60px; }
.empty-state h2 { margin: 7px 0 10px; font-family: Georgia, serif; font-size: 30px; }
.empty-state p { color: var(--ink-soft); }

.pagination { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; }
.pagination__pages { display: flex; align-items: center; gap: 6px; }
.pagination__pages a { display: grid; width: 40px; height: 40px; border: 1px solid #ded2db; border-radius: 50%; place-items: center; background: #fff; font-size: 13px; font-weight: 700; }
.pagination__pages a:hover, .pagination__pages a.is-current { color: #fff; border-color: var(--rose); background: var(--rose); }
.pagination__pages span { padding: 0 5px; color: #9b919b; }
.pagination__edge { color: var(--rose); font-size: 13px; font-weight: 800; }

/* Profile detail */
.detail-top { padding: 25px 0; color: #fff; background: var(--night); }
.profile-detail { padding: 44px 0 70px; background: #fff; }
.profile-detail__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, .72fr); gap: 58px; max-width: 1110px; }
.profile-gallery__main { position: relative; display: flex; min-height: 660px; overflow: hidden; align-items: center; justify-content: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.profile-gallery__main::before { position: absolute; inset: 0; opacity: .35; background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.3), transparent 25%), linear-gradient(160deg, transparent 48%, rgba(0,0,0,.32)); content: ""; }
.profile-gallery__main img { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 660px; object-fit: cover; }
.profile-gallery__initials { position: relative; z-index: 1; color: rgba(255,255,255,.8); font-family: Georgia, serif; font-size: 110px; }
.profile-gallery__main small { position: absolute; z-index: 1; bottom: 28px; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.profile-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 12px; }
.profile-gallery__thumbs button { aspect-ratio: 1; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 10px; background: #eee; }
.profile-gallery__thumbs button:hover { border-color: var(--rose); }
.profile-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.profile-summary { padding-top: 15px; }
.profile-summary__topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.profile-summary h1 { margin: 7px 0 10px; font-family: Georgia, serif; font-size: clamp(48px, 5vw, 68px); font-weight: 500; letter-spacing: -.045em; }
.badge--inline { position: static; display: inline-block; color: var(--rose); background: var(--rose-light); }
.favorite-button { flex: 0 0 48px; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--rose); background: #fff; font-size: 27px; }
.profile-summary__location { display: flex; align-items: flex-start; gap: 8px; color: var(--ink-soft); }
.profile-summary__location svg { flex: 0 0 18px; margin-top: 3px; }
.profile-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; margin: 30px 0; border: 1px solid var(--line); border-radius: 15px; background: var(--line); }
.profile-facts div { display: flex; flex-direction: column; padding: 18px 11px; text-align: center; background: #fff; }
.profile-facts span { color: #978c97; font-size: 10px; text-transform: uppercase; }
.profile-facts strong { margin-top: 4px; font-family: Georgia, serif; font-size: 18px; }
.language-list { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: var(--ink-soft); font-size: 12px; }
.language-list b { display: grid; min-width: 32px; height: 26px; padding: 0 7px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); place-items: center; background: var(--paper-alt); font-size: 9px; }
.business-inline { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-alt); }
.business-inline__icon { display: grid; width: 39px; height: 39px; border-radius: 11px; color: var(--rose); place-items: center; background: var(--rose-light); }
.business-inline > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.business-inline small { color: #8b818b; font-size: 10px; }
.business-inline strong { font-family: Georgia, serif; font-size: 17px; }
.business-inline > b { color: var(--rose); }
.contact-box { padding: 24px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, #281333, #170c21); box-shadow: var(--shadow-lg); }
.contact-box > span { display: block; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-box > a, .contact-box > strong { display: block; margin: 4px 0; color: #f3689d; font-family: Georgia, serif; font-size: 29px; }
.contact-box small { color: rgba(255,255,255,.48); font-size: 10px; }

.detail-content { padding: 80px 0; background: var(--paper-alt); }
.detail-content__grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; max-width: 1110px; }
.content-card { margin-bottom: 22px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.content-card h2 { margin-bottom: 20px; font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.content-card p:last-child { margin-bottom: 0; }
.prose, .muted { color: var(--ink-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a, .tag-list span { padding: 8px 12px; border: 1px solid #e7d8e3; border-radius: 999px; color: #6d4b60; background: #fdf6fa; font-size: 12px; }
.tag-list a:hover { color: #fff; border-color: var(--rose); background: var(--rose); }
.tag-list--quiet span { color: #6f666f; background: #faf8fa; }
.detail-aside { align-self: start; position: sticky; top: 100px; }
.notice-card { margin-bottom: 16px; padding: 24px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, #44213e, #24132f); }
.notice-card strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 21px; }
.notice-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.notice-card--light { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.notice-card--light p { color: var(--ink-soft); }
.section--similar { background: #fff; }

/* Business detail */
.business-detail { padding: 62px 0; background: linear-gradient(140deg, #faf5f8, #fff); }
.business-detail__hero { position: relative; display: grid; grid-template-columns: 320px 1fr; gap: 45px; align-items: center; }
.business-detail__image { display: grid; height: 280px; overflow: hidden; border-radius: var(--radius-lg); place-items: center; background: radial-gradient(circle at 70% 25%, rgba(216,70,126,.35), transparent 28%), linear-gradient(135deg, #25132f, #4a2045); box-shadow: var(--shadow-lg); }
.business-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.business-detail__image svg { width: 100px; fill: none; stroke: rgba(255,255,255,.72); stroke-linejoin: round; stroke-width: 1.3; }
.business-detail__copy { max-width: 650px; }
.business-detail h1 { margin-bottom: 12px; font-family: Georgia, serif; font-size: 55px; font-weight: 500; }
.business-detail__copy > p { color: var(--ink-soft); }
.business-detail__contacts { display: flex; gap: 10px; margin-top: 24px; }
.business-detail__stat { position: absolute; right: 0; bottom: -20px; display: flex; flex-direction: column; padding: 18px 25px; border-radius: 16px; color: #fff; background: var(--night); box-shadow: var(--shadow-lg); }
.business-detail__stat strong { color: #ef6198; font-family: Georgia, serif; font-size: 30px; line-height: 1; }
.business-detail__stat span { margin-top: 4px; color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; }

/* Footer */
.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.68); background: #100918; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 70px; }
.brand--footer { color: #fff; }
.site-footer__lead { max-width: 390px; margin: 20px 0 0; font-size: 14px; }
.site-footer h2 { margin-bottom: 16px; color: #fff; font-family: Georgia, serif; font-size: 19px; font-weight: 500; }
.site-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 13px; }
.site-footer a:hover { color: #fff; }
.site-footer__grid p { margin-bottom: 0; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: 10px; }
.site-footer__bottom p { margin: 0; max-width: 600px; }

/* Age gate and errors */
.age-gate[hidden] { display: none; }
.age-gate { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 20px; place-items: center; }
.age-gate__backdrop { position: absolute; inset: 0; background: rgba(8,4,12,.88); backdrop-filter: blur(12px); }
.age-gate__panel { position: relative; width: min(100%, 500px); padding: 46px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; color: #fff; text-align: center; background: radial-gradient(circle at 50% 0, rgba(214,48,112,.22), transparent 36%), #1b1025; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.age-gate__mark { display: grid; width: 72px; height: 72px; margin: 0 auto 25px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #f1689b; place-items: center; font-family: Georgia, serif; font-size: 30px; }
.age-gate h2 { margin-bottom: 13px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.age-gate__panel > p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.age-gate__actions { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.error-page { display: grid; min-height: 650px; padding: 80px 0; place-items: center; text-align: center; background: var(--paper-alt); }
.error-page strong { display: block; color: #eadde7; font-family: Georgia, serif; font-size: 130px; line-height: .8; }
.error-page h1 { margin-bottom: 14px; font-family: Georgia, serif; font-size: 45px; }
.error-page p:not(.eyebrow) { color: var(--ink-soft); }

@media (max-width: 1080px) {
    .profile-grid { grid-template-columns: repeat(3, 1fr); }
    .catalog-filter { grid-template-columns: repeat(3, 1fr); }
    .catalog-filter__submit { align-self: end; }
    .catalog-filter--compact { grid-template-columns: 1.3fr 1fr 1fr auto; }
    .hero__art { opacity: .82; }
    .business-detail__stat { position: static; justify-self: start; grid-column: 2; }
}

@media (max-width: 860px) {
    .site-header__inner { min-height: 66px; }
    .nav-toggle { display: block; }
    .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .site-nav { position: absolute; top: 66px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; margin: 0; padding: 12px 20px 22px; border-top: 1px solid rgba(255,255,255,.08); background: #160d20; }
    .site-nav.is-open { display: flex; flex-direction: column; }
    .site-nav__link { padding: 13px 5px; }
    .site-nav__link::after { display: none; }
    .header-search { margin-left: 10px; }
    .header-search span { display: none; }

    .hero { padding-top: 68px; }
    .hero__inner { grid-template-columns: 1fr; min-height: auto; }
    .hero__copy { padding: 0 0 90px; text-align: center; }
    .hero__lead { margin-inline: auto; }
    .hero__stats { justify-content: center; }
    .hero__art { display: none; }
    .catalog-filter--compact { grid-template-columns: 1fr 1fr; }
    .catalog-filter--compact .catalog-filter__submit { width: 100%; }

    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .business-grid, .business-grid--archive { grid-template-columns: repeat(2, 1fr); }
    .how__grid { grid-template-columns: 1fr; }
    .profile-detail__grid { grid-template-columns: 1fr; gap: 35px; }
    .profile-gallery__main { min-height: 600px; }
    .profile-summary { padding-top: 0; }
    .detail-content__grid { grid-template-columns: 1fr; }
    .detail-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .notice-card { margin: 0; }
    .business-detail__hero { grid-template-columns: 260px 1fr; gap: 30px; }
    .business-detail__stat { grid-column: 1 / -1; }
    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand__mark { width: 31px; height: 31px; transform: scale(.82) rotate(-7deg); }
    .brand__text { font-size: 21px; }
    .header-search { width: 39px; height: 39px; padding: 0; justify-content: center; }
    .hero { padding-top: 53px; }
    .hero h1 { font-size: 46px; }
    .hero__lead { font-size: 16px; }
    .hero__stats { gap: 22px; }
    .hero__stats strong { font-size: 24px; }
    .hero__filter { margin-top: -32px; }
    .catalog-filter--compact { grid-template-columns: 1fr; padding: 16px; }
    .section { padding: 75px 0; }
    .section--profiles { padding-top: 105px; }
    .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
    .section-heading h2 { font-size: 36px; }
    .profile-grid { gap: 14px 10px; }
    .profile-card { border-radius: 14px; }
    .profile-card__body { padding: 12px; }
    .profile-card__headline { display: block; }
    .profile-card__headline h3 { font-size: 18px; }
    .profile-card__headline > span { font-size: 10px; }
    .profile-card__initials { font-size: 45px; }
    .profile-card__placeholder-label { display: none; }
    .profile-card__business { font-size: 9px; }
    .profile-card__footer { min-height: 30px; margin-top: 8px; padding-top: 8px; }
    .profile-card__phone { overflow: hidden; max-width: calc(100% - 35px); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
    .round-link { width: 27px; height: 27px; }
    .badge { top: 8px; padding: 4px 7px; font-size: 7px; }
    .badge--top { left: 8px; }
    .badge--business { right: 8px; }
    .business-grid, .business-grid--archive { grid-template-columns: 1fr; }
    .safety__inner { align-items: flex-start; }
    .safety__icon { flex-basis: 48px; height: 48px; }
    .page-hero { padding: 52px 0 70px; }
    .page-hero h1 { font-size: 45px; }
    .filter-mobile-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-top: -80px; margin-bottom: 22px; padding: 17px 19px; border: 0; border-radius: 13px; color: #fff; background: var(--rose); font-weight: 800; }
    .filter-panel { display: none; margin: 0 0 28px; }
    .filter-panel.is-open { display: block; }
    .catalog-filter { grid-template-columns: 1fr; padding: 17px; }
    .business-filter { grid-template-columns: 1fr; margin-top: -83px; }
    .catalog-toolbar { margin-top: 20px; }
    .pagination { justify-content: center; }
    .pagination__edge { display: none; }
    .profile-gallery__main, .profile-gallery__main img { min-height: 500px; }
    .profile-detail { padding-top: 25px; }
    .profile-summary h1 { font-size: 45px; }
    .profile-facts { grid-template-columns: repeat(2, 1fr); }
    .detail-content { padding: 55px 0; }
    .content-card { padding: 24px; }
    .detail-aside { grid-template-columns: 1fr; }
    .business-detail__hero { grid-template-columns: 1fr; }
    .business-detail__image { height: 230px; }
    .business-detail h1 { font-size: 43px; }
    .business-detail__stat { grid-column: 1; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 35px; }
    .site-footer__bottom { flex-direction: column; gap: 12px; }
    .age-gate__panel { padding: 32px 21px; }
    .age-gate__actions { flex-direction: column; }
}
