:root {
    --bg-primary: #1c1a17;
    --bg-secondary: #252219;
    --bg-tertiary: #2e2a1f;
    --bg-card: #2a2620;
    --text-primary: #f0ebe2;
    --text-secondary: #b5a98a;
    --text-muted: #7a6e56;
    --accent: #c8874a;
    --accent-hover: #d9975a;
    --accent-muted: rgba(200, 135, 74, 0.15);
    --accent-green: #6a9e6a;
    --border: #3d3728;
    --border-light: #4a4232;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-paw {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.loader-paw span {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: pawBounce 0.8s ease-in-out infinite;
}
.loader-paw span:nth-child(2) {
    animation-delay: 0.15s;
    width: 18px;
    height: 18px;
}
.loader-paw span:nth-child(3) {
    animation-delay: 0.3s;
}
@keyframes pawBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-12px); opacity: 1; }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(28, 26, 23, 0.98) 0%, rgba(28, 26, 23, 0.93) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    margin-top: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-muted);
    color: var(--accent);
    padding-left: 26px;
}
.hero {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 135, 74, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 158, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.hero-text h1 span {
    color: var(--accent);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-muted);
    border: 1px solid rgba(200, 135, 74, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent);
    font-family: 'Space Mono', monospace;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.hero-image-credit {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
}
.intro-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.intro-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stat-item {
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.articles-section {
    padding: 80px 0;
}
.section-header {
    margin-bottom: 48px;
}
.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.articles-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
}
.articles-secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.article-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.card-image {
    position: relative;
    overflow: hidden;
}
.article-card.featured .card-image {
    height: 260px;
}
.articles-secondary .card-image {
    height: 150px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .card-image img {
    transform: scale(1.06);
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.72);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 3px 7px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
}
.card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
}
.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.35;
}
.card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.7;
}
.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-link:hover {
    color: var(--accent-hover);
}
.card-link::after {
    content: '→';
    transition: transform 0.2s ease;
}
.card-link:hover::after {
    transform: translateX(4px);
}
.tips-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.tip-card {
    padding: 32px 28px;
    background: var(--bg-tertiary);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}
.tip-card:hover {
    border-color: var(--border-light);
}
.tip-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
}
.tip-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}
.tip-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.article-page {
    padding-bottom: 80px;
}
.article-header {
    padding: 56px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}
.back-link::before {
    content: '←';
}
.back-link:hover {
    color: var(--accent);
}
.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-family: 'Space Mono', monospace;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.article-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.article-hero img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: -32px;
    border: 1px solid var(--border);
}
.article-hero-credit {
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    margin-top: 6px;
}
.article-body {
    padding: 48px 0;
}
.article-intro {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.85;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 44px;
    margin-bottom: 18px;
}
.article-body h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 28px;
    margin-bottom: 12px;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-body ul, .article-body ol {
    margin: 18px 0 18px 28px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 8px;
    font-size: 1.02rem;
    line-height: 1.7;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 135, 74, 0.3);
    transition: border-color 0.2s ease;
}
.article-body a:hover {
    border-color: var(--accent);
}
.info-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent-green);
    border-radius: 10px;
    padding: 24px;
    margin: 28px 0;
}
.info-box h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 10px;
}
.info-box p, .info-box li {
    font-size: 0.97rem;
    color: var(--text-secondary);
}
.info-box ul {
    margin: 10px 0 0 20px;
}
.article-image-mid {
    margin: 36px 0;
    position: relative;
}
.article-image-mid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.article-image-mid .image-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.article-footer-nav {
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.article-footer-nav a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.article-footer-nav a:hover {
    background: var(--accent-muted);
    border-color: var(--accent);
}
.about-page, .contact-page, .policy-page {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.about-text h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 14px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.about-text a {
    color: var(--accent);
    text-decoration: none;
}
.contact-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}
.contact-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.2s ease;
}
.contact-block:hover {
    border-color: var(--border-light);
}
.contact-block-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.contact-block h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.contact-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.7;
}
.contact-block a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.contact-block a:hover {
    text-decoration: underline;
}
.policy-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 14px;
}
.policy-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 22px;
    margin-bottom: 10px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 1.02rem;
}
.policy-content ul {
    margin: 14px 0 14px 24px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
}
.policy-content a {
    color: var(--accent);
    text-decoration: none;
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 7px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 9000;
    display: none;
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.93rem;
}
.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-primary);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject, .cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--bg-secondary);
    padding: 36px;
    border-radius: 14px;
    max-width: 480px;
    width: 90%;
    border: 1px solid var(--border);
}
.modal-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.cookie-option {
    margin-bottom: 20px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-left: 28px;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image {
        display: none;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .articles-layout {
        grid-template-columns: 1fr;
    }
    .articles-secondary {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .articles-secondary .card-image {
        height: 180px;
    }
    .contact-blocks {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    .dropdown-menu li a {
        padding: 9px 0;
        border-bottom: 1px solid var(--border);
    }
    .dropdown-menu li a:hover {
        padding-left: 8px;
    }
    .hero {
        padding: 56px 0 48px;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .articles-secondary {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .article-footer-nav {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    .hero-badges {
        gap: 8px;
    }
    .badge {
        font-size: 0.78rem;
    }
}
