/*
Theme Name: dds_bogatyi-stroitel.rf
Author: Алексей Гвоздев
Description: Информационная тема для образовательной платформы по маркетингу для строительных компаний. Холодная инженерная палитра, паттерн «миллиметровка», брутальный минимализм.
Version: 1.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: dds_bs
*/

/* =========================================================================
   Переменные
   ========================================================================= */
:root {
    --bg:          #F4F7FB;
    --bg-alt:      #FFFFFF;
    --bg-dark:     #0B1E33;
    --bg-sidebar:  #E9EFF6;
    --text:        #1A2A3A;
    --accent:      #0088CC;
    --accent-dark: #006699;
    --gold:        #F5A623;
    --muted:       #7A8B9F;
    --line:        #E9EFF6;
    --shell:       1180px;
}

/* =========================================================================
   Сброс и база
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background-color: var(--bg);
    /* Инженерная сетка «миллиметровка» + водяной знак в правом верхнем углу */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'%3E%3Cg fill='none' stroke='%230088CC' stroke-width='2' opacity='0.04'%3E%3Cpath d='M300 40 L300 210 L120 210 Z'/%3E%3Ccircle cx='300' cy='40' r='6'/%3E%3Cpath d='M120 210 L300 210'/%3E%3C/g%3E%3C/svg%3E"),
        repeating-linear-gradient(0deg, rgba(208,217,228,0.2) 0, rgba(208,217,228,0.2) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(208,217,228,0.2) 0, rgba(208,217,228,0.2) 1px, transparent 1px, transparent 40px);
    background-repeat: no-repeat, repeat, repeat;
    background-position: right 2% top 6%, 0 0, 0 0;
    font-family: "Public Sans", "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
    line-height: 1.1;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

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

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

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Ссылки в тексте контента — толстое анимированное подчёркивание при наведении */
.entry-content a,
.widget-text a,
.page-content a {
    position: relative;
    color: var(--accent);
    background-image: linear-gradient(var(--accent), var(--accent));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 3px;
    transition: background-size 0.25s ease;
    padding-bottom: 1px;
}
.entry-content a:hover,
.widget-text a:hover,
.page-content a:hover {
    background-size: 100% 3px;
}

/* =========================================================================
   Контейнер ширины (единый источник)
   ========================================================================= */
.shell {
    width: min(92%, var(--shell));
    margin-inline: auto;
}

/* =========================================================================
   Заголовки секций — рейка слева
   ========================================================================= */
.section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.section-head::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: var(--accent);
    flex: 0 0 auto;
}
.section-head h2 { margin: 0; }

/* Гайка-шестигранник слева у H2 в контенте («журнал строителя») */
.entry-content h2,
.page-content h2 {
    position: relative;
    padding-left: 2.2rem;
}
.entry-content h2::before,
.page-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 1.4rem;
    height: 1.4rem;
    background-color: var(--gold);
    -webkit-clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

/* =========================================================================
   Кнопки
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
    transform: translateY(2px);
    background: var(--accent-dark);
    box-shadow: inset 0 0 0 2px #fff;
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--accent);
}
.btn-ghost:hover {
    background: transparent;
    color: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
}

/* =========================================================================
   Шапка
   ========================================================================= */
.site-header {
    background: var(--bg-dark);
    color: #fff;
    padding: 1.4rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}
.brand-logo { display: block; height: 52px; width: auto; }
.brand-text { min-width: 0; }
.brand-title {
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    display: block;
    max-width: 520px;
}
.brand-title a { color: #fff; }
.brand-desc {
    font-size: 0.82rem;
    color: #9db4cc;
    margin: 0.3rem 0 0;
    max-width: 520px;
    line-height: 1.4;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.main-nav a {
    color: #d8e4f0;
    font-weight: 600;
    font-size: 0.98rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: #fff;
    border-color: var(--accent);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid #35506e;
    color: #fff;
    border-radius: 4px;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
    font-size: 1.1rem;
}

/* =========================================================================
   Раскладки контента
   ========================================================================= */
.site-main { padding: 2.5rem 0 3.5rem; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: 67% 27%;
    gap: 6%;
    align-items: start;
}
.layout-single .content-area {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.content-area { min-width: 0; }

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--accent); margin: 0 0.35rem; }

/* =========================================================================
   Сайдбар
   ========================================================================= */
.sidebar {
    background: var(--bg-sidebar);
    padding: 1.6rem 1.4rem;
    min-width: 0;
    background-image: repeating-linear-gradient(0deg, rgba(208,217,228,0.35) 0, rgba(208,217,228,0.35) 1px, transparent 1px, transparent 24px);
}
.sidebar .widget { margin-bottom: 1.8rem; color: var(--text); }
.sidebar .widget:last-child { margin-bottom: 0; }
.sidebar .widget-title {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
}
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar li { padding: 0.4rem 0; border-bottom: 1px solid rgba(122,139,159,0.25); }
.sidebar a { color: var(--text); }
.sidebar a:hover { color: var(--accent); }
.sidebar .post-date, .sidebar .rss-date { color: var(--muted); font-size: 0.8rem; }

/* =========================================================================
   Карточки записей
   ========================================================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}
.card {
    display: flex;
    flex-direction: column;
    background: var(--bg-alt);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 16px rgba(11,30,51,0.06);
    transition: box-shadow 0.2s ease;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}
.card:hover {
    box-shadow: 0 12px 22px rgba(11,30,51,0.1);
}
.card:hover::before { transform: scaleX(1); }

.card-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
}
.card-thumb-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0B1E33, #1A365D);
    position: relative;
}
.card-thumb-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 20px);
}
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.3rem 1.4rem 1.5rem;
    border-top: 1px solid var(--line);
}
.card-title { font-size: 1.25rem; margin: 0 0 0.5rem; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--accent); }
.card-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.7rem; }
.card-excerpt { color: #3c5064; font-size: 0.95rem; }
.card-excerpt p { margin: 0 0 0.5em; background: none; }
.card-more {
    margin-top: auto;
    padding-top: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    align-self: flex-start;
}
.card-more:hover { color: var(--accent-dark); }

/* =========================================================================
   Одиночная запись / страница
   ========================================================================= */
.entry-header { margin-bottom: 1.6rem; }
.entry-title { font-size: 2.6rem; }
.entry-meta { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }
.entry-thumb { margin: 0 0 1.8rem; }
.entry-thumb img { display: block; width: 100%; border-radius: 0; }
.entry-content, .page-content { font-size: 1.05rem; }
.entry-content img, .page-content img { border-radius: 0; margin: 1rem 0; }

.entry-content blockquote,
.page-content blockquote {
    margin: 1.5rem 0;
    padding: 0.4rem 0 0.4rem 1.4rem;
    border-left: 6px solid var(--accent);
    font-size: 1.15rem;
    color: #263849;
    font-style: normal;
}

.entry-content table,
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
}
.entry-content th, .entry-content td,
.page-content th, .page-content td {
    border: 1px solid #c9d6e4;
    padding: 0.6rem 0.8rem;
    text-align: left;
}
.entry-content th, .page-content th {
    background: var(--bg-sidebar);
    font-weight: 700;
}

.tags-line { margin-top: 1.6rem; font-size: 0.9rem; }
.tags-line a {
    display: inline-block;
    background: var(--bg-sidebar);
    padding: 0.2rem 0.6rem;
    margin: 0 0.3rem 0.4rem 0;
    border-radius: 4px;
    color: var(--text);
}
.tags-line a:hover { background: var(--accent); color: #fff; }

/* =========================================================================
   Пагинация
   ========================================================================= */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    height: 2.6rem;
    padding: 0 0.7rem;
    border: 2px solid #c9d6e4;
    border-radius: 4px;
    color: var(--text);
    font-weight: 700;
    background: var(--bg-alt);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pagination a.page-numbers:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* =========================================================================
   Комментарии
   ========================================================================= */
.comments-area { margin-top: 3rem; }
.comments-title, .comment-reply-title { font-size: 1.5rem; margin-bottom: 1.2rem; }
.comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.comment-list ul.children { list-style: none; margin: 0 0 0 1.6rem; padding: 0; }
.comment-item { margin-bottom: 1.2rem; }
.comment-body {
    background: var(--bg-alt);
    padding: 1.2rem 1.3rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 8px 16px rgba(11,30,51,0.05);
}
.comment-meta { display: flex; gap: 1rem; align-items: baseline; margin-bottom: 0.5rem; }
.comment-author { font-weight: 700; }
.comment-date { color: var(--muted); font-size: 0.82rem; }
.comment-await { color: var(--gold); font-size: 0.85rem; }
.comment-reply a { font-weight: 700; font-size: 0.85rem; }

.comment-form { display: grid; gap: 1rem; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.9rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 2px solid #c9d6e4;
    border-radius: 4px;
    font: inherit;
    background: #fff;
    color: var(--text);
}
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form input:focus, .comment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* =========================================================================
   Форма поиска
   ========================================================================= */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
}
.search-form .search-field {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 0.8rem;
    border: 2px solid #c9d6e4;
    border-radius: 4px;
    font: inherit;
    background: #fff;
    color: var(--text);
}
.search-form .search-field:focus { outline: none; border-color: var(--accent); }
.search-form .search-submit {
    padding: 0.7rem 1.3rem;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}
.search-form .search-submit:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* =========================================================================
   Подвал
   ========================================================================= */
.site-footer {
    background: var(--bg-dark);
    color: #c6d5e6;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.site-footer .widget { color: #c6d5e6; min-width: 0; }
.site-footer .widget-title {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
}
.site-footer .widget a { color: #c6d5e6; }
.site-footer .widget a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer .post-date { color: #8ba3bd; font-size: 0.8rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.3rem;
    font-size: 0.85rem;
    color: #8ba3bd;
    text-align: center;
}

/* =========================================================================
   Главная страница
   ========================================================================= */
.front-section { padding: 4rem 0; }
.front-section.bg-alt { background: var(--bg-alt); }

/* Hero */
.fs-hero {
    padding: 4.5rem 0;
    background-color: var(--bg);
    background-image:
        repeating-linear-gradient(0deg, rgba(208,217,228,0.35) 0, rgba(208,217,228,0.35) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(208,217,228,0.35) 0, rgba(208,217,228,0.35) 1px, transparent 1px, transparent 40px);
}
.fs-hero .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}
.hero-text { min-width: 0; }
.hero-text h1 { margin-bottom: 1rem; }
.hero-lead { font-size: 1.15rem; color: #37495c; max-width: 34ch; }
.hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media { min-width: 0; }
.hero-media img, .hero-media svg { display: block; width: 100%; height: auto; }

/* Сетка решений (карточки с нижней рамкой) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}
.solution-card {
    padding: 1.8rem 1.6rem;
    background: transparent;
    border-bottom: 4px solid var(--accent);
    min-width: 0;
}
.solution-card .sol-icon { width: 46px; height: 46px; color: var(--accent); margin-bottom: 1rem; }
.solution-card .sol-icon svg { width: 100%; height: 100%; display: block; }
.solution-card h3 { margin-bottom: 0.5rem; }
.solution-card p { color: #46596c; margin: 0; font-size: 0.98rem; }

/* Статистика — тёмный фон */
.fs-stats {
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(135deg, rgba(11,30,51,0) 0%, rgba(26,54,93,0.6) 100%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 40px);
    color: #fff;
    padding: 3.5rem 0;
}
.fs-stats .section-head h2 { color: #fff; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}
.stat-item { min-width: 0; }
.stat-num { font-size: 4rem; font-weight: 800; line-height: 1; font-family: "Manrope","Inter",sans-serif; color: #fff; }
.stat-label { color: var(--gold); font-weight: 700; margin-top: 0.6rem; font-size: 0.98rem; }

/* Таймлайн */
.timeline {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    padding: 1rem 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: #c9d6e4;
    transform: translateX(-50%);
}
.tl-item {
    position: relative;
    width: 50%;
    padding: 1rem 2.2rem;
    min-width: 0;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-item::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 3px solid var(--bg);
}
.tl-item:nth-child(odd)::before { right: -8px; }
.tl-item:nth-child(even)::before { left: -8px; }
.tl-step { color: var(--accent); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.tl-item h3 { margin: 0.3rem 0 0.4rem; }
.tl-item p { color: #46596c; margin: 0; font-size: 0.96rem; }

/* Блок последних записей на главной */
.fs-latest .cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* CTA внутри hero actions уже покрыто .btn */

/* =========================================================================
   Cookie-баннер
   ========================================================================= */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: var(--bg-dark);
    color: #dce7f2;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    box-shadow: 0 -6px 18px rgba(11,30,51,0.25);
}
.cookie-banner p { margin: 0; font-size: 0.9rem; max-width: 720px; }
.cookie-banner a { color: var(--gold); }
.cookie-banner .btn { flex: 0 0 auto; }

/* =========================================================================
   404
   ========================================================================= */
.error-404 { text-align: center; padding: 2rem 0; }
.error-404 .code-404 { font-size: 6rem; font-weight: 800; color: var(--accent); line-height: 1; font-family: "Manrope","Inter",sans-serif; }
.error-404 .search-form { margin: 1.6rem auto; }

/* =========================================================================
   Адаптив
   ========================================================================= */
@media (max-width: 960px) {
    h1 { font-size: 2.6rem; }
    .entry-title { font-size: 2rem; }
    .layout-with-sidebar { grid-template-columns: 1fr; gap: 2.5rem; }
    .layout-single .content-area { width: 100%; }
    .fs-hero .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .solutions-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
    .footer-cols { grid-template-columns: 1fr; gap: 1.8rem; }
    .fs-latest .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    /* Таймлайн — в одну колонку слева */
    .timeline::before { left: 8px; }
    .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 2.4rem;
        padding-right: 0;
    }
    .tl-item::before,
    .tl-item:nth-child(odd)::before,
    .tl-item:nth-child(even)::before { left: 0; right: auto; }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    .main-nav[data-open="true"] { display: block; }
    .main-nav ul { flex-direction: column; gap: 0.4rem; }
    .nav-toggle { display: inline-block; }
    .header-inner { flex-wrap: wrap; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .stat-num { font-size: 3rem; }
    .stats-row { grid-template-columns: 1fr; }
    .fs-latest .cards-grid { grid-template-columns: 1fr; }
    .front-section { padding: 2.6rem 0; }
    .fs-hero { padding: 2.8rem 0; }
    .cookie-banner { padding: 1rem 1.1rem; gap: 0.9rem; }
    .brand-title { font-size: 1rem; }
    .brand-desc { display: none; }
}
