/* ОБЩИЕ НАСТРОЙКИ СТИЛЯ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    background-color: #121110;
    color: #e5e2dd;
}

body {
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }

/* НАВИГАЦИОННАЯ ПАНЕЛЬ */
/* ОБНОВЛЕННАЯ СТРУКТУРА ЛОГОТИПА В НАВИГАЦИИ */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Просвет между графическим знаком и шрифтом */
}

.nav-logo {
    /* Автоматический расчет высоты под размер двух строк текста (шрифт + межстрочный интервал) */
    height: calc(1.5rem + 0.9rem + 4px); 
    width: auto;
    object-fit: contain;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    line-height: 1;
}

.logo span {
    font-weight: 300;
    font-size: 0.9rem;
    display: block;
    letter-spacing: 6px;
    margin-top: 4px;
    color: #bfa17a;
    line-height: 1;
}

/* ЦЕНТРАЛЬНЫЙ ГЕОМЕТРИЧЕСКИЙ МАКЕТ HERO */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    /* Золотое сечение: Ширина шрифтового блока ~300px / 1.618 = ~185px */
    width: 185px; 
    height: auto;
    object-fit: contain;
    margin-bottom: 40px; /* Отступ между графикой и основным заголовком */
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    letter-spacing: 25px;
    margin-right: -25px;
    font-weight: 400;
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    letter-spacing: 14px;
    margin-right: -14px;
    color: #bfa17a;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background: rgba(18, 17, 16, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 226, 221, 0.1);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.logo span {
    font-weight: 300;
    font-size: 0.9rem;
    display: block;
    letter-spacing: 6px;
    margin-top: -4px;
    color: #bfa17a;
}

.nav-links a {
    color: #e5e2dd;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #bfa17a;
}

/* ГЛАВНЫЙ ЭКРАН (HERO) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: sepia(20%) grayscale(10%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    letter-spacing: 25px;
    margin-right: -25px;
    font-weight: 400;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    letter-spacing: 14px;
    margin-right: -14px;
    color: #bfa17a;
    text-transform: uppercase;
    margin-top: 10px;
}

/* ОБЩИЕ СЕКЦИИ */
.section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(229, 226, 221, 0.05);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    margin-bottom: 60px;
    text-align: center;
    color: #e5e2dd;
}

/* СЕТКИ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    color: #c4c0b9;
}

.status-box {
    background: rgba(191, 161, 122, 0.05);
    padding: 40px;
    border-left: 3px solid #bfa17a;
}

.status-box h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.status-box p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.status-box .note {
    margin-top: 25px;
    font-style: italic;
    font-size: 0.9rem;
    color: #bfa17a;
}

/* КАТАЛОГ КОЛЛЕКЦИИ */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #1a1917;
    border-radius: 4px;
    overflow: hidden;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even) .product-info {
    direction: ltr;
}

.product-img {
    height: 450px;
    width: 100%;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.03);
}

.product-info {
    padding: 50px;
}

.product-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #bfa17a;
}

.product-info .desc {
    line-height: 1.7;
    color: #c4c0b9;
    margin-bottom: 30px;
    font-weight: 300;
}

.specs {
    list-style: none;
    border-top: 1px solid rgba(229, 226, 221, 0.1);
    padding-top: 20px;
}

.specs li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* ФУТЕР (КОНТАКТЫ) */
.footer {
    background: #0d0c0c;
    padding: 80px 0 40px 0;
}

.footer h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #bfa17a;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.contact-link {
    color: #e5e2dd;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #bfa17a;
}

.copyright {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
}

/* АДАПТИВНОСТЬ ПОД МОБИЛЬНЫЕ СМАРТФОНЫ */
@media (max-width: 768px) {
    .navbar { padding: 15px 5%; }
    .nav-links { display: none; } /* Скроет меню на мобильных для упрощения */
    
	.hero-logo {
        width: 115px; /* Пропорциональное сжатие золотого сечения под мобильный заголовок */
        margin-bottom: 25px;
    }
	
    .hero-content h1 { font-size: 3rem; letter-spacing: 12px; }
    
    .grid-2, .product-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card:nth-child(even) { direction: ltr; }
    .product-img { height: 300px; }
    .product-info { padding: 30px; }
    .section-title { font-size: 1.6rem; }
}