@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Merriweather:ital,wght@0,300;0,400;1,300&family=Raleway:wght@400;500;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brown-dark: #2c1a0e;
    --brown-mid: #5c3317;
    --brown-warm: #8b4513;
    --brown-light: #c8956c;
    --cream: #f5efe6;
    --cream-dark: #ede0ce;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --text-dark: #1a0f08;
    --text-mid: #4a3728;
    --text-light: #7a6555;
    --white: #ffffff;
    --shadow: rgba(44, 26, 14, 0.15);
    --shadow-strong: rgba(44, 26, 14, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--brown-warm);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}


#page-loader {
    position: fixed;
    inset: 0;
    background: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-cup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loader-cup svg {
    width: 60px;
    height: 60px;
    animation: pulse 1.2s ease-in-out infinite;
}

.loader-cup span {
    font-family: 'Raleway', sans-serif;
    color: var(--cream);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}


.site-header {
    background: var(--brown-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px var(--shadow-strong);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--brown-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.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;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    padding: 20px 24px 28px;
    z-index: 99;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 24px var(--shadow-strong);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--cream-dark);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

.mobile-menu .articles-label {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}


.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brown-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Prague_Praha_2014_Holmstad_cafe_Louvre_interior_interi%C3%B8r_1.JPG/800px-Prague_Praha_2014_Holmstad_cafe_Louvre_interior_interi%C3%B8r_1.JPG');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-desc {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--brown-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--brown-dark);
    transform: translateY(-1px);
}


.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream-dark);
}

.section-dark {
    background: var(--brown-dark);
    color: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.2;
}

.section-dark .section-title {
    color: var(--cream);
}

.section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 14px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(245, 239, 230, 0.7);
}


.featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--shadow-strong);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-large .card-image {
    height: 320px;
}

.card-body {
    padding: 24px 28px 28px;
}

.card-category {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.card-large .card-title {
    font-size: 28px;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--brown-warm);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 16px;
    transition: gap 0.3s, color 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: var(--gold);
}


.cities-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.city-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 32px 28px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s;
}

.city-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.city-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.city-card p {
    font-size: 13px;
    color: rgba(245, 239, 230, 0.65);
    line-height: 1.6;
}

.city-count {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}


.tips-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tips-image-wrap {
    position: relative;
}

.tips-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px var(--shadow-strong);
}

.tips-image-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.tips-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.tips-content p {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.tips-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.tips-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}


.articles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


.article-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: var(--brown-dark);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.article-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}

.article-hero-content .breadcrumb {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: rgba(245, 239, 230, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-hero-content .breadcrumb a {
    color: var(--gold-light);
}

.article-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 720px;
}

.article-meta-bar {
    background: var(--brown-mid);
    padding: 14px 0;
}

.article-meta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(245, 239, 230, 0.75);
    letter-spacing: 0.5px;
}

.article-meta-inner span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    padding: 64px 0 80px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--brown-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--brown-mid);
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-body p {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 24px 24px;
}

.article-body li {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-body .article-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 4px;
    margin: 32px 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.article-body .img-caption {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-align: center;
    margin-top: -24px;
    margin-bottom: 32px;
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 28px 0;
    background: rgba(201, 168, 76, 0.07);
    border-radius: 0 4px 4px 0;
}

.article-body blockquote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--brown-mid);
    margin-bottom: 0;
}


.sidebar {
    position: sticky;
    top: 92px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 4px;
    padding: 28px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 28px;
}

.sidebar-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-links li a {
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    transition: color 0.3s;
}

.sidebar-links li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.sidebar-links li a:hover {
    color: var(--brown-warm);
}

.info-box {
    background: var(--cream-dark);
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.info-box p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
}

.info-box strong {
    color: var(--brown-dark);
}


.about-hero {
    background: var(--brown-dark);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.about-hero p {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: 80px 0;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px var(--shadow-strong);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 18px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 0 80px;
}

.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 16px var(--shadow);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--brown-dark);
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}


.contact-hero {
    background: var(--brown-dark);
    padding: 64px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-hero p {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.75);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 72px 0 80px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.contact-details {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--brown-dark);
}

.contact-detail-text strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--brown-warm);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-detail-text span {
    font-size: 14px;
    color: var(--text-mid);
}


.policy-hero {
    background: var(--brown-dark);
    padding: 64px 0;
    text-align: center;
}

.policy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.policy-hero p {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: rgba(245, 239, 230, 0.6);
    letter-spacing: 1px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--brown-dark);
    margin-top: 40px;
    margin-bottom: 14px;
}

.policy-content p {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 12px 0 20px 24px;
}

.policy-content li {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 8px;
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    border-top: 2px solid var(--gold);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

#cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 240px;
    font-size: 13px;
    color: rgba(245, 239, 230, 0.85);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--gold);
    color: var(--brown-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept:hover {
    background: var(--gold-light);
}

.btn-cookie-reject {
    background: transparent;
    color: rgba(245, 239, 230, 0.7);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid rgba(245, 239, 230, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.btn-cookie-reject:hover {
    border-color: rgba(245, 239, 230, 0.6);
    color: var(--cream);
}


.site-footer {
    background: #1a0f08;
    color: rgba(245, 239, 230, 0.75);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
    font-size: 20px;
    margin-bottom: 6px;
}

.footer-brand .logo-tagline {
    font-size: 9px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(245, 239, 230, 0.6);
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(245, 239, 230, 0.65);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: rgba(245, 239, 230, 0.4);
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: rgba(245, 239, 230, 0.5);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.updated-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}


@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .tips-layout {
        grid-template-columns: 1fr;
    }

    .tips-image-wrap::before {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero {
        min-height: 440px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .articles-row {
        grid-template-columns: 1fr;
    }

    .cities-strip {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .article-hero {
        height: 300px;
    }

    .article-hero-content {
        padding: 28px 24px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .card-body {
        padding: 18px 20px 22px;
    }
}
