/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Utilidades */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    position: relative;
}

/* Logo */
.logo {
    text-align: center;
}

.logo h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.logo h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.logo h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.logo h1 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo h1 a:hover {
    color: #e65100;
}
.logo h2 a:hover {
    color: #e65100;
}


.logo p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}


/* Navigation */
.nav {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #e65100;
    border-bottom-color: #e65100;
}

/* Hero section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #333;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: #e65100;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(230, 81, 0, 0.2);
}

.cta-button:hover {
    background: #d84315;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 81, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* About section */
.about {
    padding: 4rem 0;
    background: #fff;
}

.about h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.axes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.axis-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.axis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.axis-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.axis-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.axis-card p {
    color: #666;
    line-height: 1.6;
}

/* Menu sections */
.menu-section {
    padding: 4rem 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.menu-section:nth-child(even) {
    background: #f8f9fa;
}

.menu-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Featured story */
.featured-story {
    padding: 4rem 0;
    background: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.category {
    display: inline-block;
    background: #e65100;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #333;
}

.featured-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #e65100;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

.read-more:hover {
    border-bottom-color: #e65100;
}

.featured-text time {
    display: block;
    color: #999;
    font-size: 0.9rem;
}

/* News feed */
.news-feed {
    padding: 4rem 0;
    background: #fff;
}

.news-feed h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #e65100;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-content time {
    display: block;
    color: #999;
    font-size: 0.85rem;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    border: none;
    background: #fff;
    text-align: left;
    width: 100%;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #333;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* было 1fr 2fr 1fr */
    gap: 3rem;
    margin-bottom: 2rem;
}


.footer-brand h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e65100;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e65100;
}

.footer-social h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e65100;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #e65100;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Article page styles */
.article-main {
    padding: 2rem 0;
    background: #fff;
}

.article-main .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    align-self: flex-start;
    width: 100%;
    max-width: 800px;
}

.breadcrumb a {
    color: #e65100;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article {
    max-width: 800px;
    width: 100%;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.social-share a {
    font-size: 1.2rem;
    text-decoration: none;
}

.article-image {
    margin: 2rem 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-image figcaption {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.article-lead {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #555;
}

.article-lead p {
    margin-bottom: 1rem;
}

.article-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #e65100;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.highlight-box {
    background: #f0f8ff;
    border: 1px solid #e1f0ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-family: 'Merriweather', serif;
    color: #333;
    margin-bottom: 1rem;
}

.highlight-box ul {
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
}

.related-articles {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.related-articles h3 {
    font-family: 'Merriweather', serif;
    margin-bottom: 1rem;
    color: #333;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.related-articles a {
    color: #e65100;
    text-decoration: none;
}

.related-articles a:hover {
    text-decoration: underline;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tags span {
    font-weight: 600;
    color: #666;
}

.tags a {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tags a:hover {
    background: #e65100;
    color: white;
}

/* Sidebar */
.sidebar {
    max-width: 800px;
    width: 100%;
    margin-top: 3rem;
}

.sidebar-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section ul li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-section ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-section ul li a:hover {
    color: #e65100;
}

.newsletter {
    background: #e65100;
    color: white;
}

.newsletter h3 {
    color: white;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter input {
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter button {
    background: white;
    color: #e65100;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background: #f0f0f0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .article-main .container {
        padding: 0 20px;
    }

    .sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding: 1rem 15px;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .nav {
        display: block;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 15px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: none;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .menu-section h2 {
        font-size: 1.8rem;
    }

    .section-content p {
        font-size: 1rem;
        text-align: left;
    }

    .about h2,
    .news-feed h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .axes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-share {
        justify-content: center;
    }

    .footer-content {
        text-align: left;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .menu-section h2 {
        font-size: 1.5rem;
    }

    .section-content p {
        font-size: 0.95rem;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .news-card {
        margin: 0 -15px;
        border-radius: 0;
    }

    .axis-card,
    .sidebar-section {
        margin: 0 -15px;
        border-radius: 0;
    }
}

/* Performance optimizations */
img {
    height: auto;
    max-width: 100%;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .sidebar,
    .social-share {
        display: none;
    }

    .article-main .container {
        grid-template-columns: 1fr;
    }

    .article {
        max-width: 100%;
    }
}

/* === Контактная форма (визуал, как договаривались) === */
.contact-form {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}
.contact-form .form-row { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.contact-form label { font-weight: 600; color: #333; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: .75rem 1rem; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem;
    outline: none; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #e65100; box-shadow: 0 0 0 3px rgba(230,81,0,.12);
}
.contact-form button {
    background: #e65100; color: #fff; border: 0; padding: .9rem 1.25rem; border-radius: 8px;
    font-weight: 600; cursor: pointer; transition: background-color .2s, transform .05s;
}
.contact-form button:hover { background: #d84315; }
.contact-form button:active { transform: translateY(1px); }
.contact-form .form-note { font-size: .9rem; color: #666; margin-top: .75rem; }
.form-success {
    margin-top: 1rem; background: #e6ffed; color: #116b35; border: 1px solid #b7f5c8;
    border-radius: 6px; padding: .75rem 1rem; font-weight: 600;
}
@media (max-width: 480px) { .contact-form { padding: 1rem; } }


