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

body {
    font-family: 'Inter', sans-serif;
    color: #000;
    line-height: 1.4;
    background-color: #fff;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: -80vw;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 120vw;
    border-radius: 60vw;
    background-color: #f4f4ec; /* Цвет круга, можно изменить */
    z-index: -1; /* Отправляем круг на задний план */
    pointer-events: none; /* Чтобы клики проходили сквозь круг */
}

/* Шапка */
header {
    background-color: #f4f4ec;
    padding: 20px 0;
    top: 0;
    z-index: 100;
}

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

    max-width: 1900px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center; /* Выравнивание по вертикали */
    gap: 20px; /* Отступ между логотипом и текстом */
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
}

.header-logo {
    height: 50px; /* Фиксированная высота для десктопа */
    width: auto; /* Ширина подстраивается автоматически */
    max-width: 100px; /* Максимальная ширина */
    object-fit: contain; /* Сохраняет пропорции */
    transition: transform 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #d32f2f;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d32f2f;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.main-title-section {
    padding: 60px 0 60px;
    text-align: left;
    position: relative;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 90px;
    text-transform: uppercase;
    letter-spacing: 1px;
    

    max-width: 1400px;
}

.button {
    display: inline-block;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    background-color: #000;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    letter-spacing: 1px;
    border-radius: 10px;
}

.button:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button-section {
    text-align: center;
    justify-content: space-between;
    width: 100%;
    margin: 60px 0 50px 0;
}

.about-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 54px;
    color: #272023;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 6px;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 0;
    color: #4A4C49;
    line-height: 1.6;
}

.product-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    color: #4A4C49;
    line-height: 1.3;
    margin: 35px 0 10px 0;
}

.product-text {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #4A4C49;
    line-height: 1.6;
}

.item-title {
    text-align: left;
    font-family: 'Yeseva One';
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 2px;
    color: #4A4C49;
    line-height: 1.3;
    margin: 30px 0;
}

.item-subtitle {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    color: #4A4C49;
    line-height: 1.3;
    margin: 20px 0;
}

.item-text {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #4A4C49;
    line-height: 1.6;
}

.product-subtitle {
    text-align: left;
    font-family: 'Yeseva One';
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    margin-left: 100px;
    letter-spacing: 30px;
    color: #969696;
}

.product-type {
    font-family: 'Yeseva One';
    color: #4A4C49;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2px;
}

.type-columns {
    display: flex;
    align-items: flex-start;
    gap: 65px;
    margin: 50px 0;
}

.type-column-left{
    flex: 1;
    text-align: right;
}

.type-column-right {
    flex: 1;
    text-align: left;
}

contacts-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 54px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
    color: #272023;
    padding-top: 60px;
}

.contacts-section {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.contacts-main-container {
    display: flex;
    flex: 1;
    min-height: 45vh;
}

.contacts-container {
    flex: 0 0 50%;
    background: #2A2A2A;
    display: flex;
}

.contacts-header {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.contacts-column {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: auto;
}

#map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #4a76a8;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-note {
    font-size: 16px;
    color: #888;
    font-style: italic;
    margin-top: 4px;
}

.vertical-side-image {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px; /* Фиксированная ширина */
    height: 100vh; /* На всю высоту экрана */
    z-index: -9999; /* Очень низкий z-index, чтобы было под всем */
    pointer-events: none; /* Игнорирует клики */
    overflow: hidden;
}

.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Растягиваем по высоте */
    object-position: left center; /* Центрируем по левому краю */
    
    /* Прозрачность */
    opacity: 0.4;
    
    /* Градиент для плавного исчезновения слева */
    mask-image: linear-gradient(to left, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.8) 30%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.8) 30%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0) 100%);
    
    /* Фильтры для эстетики */
    filter: brightness(1.1) saturate(0.9);
}

body > *:not(.vertical-side-image) {
    position: relative;
    z-index: 1;
}

header {
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

main {
    position: relative;
    z-index: 10;
}

footer {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.98);
}

.circle-background {
    position: relative;
    z-index: -1;
}