@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;400;600&family=Oswald:wght@400;500&display=swap');

:root {
    --cream: #f5f0e8;
    --dark: #1a1208;
    --terracotta: #c4622d;
    --gold: #b8963e;
    --olive: #5a6b3a;
    --sand: #e8dcc8;
    --text: #2d2416;
    --muted: #7a6e5f;
    --white: #fefcf8;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    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 {
    text-align: center;
}

.loader-inner span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 16px;
}

.loader-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loader-dots div {
    width: 10px;
    height: 10px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.loader-dots div:nth-child(2) { animation-delay: 0.2s; }
.loader-dots div:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 18, 8, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(184, 150, 62, 0.3);
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--terracotta);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    flex-shrink: 0;
}

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

.logo-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-sub {
    font-family: 'Lato', sans-serif;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

nav.main-nav a {
    font-family: 'Lato', sans-serif;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;
    text-decoration: none;
}

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

.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(--white);
    transition: all 0.3s ease;
}

.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 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    padding: 80px 32px 40px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .menu-section-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 24px 0 8px;
    display: block;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
}

.menu-overlay.open {
    display: block;
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    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;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,18,8,0.3) 0%,
        rgba(26,18,8,0.1) 40%,
        rgba(26,18,8,0.7) 80%,
        rgba(26,18,8,0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-label {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    max-width: 700px;
    margin-bottom: 20px;
}

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

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    font-family: 'Lato', sans-serif;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* SECTION STYLES */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    color: var(--terracotta);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 16px;
}

/* INTRO STRIP */
.intro-strip {
    background: var(--dark);
    padding: 40px 0;
}

.intro-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
}

.intro-stat {
    background: var(--dark);
    padding: 32px 40px;
    text-align: center;
}

.intro-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.intro-stat-label {
    font-family: 'Lato', sans-serif;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

/* FEATURED ARTICLES */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.article-card {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.article-card:first-child {
    grid-row: span 2;
}

.article-card-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.article-card:first-child .article-card-img {
    min-height: 600px;
}

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

.article-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.9) 0%, rgba(26,18,8,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.3s ease;
}

.article-card:hover .article-card-overlay {
    background: linear-gradient(to top, rgba(26,18,8,0.95) 0%, rgba(26,18,8,0.4) 60%, rgba(26,18,8,0.1) 100%);
}

.article-card-cat {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.article-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-card:first-child h3 {
    font-size: 1.8rem;
}

.article-card-excerpt {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    display: none;
}

.article-card:first-child .article-card-excerpt {
    display: block;
    margin-bottom: 16px;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s;
}

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

.article-card-link::after {
    content: '→';
}

/* CITIES SECTION */
.cities-section {
    background: var(--sand);
}

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

.city-visual {
    position: relative;
}

.city-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.city-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

.city-img-badge strong {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.city-img-badge span {
    font-family: 'Lato', sans-serif;
    color: rgba(255,255,255,0.8);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.city-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.city-content p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.city-features {
    list-style: none;
    margin-bottom: 28px;
}

.city-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(90,107,58,0.2);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--olive);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    padding: 12px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--terracotta);
    color: var(--white);
}

/* CUISINE SECTION */
.cuisine-section {
    background: var(--white);
}

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

.cuisine-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cuisine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26,18,8,0.12);
}

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

.cuisine-card-body {
    padding: 24px;
}

.cuisine-card-tag {
    font-family: 'Oswald', sans-serif;
    color: var(--olive);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.cuisine-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cuisine-card p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* TIPS SECTION */
.tips-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196,98,45,0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.tips-intro h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.tips-intro p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.tips-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tip-item {
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s, background 0.3s;
}

.tip-item:hover {
    border-color: rgba(184,150,62,0.4);
    background: rgba(255,255,255,0.03);
}

.tip-num {
    font-family: 'Playfair Display', serif;
    color: var(--terracotta);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    opacity: 0.6;
}

.tip-item h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tip-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ARTICLE PAGE */
.article-hero {
    height: 60vh;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.article-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,18,8,0.2) 0%, rgba(26,18,8,0.85) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.article-hero-tag {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

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

.article-meta {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-family: 'Lato', sans-serif;
}

/* PAGE HERO */
.page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,18,8,0.3) 0%, rgba(26,18,8,0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.page-hero-label {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

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

.page-hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

/* BREADCRUMB */
.breadcrumb {
    background: var(--sand);
    padding: 12px 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb-inner a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-inner span {
    color: rgba(0,0,0,0.3);
}

/* ARTICLE BODY */
.article-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 24px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--dark);
    font-weight: 700;
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
    margin: 28px 0 12px;
}

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

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

.article-body li {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.article-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px 28px;
    margin: 32px 0;
    background: var(--sand);
}

.article-body blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--muted);
    margin: 0;
}

.article-image-block {
    margin: 32px 0;
}

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

.article-image-block figcaption {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* INFO BOX */
.info-box {
    background: var(--sand);
    border-left: 4px solid var(--terracotta);
    padding: 24px 28px;
    margin: 32px 0;
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* RESTAURANT CARD */
.restaurant-card {
    background: var(--white);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    padding: 24px 28px;
    margin: 24px 0;
}

.restaurant-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.restaurant-card .r-meta {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.restaurant-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* RELATED ARTICLES */
.related-articles {
    background: var(--sand);
    padding: 64px 0;
}

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

.article-item {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(26,18,8,0.1);
}

.article-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.article-item:hover .article-item-img {
    transform: scale(1.04);
}

.article-item-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    padding: 12px 16px 4px;
}

.article-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 16px 8px;
}

.article-item-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.article-item-title a:hover {
    color: var(--terracotta);
}

.article-item-excerpt {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 0 16px 8px;
}

.article-item-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    padding: 0 16px 16px;
}

/* PAGE CONTENT */
.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 24px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 700;
    margin: 36px 0 14px;
}

.page-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 64px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 40px;
}

.contact-info-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-block > p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sand);
    align-items: flex-start;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-detail-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: var(--terracotta);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-faq h3,
.contact-links h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.faq-list {
    list-style: none;
}

.faq-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
}

.faq-list li:last-child {
    border-bottom: none;
}

.faq-list strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.faq-list span {
    font-size: 0.85rem;
    color: var(--muted);
}

.contact-links ul {
    list-style: none;
}

.contact-links ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--sand);
}

.contact-links ul li:last-child {
    border-bottom: none;
}

.contact-links ul li a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-links ul li a:hover {
    color: var(--terracotta);
}

/* HEADER SCROLLED */
.site-header.scrolled {
    background: rgba(26, 18, 8, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* BTN PRIMARY */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* HERO EXTRAS */
.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 40px;
    font-family: 'Lato', sans-serif;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    z-index: 2;
}

/* INTRO STRIP SCROLL */
.intro-strip {
    background: var(--dark);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.strip-inner {
    display: inline-flex;
    animation: stripScroll 20s linear infinite;
}

.strip-item {
    font-family: 'Oswald', sans-serif;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 8px;
}

.strip-dot {
    color: var(--gold);
    padding: 0 4px;
}

@keyframes stripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FEATURED GRID */
.featured {
    padding: 80px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
    margin-top: 40px;
}

.article-card {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.article-card:first-child {
    grid-row: span 2;
}

.article-card-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.article-card:first-child .article-card-img {
    min-height: 560px;
}

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

.article-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.9) 0%, rgba(26,18,8,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.card-tag {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.card-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-card:first-child .card-title {
    font-size: 1.7rem;
}

.card-excerpt {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 14px;
    display: none;
}

.article-card:first-child .card-excerpt {
    display: block;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s;
}

.card-link::after {
    content: '→';
}

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

/* CUISINE SECTION */
.cuisine {
    background: var(--white);
    padding: 80px 0;
}

.cuisine-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cuisine-img-wrap {
    position: relative;
}

.cuisine-img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.cuisine-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 4px solid var(--white);
}

.cuisine-list {
    list-style: none;
    margin: 20px 0 28px;
}

.cuisine-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(90,107,58,0.2);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cuisine-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--olive);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CITIES SECTION */
.cities {
    padding: 80px 0;
    background: var(--sand);
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.city-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26,18,8,0.1);
}

.city-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.city-card:hover .city-card-img {
    transform: scale(1.04);
}

.city-card-body {
    padding: 28px;
}

.city-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.city-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.city-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s;
}

.city-link:hover {
    color: var(--gold);
}

/* ARTICLES LIST */
.articles-list {
    padding: 80px 0;
}

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

/* QUOTE SECTION */
.quote-section {
    background: var(--dark);
    padding: 64px 0;
    text-align: center;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 16px;
}

.quote-author {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* SECTION DESC */
.section-desc {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin-top: 12px;
    line-height: 1.7;
}

/* UPDATED DATE */
.updated-date {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 24px;
    display: block;
}

/* ARTICLE CONTENT */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--dark);
    font-weight: 700;
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
    margin: 28px 0 12px;
}

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

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

.article-body li {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.article-body .highlight-box {
    background: var(--sand);
    border-left: 4px solid var(--terracotta);
    padding: 24px 28px;
    margin: 32px 0;
}

.article-body .highlight-box p {
    margin: 0;
    font-style: italic;
    color: var(--muted);
}

.article-body figure {
    margin: 32px 0;
}

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

.article-body figcaption {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.restaurant-card {
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 28px;
    margin: 24px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
}

.restaurant-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.restaurant-card .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.restaurant-card .rating-score {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--terracotta);
    font-weight: 500;
}

.restaurant-card .rating-label {
    font-size: 0.75rem;
    color: var(--muted);
}

.restaurant-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

.restaurant-card .restaurant-info {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 10px;
}

.restaurant-card .restaurant-info span {
    display: inline-block;
    margin-right: 16px;
}

.restaurant-card .price-range {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--olive);
    font-weight: 400;
    white-space: nowrap;
    padding-top: 4px;
}

/* RELATED ARTICLES */
.related-section {
    background: var(--sand);
    padding: 60px 0;
}

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

.related-card {
    background: var(--white);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-4px);
}

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

.related-card-body {
    padding: 18px;
}

.related-card-cat {
    font-family: 'Oswald', sans-serif;
    color: var(--terracotta);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.related-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ABOUT PAGE */
.page-hero {
    margin-top: 80px;
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/b/b7/DUBROVNIK_HARBOR_AT_NIGHT.jpg') center/cover;
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0;
    border-top: 1px solid var(--sand);
}

.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
}

.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--terracotta);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    opacity: 0.7;
}

.value-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 80px 0;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sand);
    align-items: flex-start;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-detail-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: var(--terracotta);
}

.contact-map-placeholder {
    background: var(--sand);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.contact-map-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--muted);
}

/* POLICY PAGE */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    margin: 36px 0 14px;
}

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

.policy-content ul {
    margin-left: 20px;
}

.policy-content .last-updated {
    background: var(--sand);
    padding: 14px 20px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 32px;
    border-left: 3px solid var(--gold);
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 60px 0 0;
}

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

.footer-brand .logo-title {
    font-size: 1.4rem;
    margin-bottom: 4px;
    display: block;
}

.footer-brand .logo-sub {
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col .footer-contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.footer-col .footer-contact-item strong {
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-col .footer-contact-item a,
.footer-col .footer-contact-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.25);
    font-size: 0.78rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    border-top: 2px solid var(--terracotta);
    z-index: 9000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--terracotta);
    color: var(--white);
}

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

.cookie-btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* BREADCRUMB */
.breadcrumb-bar {
    background: var(--sand);
    padding: 12px 0;
    margin-top: 80px;
}

.breadcrumb-bar .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
}

.breadcrumb-bar .breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-bar .breadcrumb span {
    color: rgba(0,0,0,0.25);
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.updated-date {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 24px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cities-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    nav.main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .article-card:first-child {
        grid-row: span 1;
    }

    .article-card:first-child .article-card-img {
        min-height: 300px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-layout {
        grid-template-columns: 1fr;
    }

    .cuisine-img-accent {
        display: none;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-scroll {
        display: none;
    }

    .article-hero {
        height: 50vh;
        min-height: 320px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: fit-content;
    }
}

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

    section {
        padding: 56px 0;
    }

    .hero {
        padding-bottom: 56px;
    }
}
