:root {
    --bg: #050506;
    --bg-elevated: rgba(10, 10, 12, 0.8);
    --bg-card: rgba(12, 12, 16, 0.9);
    --border-soft: rgba(255, 255, 255, 0.08);
    --accent: #d4b48c;
    --accent-soft: rgba(212, 180, 140, 0.25);
    --accent-strong: #f4e3c4;
    --text-main: #f8f5f0;
    --text-muted: #b7b0a5;
    --surface-glass: rgba(12, 12, 16, 0.85);
    --danger: #ff4b6a;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 999px;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
    --container-width: 1120px;
}

/* базовые */

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

html {
    scroll-behavior: smooth;
}

body.page {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.page-bg-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 0, rgba(212, 180, 140, 0.12), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 190, 200, 0.18), transparent 55%),
        radial-gradient(circle at 50% 120%, rgba(180, 200, 255, 0.12), transparent 55%),
        linear-gradient(135deg, #050506 0%, #090914 40%, #050506 100%);
    z-index: -2;
}

.page-noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    opacity: 0.65;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* скрытый текст для SEO/доступности */

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.7));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.35), transparent 55%),
        radial-gradient(circle at 70% 100%, rgba(212, 180, 140, 0.5), transparent 55%);
    font-family: "Playfair Display", serif;
    font-size: 18px;
    letter-spacing: 0.18em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.logo-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    position: relative;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    padding: 6px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transition: width 0.25s ease-out;
}

.nav-link:hover {
    color: var(--text-main);
}

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

/* Кнопки */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: radial-gradient(circle at 10% 0, rgba(244, 227, 196, 0.55), rgba(212, 180, 140, 0.9));
    color: #1b1410;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
    cursor: pointer;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
}

.btn-outline {
    background: transparent;
    color: var(--accent-strong);
    border-color: rgba(212, 180, 140, 0.5);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(212, 180, 140, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
}

.btn-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.btn-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.25s ease-out;
}

.btn-text:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: 32px 0 72px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(5, 5, 6, 0.15), transparent 50%),
        linear-gradient(to bottom, rgba(5, 5, 6, 0.75), rgba(5, 5, 6, 0.96));
}

.hero-light-beam {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% -5%, rgba(255, 255, 255, 0.22), transparent 50%),
        conic-gradient(from 180deg at 20% 0%, rgba(244, 227, 196, 0.3), transparent 30%, transparent 70%, rgba(244, 227, 196, 0.4));
    opacity: 0.5;
    mix-blend-mode: screen;
    filter: blur(40px);
    animation: beamShift 12s ease-in-out infinite alternate;
}

@keyframes beamShift {
    0% {
        transform: translate3d(-6%, 0, 0) rotate(0deg);
        opacity: 0.35;
    }

    100% {
        transform: translate3d(4%, 6%, 0) rotate(-5deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent-strong);
    margin-bottom: 12px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 18px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-search {
    max-width: 720px;
}

.glass-card {
    background: var(--surface-glass);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(26px);
}

.hero-search-inner {
    padding: 16px 18px 16px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.hero-search-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.hero-field select,
.hero-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 9, 12, 0.85);
    color: var(--text-main);
    font-size: 13px;
    outline: none;
}

.hero-field select:focus,
.hero-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(212, 180, 140, 0.5);
}

.hero-search-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.hero-note {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Общие секции */

.section {
    padding: 64px 0;
}

.section-alt {
    background: radial-gradient(circle at 0 100%, rgba(255, 255, 255, 0.05), transparent 60%);
}

.section-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-header {
    max-width: 720px;
}

.section-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent-strong);
    margin-bottom: 8px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin: 0 0 12px;
}

.section-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Статистика */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 22px 22px 20px;
    text-align: left;
}

.stat-value {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 6px;
}

.stat-label {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* Категории */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(5, 5, 6, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.category-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.category-content {
    padding: 16px 16px 16px;
}

.category-content h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.category-content p {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 180, 140, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-strong);
}

/* hover-карточек */

.lift-card {
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}

.lift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 180, 140, 0.6);
}

/* Карта */

.map-section .map-wrapper {
    position: relative;
    padding: 16px;
    border-radius: var(--radius-lg);
}

.map-image {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.map-point {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: radial-gradient(circle at 30% 0, #fff, var(--accent));
    box-shadow: 0 0 0 0 rgba(212, 180, 140, 0.6);
    cursor: pointer;
    transform: translate(-50%, -50%);
    padding: 0;
}

.map-point-pulse {
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(212, 180, 140, 0.5);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.map-tooltip {
    position: absolute;
    bottom: 18px;
    left: 18px;
    max-width: 360px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.map-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip-inner {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 20px;
    background: rgba(5, 5, 6, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.map-tooltip-photo {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-image: url("../img/category-venue.jpg");
}

.map-tooltip-title {
    margin: 0 0 4px;
    font-size: 14px;
}

.map-tooltip-text {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Блок вдохновения */

.inspirations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.inspiration-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.inspiration-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.inspiration-content {
    padding: 16px;
}

.inspiration-content h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.inspiration-content p {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.inspiration-tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 180, 140, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* Page hero */

.page-hero {
    padding: 40px 0 28px;
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent-strong);
}

.page-title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.page-subtitle {
    margin: 0;
    font-size: 15px;
    color: var(--text-muted);
    max-width: 640px;
}

/* Каталог */

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.catalog-filters {
    padding: 18px 18px 20px;
    border-radius: var(--radius-lg);
}

.filters-title {
    margin: 0 0 16px;
    font-size: 16px;
}

.filters-group {
    margin-bottom: 16px;
}

.filters-group h4 {
    font-size: 13px;
    margin: 0 0 8px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-chip {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 14, 0.6);
    padding: 6px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    cursor: pointer;
}

.filter-chip.is-active {
    background: rgba(212, 180, 140, 0.2);
    border-color: rgba(212, 180, 140, 0.7);
    color: var(--accent-strong);
}

.filters-hint {
    margin: 8px 0 0;
    font-size: 11px;
    color: var(--text-muted);
}

.catalog-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.catalog-count {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pro-card {
    background: rgba(10, 10, 14, 0.9);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pro-card-media {
    position: relative;
}

.pro-card-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.pro-card-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(5, 5, 6, 0.85);
    border: 1px solid rgba(212, 180, 140, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.pro-card-content {
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pro-card-title {
    margin: 0;
    font-size: 16px;
}

.pro-card-role {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.pro-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.pro-card-rating {
    font-size: 12px;
}

.stars {
    color: var(--accent-strong);
    margin-right: 4px;
}

.rating-value,
.rating-count {
    font-size: 12px;
    color: var(--text-muted);
}

.pro-card-footer {
    padding: 0 14px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.pro-card-price {
    margin: 0;
    font-size: 13px;
}

/* Блог */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px солид rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    display: block;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 14px 14px 12px;
}

.blog-card-tag {
    margin: 0 0 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
}

.blog-card-title {
    margin: 0 0 6px;
    font-size: 17px;
}

.blog-card-title a {
    color: var(--text-main);
    text-decoration: none;
}

.blog-card-excerpt {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card-meta {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
}

/* Статья */

.article-hero {
    padding: 40px 0 20px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 55%);
}

.article-body {
    padding: 32px 0 48px;
    max-width: 720px;
}

.article-body h2 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.article-body h3 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.article-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Контакты */

.contacts-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contacts-block {
    padding: 18px 18px 16px;
}

.contacts-block h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.contacts-block p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Страница специалиста */

.pro-hero-inner {
    display: flex;
    gap: 32px;
    align-items: center;
}

.pro-hero-info {
    flex: 1.4;
}

.pro-hero-photo {
    flex: 1;
    overflow: hidden;
}

.pro-hero-photo img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.pro-hero-meta {
    margin: 16px 0 12px;
}

.pro-hero-rating {
    font-size: 14px;
}

.pro-hero-contacts p {
    margin: 0 0 4px;
    font-size: 14px;
}

.pro-hero-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pro-section {
    padding-top: 24px;
}

.pro-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.pro-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pro-block {
    padding: 18px 18px 16px;
    border-radius: var(--radius-lg);
    background: rgba(10, 10, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-block h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.pro-block p {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.pro-packages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.package-card ul {
    margin: 0 0 10px;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-muted);
}

.package-time {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--accent-strong);
}

.package-price {
    margin: 0;
    font-size: 14px;
    color: var(--accent-strong);
}

.pro-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.pro-gallery img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.pro-reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.review-card {
    padding: 14px 14px 12px;
}

.review-text {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.review-author {
    margin: 0;
    font-size: 13px;
    color: var(--accent-strong);
}

.pro-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pro-sidebar-card {
    padding: 16px 16px 14px;
}

.pro-facts {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-muted);
}

.pro-facts li {
    margin-bottom: 4px;
}

/* Footer */

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 60%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 0 18px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-copy {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-columns {
    display: flex;
    gap: 28px;
}

.footer-col {
    min-width: 160px;
}

.footer-title {
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-col li {
    margin-bottom: 4px;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--accent-strong);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 6, 0.96);
}

.footer-bottom-inner {
    padding: 12px 0;
}

.footer-cookies {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
}

/* Анимация текста */

.js-animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    animation: letterIn 0.7s forwards;
}

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

/* Конфетти */

.confetti-piece {
    position: fixed;
    width: 6px;
    height: 10px;
    background: radial-gradient(circle at 0 0, #fff, var(--accent));
    border-radius: 2px;
    opacity: 0.9;
    pointer-events: none;
    z-index: 60;
    animation: confettiFall 1.1s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate3d(20px, 60px, 0) rotate(220deg);
        opacity: 0;
    }
}

/* Адаптив */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-search-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-grid,
    .blog-grid,
    .inspirations-grid,
    .stats-grid,
    .pro-packages,
    .pro-reviews {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pro-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-search-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .categories-grid,
    .catalog-grid,
    .blog-grid,
    .inspirations-grid,
    .stats-grid,
    .pro-packages,
    .pro-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .pro-hero-inner {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .page-title {
        font-size: 26px;
    }
}