:root {
    --bg: #ffffff;
    --text-main: #000000;
    --text-muted: #666666;
    --border: #e0e0e0;
    --font-main: 'Montserrat', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- ЦЕНТРАЛЬНЫЙ БЛОК --- */
.centered-wrapper {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 0 40px;
    display: flex;
    align-items: flex-start; 
    gap: 60px; 
}

/* --- ЛЕВАЯ КОЛОНКА --- */
.sidebar-column {
    width: 240px;
    height: 100vh;
    position: sticky;
    top: 0; 
    padding: 60px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo-image {
    width: 105px; 
    height: auto;
    display: block;
}

.logo h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.menu a:hover, .menu a.active {
    color: var(--text-main);
}

.sidebar-footer p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- ПРАВАЯ КОЛОНКА --- */
.content-column {
    flex-grow: 1;
    min-width: 0;
    margin-top: 40px;
}

/* --- ФОТО И ЗАГОЛОВОК --- */
.hero-section {
    position: relative;
    height: 600px; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px); /* Уменьшен размер заголовка */
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
    padding-bottom: 10%;
}

/* Верхний и нижний текст на главном фото */
.hero-top-text {
    position: absolute;
    top: 10px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    text-align: center;
    max-width: 80%;
    line-height: 1.5;
}

.hero-bottom-text {
position: absolute;
  bottom: 10px;
  z-index: 2;
  color: rgba(251, 251, 251, 0.85);
  font-size: 16px;
  text-align: center;
  max-width: 80%;
  line-height: 1.5;
  background-color: rgba(1, 1, 1, 0.5);
  padding: 0px 5px 0px 5px;
}

/* --- ТЕКСТ --- */
.text-container {
    max-width: 800px;
}

.content-block {
    margin-bottom: 80px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.content-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #1a1a1a;
}

/* --- ФОРМУЛА --- */
.typographic-formula {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 60px 0;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.typographic-formula .separator {
    color: var(--border);
}

.typographic-formula .result {
    color: var(--text-main);
    /* Убрано подчеркивание */
}

/* --- ИЗОБРАЖЕНИЕ --- */
.sharp-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 80px 0;
}

/* --- СПИСОК ЦЕННОСТЕЙ --- */
.brutal-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Две колонки */
    gap: 30px;
}

.brutal-list li {
    margin-bottom: 0;
}

.brutal-list li strong {
    display: block;
    font-size: 16px; /* Уменьшен размер шрифта */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.brutal-list li span {
    display: block;
    font-size: 14px; /* Уменьшен размер шрифта */
    line-height: 1.6;
    color: #1a1a1a;
}

/* --- FAQ --- */
.faq-section {
    margin-top: 100px;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 17px;
    color: #333333;
}

/* --- АДАПТИВ --- */
@media (max-width: 900px) {
    .centered-wrapper {
        flex-direction: column;
        margin: 0 auto;
        padding: 0;
        gap: 0;
    }

    .sidebar-column {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 20px 30px;
        background: var(--bg);
        z-index: 100;
    }

    .hero-title {
    padding-bottom: 0%;}

    .hero-top-text {
    display:none;}

    .hero-bottom-text {
    display:none;}

    .logo {
        align-items: center;}

    .logo-image {
    width: 150px;}

    .logo h2 {
        font-size: 22px;
        align-items : center;}

    .logo h2 br { display: none; }
    .sidebar-footer { display: none; }
    
    .menu { 
        display: none
    }
    .menu a { font-size: 14px; }

    .hero-section {
        height: 50vh;
        margin-bottom: 40px;
    }

    .text-container {
        padding: 0 30px 60px;
    }

    .content-block h2 { font-size: 24px; }
    .content-block p, .faq-item p { font-size: 16px; }
    .typographic-formula { font-size: 18px; }
    
    /* Ценности на мобильном */
    .brutal-list {
        grid-template-columns: 1fr; /* Одна колонка на узких экранах */
        gap: 20px;
    }
}