﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;500;600&family=Raleway:wght@400;600&display=swap');

:root {
    --stone: #2c2416;
    --terracotta: #a0522d;
    --cream: #f5f0e8;
    --sand: #e8dcc8;
    --sea: #1a6b8a;
    --sea-light: #2d8fb0;
    --gold: #c9a84c;
    --dark: #1a1410;
    --text: #3a3028;
    --text-light: #6b5d50;
    --white: #fefcf8;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--sea);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terracotta);
}

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(--stone);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(44, 36, 22, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    color: rgba(245, 240, 232, 0.55);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.85);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/70/Dubrovnik_Old_Town_1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,36,22,0.7) 0%, rgba(26,107,138,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 120px 24px 80px;
    margin-left: 8%;
}

.hero-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(245, 240, 232, 0.85);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--stone);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--stone);
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.5);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

.intro-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sea));
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--stone);
    line-height: 1.25;
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--terracotta);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.intro-image-wrap {
    position: relative;
}

.intro-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-image-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--stone);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    padding: 16px 24px;
    max-width: 220px;
    line-height: 1.5;
}

.articles-section {
    padding: 100px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--stone);
    line-height: 1.25;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 36, 22, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--terracotta);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--stone);
    line-height: 1.35;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.card-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sea);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
    gap: 14px;
    color: var(--terracotta);
}

.card-link::after {
    content: 'в†’';
}

.featured-section {
    padding: 100px 0;
    background: var(--stone);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: 'DUBROVNIK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 18vw;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.featured-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.featured-content {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
}

.featured-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.85;
    margin-bottom: 16px;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 4px;
    transition: all 0.3s ease;
    width: fit-content;
}

.featured-link:hover {
    color: var(--white);
    border-color: var(--white);
    gap: 16px;
}

.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 48px;
    align-items: start;
}

.timeline-item:nth-child(even) .timeline-text {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-dot {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-empty {
    grid-column: 3;
    grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-empty {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-text {
    grid-column: 3;
    grid-row: 1;
    padding-left: 40px;
}

.timeline-dot {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.timeline-dot-inner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--stone);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.article-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    overflow: hidden;
    margin-top: 75px;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.article-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    background: linear-gradient(to top, rgba(44,36,22,0.85) 0%, transparent 60%);
}

.article-hero-content .section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.article-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.2;
    max-width: 700px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.6);
}

.article-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 80px 24px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--stone);
    margin: 48px 0 20px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--terracotta);
    margin: 32px 0 14px;
}

.article-body p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 16px 0 24px 24px;
}

.article-body li {
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 28px;
    margin: 32px 0;
    background: var(--sand);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--stone);
    font-style: italic;
    line-height: 1.7;
}

.article-body .article-img {
    margin: 40px 0;
}

.article-body .article-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-body .article-img figcaption {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 10px 0;
    font-style: italic;
    border-bottom: 1px solid var(--sand);
}

.article-sources {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}

.article-sources h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-sources ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-sources li {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.article-sources a {
    color: var(--sea);
}

.related-articles {
    background: var(--cream);
    padding: 80px 0;
}

.page-hero {
    background: var(--stone);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(245, 240, 232, 0.65);
    max-width: 500px;
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--stone);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item-text strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item-text span, .contact-item-text a {
    font-size: 0.98rem;
    color: var(--text);
}

.contact-map {
    background: var(--sand);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--stone);
    margin: 40px 0 16px;
}

.policy-content p, .policy-content li {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-content ul {
    margin: 12px 0 20px 24px;
}

.site-footer {
    background: var(--dark);
    padding: 80px 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-name {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 232, 0.3);
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.4);
}

.footer-bottom a:hover {
    color: var(--gold);
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8888;
    background: rgba(26, 20, 16, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 24px;
    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;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--gold);
    color: var(--stone);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: var(--white);
}

.btn-reject {
    background: transparent;
    color: rgba(245, 240, 232, 0.5);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid rgba(245, 240, 232, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    border-color: rgba(245, 240, 232, 0.4);
    color: rgba(245, 240, 232, 0.8);
}

.breadcrumb {
    background: var(--sand);
    padding: 12px 0;
    margin-top: 75px;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.breadcrumb-inner a {
    color: var(--text-light);
}

.breadcrumb-inner a:hover {
    color: var(--terracotta);
}

.breadcrumb-sep {
    color: var(--gold);
}

.mt-0 { margin-top: 75px; }

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

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.divider-left {
    margin-left: 0;
}

@media (max-width: 1024px) {
    .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-image-caption { bottom: 0; right: 0; }
    .featured-inner { grid-template-columns: 1fr; }
    .featured-image { min-height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .articles-grid { grid-template-columns: 1fr; }
    .intro-stats { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item { grid-template-columns: 40px 1fr; }
    .timeline-item:nth-child(even) .timeline-text,
    .timeline-item:nth-child(odd) .timeline-text { 
        grid-column: 2; 
        text-align: left; 
        padding-left: 20px;
        padding-right: 0;
    }
    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot { grid-column: 1; }
    .timeline-empty { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .hero-content { margin-left: 0; }
    .article-hero-content { padding: 30px; }
    .featured-content { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .intro-stats { grid-template-columns: 1fr; }
    .cookie-actions { width: 100%; }
    .btn-accept, .btn-reject { flex: 1; text-align: center; }
}
