:root {
    --matte-black: #0a0a0a;
    --dark-graphite: #1a1a1a;
    --steel-silver: #a0a5aa;
    --deep-burgundy: #4a0000;
    --georgian-red: #cc0000;
    --warm-skin: #dcb394;
    --text-main: #f0f0f0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--matte-black);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--matte-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: var(--steel-silver);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInOut 2s ease forwards;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background-color: var(--dark-graphite);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--georgian-red);
    animation: loadProgress 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; }
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 5%;
    border-bottom: 1px solid rgba(160, 165, 170, 0.1);
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition-fast);
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--steel-silver);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--georgian-red);
    transition: var(--transition-fast);
}

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

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

.lang-switch {
    display: flex;
    gap: 15px;
}

.lang-btn {
    font-size: 0.8rem;
    color: var(--steel-silver);
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.lang-btn:hover, .lang-btn.active {
    color: var(--text-main);
    font-weight: 600;
}

.lang-btn.active {
    border-bottom: 1px solid var(--georgian-red);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 15px 0;
    letter-spacing: 0.2em;
}

.mobile-langs {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.subheadline {
    color: var(--georgian-red);
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.headline {
    font-size: 5vw;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.btn {
    padding: 15px 40px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--georgian-red);
    color: white;
    border: 1px solid var(--georgian-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--georgian-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--steel-silver);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--steel-silver);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--georgian-red);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Sections */
.section-padding {
    padding: 120px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--georgian-red);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 2px;
    background-color: var(--georgian-red);
    margin-bottom: 40px;
}

.center-line {
    margin: 0 auto 50px auto;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--steel-silver);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-text p {
    color: #888;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--georgian-red);
}

.about-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    padding-top: 120%;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.1);
    transition: var(--transition-slow);
}

.img-wrapper:hover img {
    filter: grayscale(0%) contrast(1.1);
}

.img-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--steel-silver);
    z-index: -1;
    transition: var(--transition-slow);
}

.img-wrapper:hover .img-border {
    top: 10px;
    left: -10px;
    border-color: var(--georgian-red);
}

/* Record Section */
.record {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.record-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.record-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.record-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.9) 100%);
}

.record-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.massive-title {
    font-size: 6rem;
    color: rgba(255,255,255,0.05);
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    margin-bottom: 30px;
    white-space: nowrap;
    text-align: center;
}

.record-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-val {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.detail-desc {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--steel-silver);
    margin-top: 10px;
}

.detail-divider {
    width: 1px;
    height: 60px;
    background-color: var(--deep-burgundy);
}

.record-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--steel-silver);
    font-weight: 300;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--dark-graphite);
    text-align: center;
}

.philosophy-container {
    max-width: 800px;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--georgian-red);
    line-height: 0;
    margin-bottom: 30px;
}

.quote-text {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    text-transform: none;
}

.philosophy-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 20px;
    border: 1px solid var(--steel-silver);
    color: var(--steel-silver);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-card {
    background: linear-gradient(145deg, #1c1c1c, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--georgian-red));
    transition: left 0.5s ease;
}

.media-card:hover {
    transform: translateY(-10px);
    border-color: rgba(204, 0, 0, 0.5);
    background: linear-gradient(145deg, #2a2a2a, #111111);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(204,0,0,0.15);
}

.media-card:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.media-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.media-card p {
    font-size: 0.95rem;
    color: #d0d0d0;
    font-weight: 400;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(50%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-slow);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

/* Contact Section */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-slow);
    background-color: var(--dark-graphite);
}

.contact-btn svg {
    width: 32px;
    height: 32px;
    transition: var(--transition-slow);
}

.contact-btn:hover {
    border-color: var(--georgian-red);
    background-color: transparent;
    color: var(--georgian-red);
}

.contact-btn:hover svg {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 60px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    background-color: var(--matte-black);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--steel-silver);
}

.copyright {
    font-size: 0.8rem;
    color: var(--steel-silver);
    letter-spacing: 0.1em;
}

.copyright a {
    color: var(--steel-silver);
    text-decoration: none;
    transition: var(--transition-fast);
}

.copyright a:hover {
    color: var(--georgian-red);
}

/* Responsive */
@media (max-width: 992px) {
    .headline { font-size: 8vw; }
    .about-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: 1fr; }
    .record-details { flex-direction: column; gap: 20px; }
    .detail-divider { width: 60px; height: 1px; }
    .massive-title { font-size: 4rem; }
    .nav-links, .lang-switch { display: none; }
    .menu-toggle { display: flex; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-links { gap: 20px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}
