/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #8B1A1A;
    --primary-light: #A52A2A;
    --primary-dark: #5C0E0E;
    --primary-rgb: 139, 26, 26;
    --secondary-color: #2C1810;
    --accent-color: #C9A96E;
    --accent-light: #D4BA85;
    --text-color: #2D2D2D;
    --text-light: #6B6B6B;
    --text-muted: #999;
    --bg-color: #FDFBF7;
    --bg-warm: #F5F0E8;
    --bg-dark: #1A1A1A;
    --bg-card: #FFFFFF;
    --border-color: #E8E0D4;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-heading: 'Cormorant', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

.required {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 2px;
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    padding: 15px 0;
}

.site-header.scrolled {
    background: rgba(253, 251, 247, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    transition: color var(--transition);
}

.site-header.scrolled .logo {
    color: var(--secondary-color);
}

.logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.logo-text {
    white-space: nowrap;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list a {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-list a:hover::after {
    width: 60%;
}

.nav-list a:hover {
    color: #fff;
}

.site-header.scrolled .nav-list a {
    color: var(--text-color);
}

.site-header.scrolled .nav-list a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.site-header.scrolled .hamburger-line {
    background: var(--secondary-color);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 10px;
}

.mobile-nav-list a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    padding: 12px 20px;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav.active .mobile-nav-list a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-list a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-list a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-list a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-list a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-list a:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-list a:hover {
    color: var(--accent-color);
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 50%, #1a0a05 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(139, 26, 26, 0.1) 0%, transparent 50%);
    animation: hero-glow 8s ease-in-out infinite;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?w=1600&h=900&fit=crop') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 40px 20px;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */
.about-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text .btn {
    margin-top: 1rem;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Stats */
.stats-section {
    padding: 50px 0;
    background: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-color);
    font-variant-numeric: tabular-nums;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 8px;
    font-weight: 400;
}

/* Genre Section */
.genre-section {
    padding: 80px 0;
    background: var(--bg-warm);
}

.genre-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.genre-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.genre-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.genre-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.genre-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(201, 169, 110, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.genre-card-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.genre-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.genre-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
}

.genre-features {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.genre-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.genre-features li i {
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Composition Section */
.composition-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.composition-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.composition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 1rem;
}

.composition-block {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
    overflow: visible;
}

.composition-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.composition-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(var(--primary-rgb), 0.1);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.composition-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.composition-block p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-warm);
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-caption p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.timeline {
    position: relative;
    max-width: 750px;
    margin: 2rem auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 2;
}

.timeline-marker-final {
    background: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-color);
    width: 22px;
    height: 22px;
    left: -34px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background: var(--secondary-color);
    text-align: center;
}

.main-quote {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding: 20px 40px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.main-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #fff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.main-quote cite {
    color: var(--accent-color);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-warm);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin: 0 1px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    flex-grow: 1;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-content .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-content .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.contact-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(201, 169, 110, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: all var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

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

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.captcha-group input {
    flex: 1;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: all var(--transition);
}

.captcha-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.captcha-refresh-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    line-height: 1;
}

.captcha-refresh-btn:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: var(--primary-color);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    padding: 5px 0;
}

.consent-group label {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-light);
    font-weight: 400;
}

.consent-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.site-footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-nav h4,
.footer-contacts h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-nav a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contacts p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contacts p i {
    color: var(--accent-color);
    width: 18px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
    font-family: var(--font-body);
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 99;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.site-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.site-modal .modal-content {
    background: #fff;
    max-width: 700px;
    width: 90%;
    border-radius: 12px;
    padding: 30px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    color: var(--text-color);
}

.site-modal .modal-content h2 {
    margin-bottom: 1.5rem;
    padding-right: 30px;
}

.site-modal .modal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.site-modal .modal-content p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    transition: color var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(0,0,0,0.05);
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    pointer-events: all;
    cursor: ew-resize;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    transform: translateY(-50%);
}

.comparison-divider::before {
    left: 12px;
    border-left: 3px solid #333;
    transform: translateY(-50%) rotate(-45deg);
}

.comparison-divider::after {
    right: 12px;
    border-right: 3px solid #333;
    transform: translateY(-50%) rotate(45deg);
}

.footer-privacy-link {
    text-align: center;
    padding: 10px 0;
}

.footer-privacy-link a {
    color: rgba(255,255,255,0.6);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity var(--transition);
}

.footer-privacy-link a:hover {
    opacity: 1;
    color: var(--accent-color);
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll,
noscript ~ * .animate-on-scroll {
    opacity: 1;
    transform: none;
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
@media (max-width: 1024px) {
    .genre-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .composition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
        max-height: 300px;
    }

    .genre-cards {
        grid-template-columns: 1fr;
    }

    .composition-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 14px;
    }

    .timeline-marker {
        left: -26px;
        width: 14px;
        height: 14px;
    }

    .timeline-marker-final {
        width: 18px;
        height: 18px;
        left: -28px;
    }

    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }

    .comparison-label {
        padding: 6px 12px;
        font-size: 14px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group img {
        align-self: center;
    }

    .site-modal .modal-content {
        width: 95%;
        padding: 20px;
        border-radius: 8px;
    }

    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .logo-text {
        font-size: 1rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

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

    .about-section,
    .genre-section,
    .composition-section,
    .gallery-section,
    .timeline-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }

    .stats-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .genre-card,
    .composition-block,
    .testimonial-card {
        padding: 25px 20px;
    }

    .main-quote p {
        font-size: 1.2rem;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-nav ul {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contacts p {
        justify-content: center;
    }

    .contact-socials {
        justify-content: center;
    }
}
/* [/SITESECTION:10] */