/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --section-pad-y: 120px;
    --section-pad-y-md: 88px;
    --section-pad-y-sm: 64px;
    --header-to-content: 72px;
    --header-to-content-md: 48px;
    --header-to-content-sm: 40px;
    --grid-gap-lg: 32px;
    --grid-gap-md: 24px;
    --grid-gap-sm: 20px;
    --hero-gap: 80px;
    --hero-gap-md: 44px;
    --hero-gap-sm: 36px;
    --radius-card: 20px;
    --radius-hero-img: 22px;
    /* Текст на тёмном фоне: светлее для контраста (WCAG-friendly) */
    --text-primary: #f0f0f5;
    --text-secondary: #d8d8e6;
    --text-tertiary: #c6c6d4;
    --text-subtle: #aeb0bf;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #0a0a0a;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 56px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #7c94f0 0%, #8a5fb8 50%, #f5a3fc 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

/* Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #ffffff;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--hero-gap);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero-text {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.hero-title {
    margin-bottom: 24px;
}

.title-main {
    display: block;
    font-size: 4rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.title-subtitle {
    display: block;
    margin-top: 12px;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #a5b4fc;
    text-transform: none;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    margin-top: 4px;
    line-height: 1.65;
    font-weight: 400;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    min-height: 56px;
    border-radius: 12px;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: min(420px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1898 / 2530;
    max-height: min(72vh, 640px);
    border-radius: var(--radius-hero-img);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
    background: #14141a;
}

.hero-main-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform 0.6s ease;
}

.image-wrapper:hover .hero-main-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 32px 32px;
    color: white;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.overlay-content i {
    color: #667eea;
    font-size: 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--header-to-content);
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}

.section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    padding-bottom: 20px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
    margin-top: 24px;
    font-weight: 400;
    line-height: 1.65;
}

/* About Section */
.about {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 24px;
    margin-top: 40px;
    font-weight: 700;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-top: 24px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.45;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.features-list li:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.features-list i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 14px;
    margin-top: 2px;
    font-size: 1.15rem;
    width: 22px;
    flex-shrink: 0;
    text-align: center;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 800;
}

.stat p {
    color: var(--text-tertiary);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: var(--section-pad-y) 0;
    background: #0a0a0a;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--grid-gap-lg);
    position: relative;
    z-index: 2;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 36px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-tertiary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: var(--text-subtle);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card li:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* Two-column piercing list */
.piercing-list {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    justify-content: space-between;
}

.piercing-column {
    flex: 1;
}

.piercing-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.piercing-column li {
    color: var(--text-subtle);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.piercing-column li:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.piercing-column li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.additional-text {
    color: var(--text-tertiary);
    font-style: italic;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap-md);
    position: relative;
    z-index: 2;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 32px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Reviews Section */
.reviews {
    padding: var(--section-pad-y) 0;
    background: #0a0a0a;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--grid-gap-lg);
    position: relative;
    z-index: 2;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 36px;
    border-radius: var(--radius-card);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
}


.review-author h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-author span {
    color: var(--text-subtle);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: block;
    align-items: start;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
}

.contact-info {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-right: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.contact-details a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: #764ba2;
    text-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

.booking-callout {
    margin-top: 28px;
    padding: 32px 28px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    text-align: center;
}

.booking-callout h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.booking-callout p {
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.booking-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 34px rgba(102, 126, 234, 0.35);
    transition: all 0.3s ease;
}

.booking-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(102, 126, 234, 0.45);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 8px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--text-secondary);
    padding: 72px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-subtle);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-subtle);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #667eea;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-subtle);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll animations — слабый сдвиг, чтобы не казалось что «шрифт перескакивает» */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: clamp(48px, 6vw, 72px);
        padding: 0;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .title-accent {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--grid-gap-md);
    }

    .about,
    .services,
    .gallery,
    .reviews,
    .contact {
        padding: var(--section-pad-y-md) 0;
    }

    .section-header {
        margin-bottom: var(--header-to-content-md);
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
        z-index: 1002;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1003;
    }

    /* Компактное меню справа под «гамбургером», не на весь экран */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 12px;
        left: auto;
        width: min(292px, calc(100vw - 24px));
        max-height: min(440px, calc(100vh - 96px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: rgba(18, 18, 22, 0.97);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 10px 8px;
        text-align: left;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
        z-index: 1001;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        font-size: 16px;
        font-weight: 500;
        padding: 14px 16px;
        border-radius: 12px;
        text-align: left;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-menu {
            transition: opacity 0.2s ease, visibility 0.2s;
            transform: none;
        }

        .nav-menu.active {
            transform: none;
        }
    }

    .hero {
        min-height: 0;
        padding: 96px 0 72px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--hero-gap-md);
        text-align: center;
        padding: 0;
        justify-items: center;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    .hero-image {
        order: 2;
        height: auto;
        width: 100%;
        max-width: min(380px, 92vw);
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Мобильный герой: фото целиком, ровный блок */
    .image-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: unset;
        width: 100%;
        min-height: 0;
        max-height: min(70vh, 560px);
        height: auto;
        border-radius: var(--radius-hero-img);
    }

    .hero-main-image {
        position: static;
        width: 100%;
        height: auto;
        max-height: min(68vh, 540px);
        object-fit: contain;
        object-position: center center;
    }

    .image-wrapper:hover .hero-main-image {
        transform: none;
    }

    .image-overlay {
        padding: 28px 20px 20px;
    }

    .about,
    .services,
    .gallery,
    .reviews,
    .contact {
        padding: var(--section-pad-y-md) 0;
    }

    .section-header {
        margin-bottom: var(--header-to-content-md);
    }

    .section-header h2 {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }

    .section-header p {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .title-main {
        font-size: 3rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--hero-gap-md);
        align-items: stretch;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap-md);
        padding: 0;
    }
    
    .service-card {
        max-width: 100%;
        padding: 32px 26px;
    }
    
    .piercing-list {
        flex-direction: column;
        gap: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap-md);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap-md);
        padding: 0;
    }
    
    .review-card {
        max-width: 100%;
        padding: 32px 26px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .contact-item {
        padding: 20px 22px;
    }

    /* Футер: колонка за колонкой — бренд → услуги (список в 2 колонки) → контакты */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        align-items: center;
    }

    .footer-section:first-child h3 {
        margin-bottom: 16px;
    }

    .footer-section h4 {
        margin-bottom: 14px;
        font-size: 1.15rem;
    }

    .footer-section:nth-child(2) {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-section:nth-child(2) p {
        margin-bottom: 10px;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .social-links {
        justify-content: center;
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-subtitle {
        font-size: 1.05rem;
    }

    .nav-logo h2 {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: var(--header-to-content-sm);
        padding: 0 4px;
    }

    .section-header h2 {
        font-size: 2.25rem;
        padding-bottom: 18px;
    }

    .section-header p {
        font-size: 1.05rem;
        margin-top: 18px;
    }

    .hero {
        padding: 88px 0 56px;
    }

    .hero-content {
        gap: var(--hero-gap-sm);
        padding: 0;
        justify-items: center;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }

    .hero-image {
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-wrapper {
        max-height: min(64vh, 500px);
        border-radius: 18px;
    }

    .hero-main-image {
        max-height: min(62vh, 480px);
    }

    .about,
    .services,
    .gallery,
    .reviews,
    .contact {
        padding: var(--section-pad-y-sm) 0;
    }

    .footer {
        padding: 56px 0 24px;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .service-card,
    .review-card {
        padding: 24px 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid,
    .gallery-grid,
    .reviews-grid {
        padding: 0;
        gap: var(--grid-gap-sm);
    }
    
    .gallery-item {
        max-width: 100%;
    }

    .booking-callout {
        margin-top: 24px;
        padding: 28px 22px;
    }
}

/* Additional Premium Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c94f0 0%, #8a5fb8 100%);
}