﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Lato:wght@300;400;700&family=Merriweather:wght@300;400;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #f5f0eb;
    --color-surface: #ffffff;
    --color-primary: #8b5e3c;
    --color-primary-dark: #6b4428;
    --color-accent: #d4a96a;
    --color-text: #2c2c2c;
    --color-text-muted: #6b6b6b;
    --color-border: #e0d8cf;
    --color-header-bg: #2c1f14;
    --color-footer-bg: #1e1510;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-alt: 'Lato', sans-serif;
    --font-article: 'Merriweather', serif;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


#page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-header-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-icon {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(212,169,106,0.3);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-inner span {
    color: var(--color-accent);
    font-family: var(--font-alt);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.site-header {
    background: var(--color-header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--font-alt);
    font-size: 10px;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--color-header-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 24px;
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color var(--transition), background var(--transition);
}

.mobile-menu a:hover {
    color: var(--color-accent);
    background: rgba(255,255,255,0.04);
}


.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2c1f14 0%, #4a3020 50%, #6b4428 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/Empty_apartment_living_room.jpg/1280px-Empty_apartment_living_room.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(212,169,106,0.12);
    border: 1px solid rgba(212,169,106,0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    color: var(--color-accent);
    font-style: normal;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
}


.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}


.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}

.featured-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-article:hover .featured-img img {
    transform: scale(1.04);
}

.featured-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(139,94,60,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.featured-body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: 16px;
}

.featured-body p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: gap var(--transition), color var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--color-primary-dark);
}


.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-img img {
    transform: scale(1.06);
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}


.tips-section {
    background: var(--color-header-bg);
    padding: 80px 0;
}

.tips-section .section-title,
.tips-section .section-label {
    color: #ffffff;
}

.tips-section .section-label {
    color: var(--color-accent);
}

.tips-section .section-desc {
    color: rgba(255,255,255,0.65);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tip-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px;
    transition: background var(--transition), border-color var(--transition);
}

.tip-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(212,169,106,0.3);
}

.tip-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(212,169,106,0.25);
    line-height: 1;
    margin-bottom: 12px;
}

.tip-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}


.tools-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    padding: 60px 0;
    text-align: center;
}

.tools-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.tools-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 28px;
}

.tools-banner .btn-primary {
    background: #ffffff;
    color: var(--color-primary-dark);
}

.tools-banner .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--color-primary-dark);
}


.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 60px 0;
}

.article-main {
    min-width: 0;
}

.article-header {
    margin-bottom: 32px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-header .article-meta {
    margin-bottom: 0;
}

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 36px;
}

.article-content {
    font-family: var(--font-article);
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin: 28px 0 12px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 16px 0 20px 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.article-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(139,94,60,0.3);
}

.article-content a:hover {
    text-decoration-color: var(--color-primary);
}

.article-content blockquote {
    border-left: 4px solid var(--color-accent);
    background: rgba(212,169,106,0.08);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.article-content .tip-box {
    background: rgba(139,94,60,0.07);
    border: 1px solid rgba(139,94,60,0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0;
}

.article-content .tip-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-updated {
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}


.article-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
}

.sidebar-widget {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    border-bottom: 1px solid var(--color-border);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-text);
    transition: color var(--transition), padding-left var(--transition);
}

.sidebar-links a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}


.about-hero {
    background: linear-gradient(135deg, #2c1f14 0%, #4a3020 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.value-card {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(139,94,60,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}


.contact-hero {
    background: linear-gradient(135deg, #2c1f14 0%, #4a3020 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-block {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-block-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-block-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-block h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.contact-block p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-block a {
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-block a:hover {
    color: var(--color-primary-dark);
}


.policy-hero {
    background: linear-gradient(135deg, #2c1f14 0%, #4a3020 100%);
    padding: 60px 0;
    text-align: center;
}

.policy-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.policy-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.policy-content {
    padding: 60px 0;
    max-width: 860px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

.policy-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 12px 0 16px 24px;
}

.policy-content li {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-header-bg);
    border-top: 2px solid var(--color-accent);
    padding: 20px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition);
}

.cookie-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 22px;
    border-radius: 6px;
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
}


.site-footer {
    background: var(--color-footer-bg);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h5 {
    font-family: var(--font-alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.footer-bottom a:hover {
    color: rgba(255,255,255,0.8);
}


.breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--color-text-muted);
}

.breadcrumb li a {
    color: var(--color-primary);
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--color-border);
}


@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-img {
        min-height: 260px;
    }

    .featured-body {
        padding: 28px 24px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-blocks {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .section {
        padding: 56px 0;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
        justify-content: center;
    }

    .article-hero-img {
        height: 240px;
    }
}
