:root {
    --jungle: #0E1C15;
    --jungle-deep: #0B1910;
    --jungle-mid: #152A1E;
    --amber: #C8943A;
    --amber-light: #D4A84C;
    --cream: #F5EFE3;
    --bg: #FAFAF7;
    --text: #1A1A16;
    --text-muted: #7A7060;
    --stone: #A89880;
    --shadow-sm: 0 2px 4px rgba(14, 28, 21, 0.07);
    --shadow-md: 0 4px 12px rgba(14, 28, 21, 0.11);
    --shadow-lg: 0 8px 24px rgba(14, 28, 21, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Lato', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--jungle);
    line-height: 1.3;
}

a {
    color: var(--amber);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--jungle);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(200,148,58,0.2);
    font-size: 0.8rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(245,239,227,0.7);
    letter-spacing: 0.03em;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
}

.header-contact a {
    color: rgba(245,239,227,0.75);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    text-decoration: none;
    font-size: 0.8rem;
}

.header-contact a:hover {
    color: var(--amber);
}

.header-main {
    background: #fff;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(26,26,22,0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-container {
    flex: 1;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--jungle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(14,28,21,0.25);
    flex-shrink: 0;
}

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

.logo-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--jungle);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.logo-subtitle {
    font-size: 0.72rem;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'DM Sans', sans-serif;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
}

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

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

.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta {
    background: var(--jungle);
    color: var(--cream);
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-cta:hover {
    background: var(--jungle-mid);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-compare {
    background: transparent;
    border: 1.5px solid var(--jungle);
    color: var(--jungle);
}

.btn-compare:hover {
    background: var(--jungle);
    color: var(--cream);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--jungle);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── Page Hero ── */
.page-hero {
    background: var(--jungle);
    color: var(--cream);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8943A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-hero h1 {
    color: var(--cream);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-hero .hero-title {
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    color: rgba(245,239,227,0.75);
    font-weight: 300;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(245,239,227,0.65);
    font-size: 0.85rem;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--amber);
}

.breadcrumb-item.active {
    color: var(--amber);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(245,239,227,0.4);
}

/* ── Blog Index ── */
.blog-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.blog-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Filter Buttons */
.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: white;
    border: 1.5px solid var(--jungle);
    color: var(--jungle);
    padding: 0.45rem 1.2rem;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover {
    background: rgba(200,148,58,0.1);
    border-color: var(--amber);
    color: var(--jungle);
}

.filter-btn.active {
    background: var(--jungle);
    border-color: var(--jungle);
    color: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(14,28,21,0.06);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,148,58,0.2);
}

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

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

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--amber);
    color: var(--jungle);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--jungle);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--amber);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(14,28,21,0.07);
    font-size: 0.82rem;
    color: var(--stone);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more {
    color: var(--amber);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more:hover {
    gap: 0.6rem;
    color: var(--jungle);
}

/* ── Article Page ── */
.article-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
}

.article-main {
    min-width: 0;
}

.article-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

.article-category {
    display: inline-block;
    background: var(--amber);
    color: var(--jungle);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.article-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--jungle);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Author byline */
.author-byline {
    background: rgba(200,148,58,0.07) !important;
    border-left: 3px solid var(--amber);
    border-radius: 0 6px 6px 0 !important;
}

.author-byline strong {
    color: var(--jungle) !important;
}

.author-byline span {
    color: var(--text-muted) !important;
}

.author-byline small {
    color: var(--stone) !important;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1.5px solid var(--amber);
    display: inline-block;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin: 1.75rem 0 0.75rem;
    color: var(--jungle);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #3a3a30;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #3a3a30;
}

.article-content blockquote {
    border-left: 3px solid var(--amber);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
    background: rgba(200,148,58,0.05);
    border-radius: 0 8px 8px 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-content .callout {
    background: var(--jungle);
    color: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content .callout h4 {
    color: var(--amber);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.article-content a {
    color: var(--amber);
    text-decoration: underline;
    text-decoration-color: rgba(200,148,58,0.4);
}

.article-content a:hover {
    color: var(--jungle);
}

/* ── Article Sidebar ── */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14,28,21,0.06);
}

.sidebar-widget h4 {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid var(--amber);
    color: var(--jungle);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: block;
    padding: 0.3rem 0 0.3rem 0.75rem;
    border-left: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.toc-list a:hover {
    color: var(--amber);
    border-left-color: var(--amber);
}

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

.related-articles li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14,28,21,0.07);
}

.related-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-articles a {
    color: var(--jungle);
    font-weight: 500;
    font-size: 0.92rem;
    display: block;
    line-height: 1.4;
    text-decoration: none;
}

.related-articles a:hover {
    color: var(--amber);
}

.related-articles .read-time {
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 0.25rem;
}

.hotels-widget {
    background: var(--jungle);
    color: var(--cream);
    border: none;
}

.hotels-widget h4 {
    color: var(--amber);
    border-bottom-color: rgba(200,148,58,0.25);
}

.hotels-widget p {
    font-size: 0.9rem;
    color: rgba(245,239,227,0.8);
    margin-bottom: 1rem;
}

.hotels-widget .btn {
    background: var(--amber);
    color: var(--jungle);
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}

.hotels-widget .btn:hover {
    background: var(--amber-light);
    color: var(--jungle);
}

/* ── FAQ Section ── */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14,28,21,0.1);
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14,28,21,0.06);
}

.faq-item h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--jungle);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.97rem;
}

.faq-item h5::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--amber);
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.93rem;
}

/* ── Newsletter Section ── */
.newsletter-section {
    background: var(--jungle);
    color: var(--cream);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.newsletter-section h2 {
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: rgba(245,239,227,0.75);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.newsletter-form button {
    background: var(--amber);
    color: var(--jungle);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.newsletter-form button:hover {
    background: var(--amber-light);
}

/* ── Footer ── */
.site-footer {
    background: var(--jungle-deep);
    color: rgba(245,239,227,0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-about .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-about .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--amber);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jungle);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-about .logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

.footer-about p {
    color: rgba(245,239,227,0.6);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-column h4 {
    color: var(--amber);
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #b0b0b0;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--amber);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(245,239,227,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245,239,227,0.7);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--amber);
    color: var(--jungle);
}

.footer-bottom {
    border-top: 1px solid rgba(200,148,58,0.15);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(245,239,227,0.4);
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-layout {
        grid-template-columns: 1fr 300px;
    }
}

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

    .mobile-menu-btn {
        display: block;
    }

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

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-title { font-size: 1.8rem; }
    .article-hero-image { height: 280px; }
    .article-sidebar { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .header-top { display: none; }
    .logo-title { font-size: 1.25rem; }
    .logo-icon { width: 38px; height: 38px; font-size: 1.1rem; }
    .header-actions { gap: 0.4rem; }
    .btn-cta { padding: 0.45rem 0.7rem; font-size: 0.78rem; }
}

/* ── Animations ── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.blog-card { animation: fadeIn 0.5s ease forwards; }
.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-card:nth-child(3) { animation-delay: 0.15s; }
.blog-card:nth-child(4) { animation-delay: 0.2s; }
.blog-card:nth-child(5) { animation-delay: 0.25s; }
