:root {
    --bg-cream: #FFF8F0;
    --accent-gold: #D4A373;
    --primary-red: #D34836;
    --text-dark: #333;
    --text-light: #555;
    --burgundy: #560319; /* New Color */
    --burgundy: #D34836;
    --burgundy-dark: #8B2E1F;
    --gold: #c5a059;
    --charcoal: #1a1a1a;
    --grey: #666;
    --light-grey: #f5f2ed;
    
}

/* --- FLOATING DATE BADGE --- */
.floating-date {
    position: fixed;
    top: 120px;
    right: 40px;
    z-index: 101;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.date-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 40px rgba(211, 72, 54, 0.15);
    position: relative;
}

.date-circle::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.date-day {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.date-month {
    font-family: 'Questrial', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    margin-top: 2px;
}

/* --- HERO SECTION --- */
.blog-header {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #fdfbf8 0%, #f8f5f0 50%, #faf8f5 100%);
    overflow: hidden;
    padding: 60px 5% 30px;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(211, 72, 54, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left, .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.vertical-text {
    writing-mode: vertical-rl;
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--gold);
    font-weight: 300;
    text-transform: uppercase;
}

.decorative-shape {
    width: 100px;
    height: 100px;
    border: 1px solid var(--burgundy);
    position: sticky;
    opacity: 0.4;
}

.shape-1 { border-radius: 50%; }
.shape-2 { transform: rotate(45deg); }

.decorative-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 1px solid var(--gold);
    border-radius: inherit;
}

.year-badge {
    font-family: 'Bodoni Moda', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--burgundy);
    opacity: 0.1;
    line-height: 1;
}

.hero-center {
    text-align: center;
    position: relative;
}

/* --- LOGO STYLING --- */
.logo-mark {
    position: relative;
    width: 180px; /* Adjust this to fit your logo's look */
    height: auto;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* --- CLEAN MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .logo-mark {
        width: 140px; /* Smaller on mobile */
        margin-bottom: 20px;
    }

    /* Stack stats vertically for better spacing */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
        background: var(--gold);
        opacity: 0.3;
    }

    .title-main { font-size: 2.2rem; }

    .title-script {
        font-family: 'Tangerine', cursive;
        font-size: 3rem; 
        color: var(--burgundy);
        vertical-align: middle;
        display: inline-block;
        padding-top: 10px; /* Pushes script down to avoid cutting the top */
    }
}

/* --- 2. Smooth Grid Transition --- */
#articlesGrid {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#articlesGrid.ready {
    opacity: 1;
    transform: translateY(0);
}

.rotating-circle {
    width: 100%;
    height: 100%;
}

.sp-monogram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 2px;
}

.subtitle {
    font-family: 'Questrial', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 20px;
}

.page-title { margin-bottom: 30px; }

.title-main {
    display: block;
    font-family: 'Bodoni Moda', serif;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--charcoal);
    line-height: 1.1;
}

.title-script {
    display: block;
    font-family: 'Tangerine', cursive;
    font-size: 4.5rem;
    color: var(--burgundy);
    margin-top: -15px;
    font-weight: 700;
}

.desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* --- FILTER SECTION --- */
.filter-section {
    position: -webkit-sticky;
    position: sticky;
    top: 77px; 
    z-index: 100; 
    background: #ffffff; 
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

/* Add a margin to the section below it so the first few articles aren't hidden */
.articles-section {
    padding: 120px 5% 80px; /* Increased top padding to clear the sticky filter */
    background: var(--bg-cream);
    overflow: visible; /* CRITICAL: Allows script font loops to show */
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--charcoal);
    font-family: 'Questrial', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.filter-btn.active {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}

/* --- FEATURED SECTION --- */
.featured-section {
    padding: 10px 5%;
    background: #fff;
}

.section-label {
    display: flex;
    align-items: center;    /* Keeps everything on the same horizontal axis */
    justify-content: center; /* Centers the whole group on the page */
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.label-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    display: inline-block; /* Ensures the line renders correctly in all browsers */
}

.label-text {
    /* REMOVE padding-top: 10px; — this was the culprit! */
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    line-height: 1; /* Ensures no extra vertical space around the letters */
}

.featured-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--light-grey);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 500px;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.featured-badge i {
    color: var(--burgundy);
}

.featured-badge span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--charcoal);
}

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

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.featured-cat {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    font-weight: 600;
}

.featured-date {
    font-size: 0.85rem;
    color: var(--grey);
    font-style: italic;
}

.featured-headline {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.featured-excerpt {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 30px;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    padding: 6px 14px;
    background: rgba(211, 72, 54, 0.1);
    color: var(--burgundy);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.featured-link:hover {
    gap: 20px;
}

.featured-link i {
    font-size: 1.5rem;
}

/* --- ARTICLES SECTION (SCALABLE GRID) --- */
.articles-section {
    padding: 200px 5% 80px; /* Increased top padding from 80px to 100px */
    background: var(--cream);
    overflow: visible;      /* Ensure tall letters aren't clipped */
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: visible; /* Allows the title-script to breathe */
}

.section-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem; 
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6; /* Higher line-height gives script fonts vertical space */
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
}

.toggle-btn:hover,
.toggle-btn.active {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}

/* GRID VIEW (Default) */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.article-card.hidden {
    display: none;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(211, 72, 54, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.article-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: #fff;
    font-size: 2rem;
}

.card-content {
    padding: 30px;
}

.card-category {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.card-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--grey);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--burgundy);
    opacity: 0.6;
}

/* LIST VIEW */
.articles-grid.list-view {
    grid-template-columns: 1fr;
    gap: 30px;
}

.articles-grid.list-view .article-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.articles-grid.list-view .card-image {
    height: 100%;
}

.articles-grid.list-view .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

/* RESULTS COUNTER */
.results-counter {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 0.9rem;
    color: var(--grey);
}

.results-counter span {
    font-weight: 600;
    color: var(--burgundy);
}

/* LOAD MORE BUTTON */
.load-more-section {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    font-family: 'Questrial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.load-more-btn:hover {
    background: var(--burgundy);
    color: #fff;
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-btn,
.page-num {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Questrial', sans-serif;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.page-num.active,
.page-btn:hover,
.page-num:hover {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}

.page-dots {
    color: var(--grey);
    padding: 0 10px;
}

/* --- ARTISTIC DIVIDER --- */
.artistic-divider {
    padding: 40px 5%;
    background: linear-gradient(135deg, #560319b7 0%, #560319 80%);
    position: relative;
    overflow: hidden;
}

.artistic-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(197, 160, 89, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(197, 160, 89, 0.1) 50%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.divider-ornament {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ornament-circle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.ornament-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.orn-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.orn-line:nth-child(2) { width: 35px; }
.orn-line:nth-child(3) { width: 20px; }

.divider-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    text-align: center;
}

/* --- CTA SECTION --- */
.blog-cta {
    padding: 60px 5%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--burgundy);
    opacity: 0.05;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: floatCircle1 15s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: floatCircle2 12s ease-in-out infinite;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatCircle3 10s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 40px;
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--charcoal);
    line-height: 1.2;
}

.cta-tagline {
    font-size: 1.1rem;
    color: var(--grey);
    font-style: italic;
    margin-bottom: 50px;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 50px;
    background: var(--burgundy);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--burgundy);
    transition: all 0.4s ease;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-book-now:hover .btn-bg {
    left: 0;
}

.btn-text {
    font-family: 'Questrial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.btn-book-now:hover .btn-icon {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--grey);
    font-style: italic;
}

.blog-pagination-wrapper {
    margin: 60px 0 40px 0; /* Keeps top/bottom spacing */
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers children horizontally */
    justify-content: center; /* Centers children vertically */
    text-align: center;      /* Force center for any raw text */
    width: 100%;             /* Ensure it spans the whole grid width */
}

.results-counter {
    width: 100%;             /* Ensure the p tag takes full width to allow centering */
    display: flex;
    justify-content: center;
    margin-bottom: 25px;     /* Space between text and buttons */
}

.results-counter p {
    margin: 0;               /* Remove default browser margins that push it left */
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center; /* Center the buttons inside the pagination div */
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 150px 1fr 150px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .floating-date {
        top: 80px;
        right: 20px;
    }
    
    .date-circle {
        width: 60px;
        height: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-left, .hero-right {
        display: none;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-script {
        font-size: 3rem;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .featured-content {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid.list-view .article-card {
        grid-template-columns: 1fr;
    }
    
    .view-toggle {
        display: none;
    }
    
    /* Footer */
    .brand-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 30px;
    }

    .brand-desc {
        max-width: 280px;
        margin: 0 auto !important;
        color: #555555 !important;
    }

    .footer-logo-white {
        filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(3475%) hue-rotate(331deg) brightness(88%) contrast(100%) !important;
        max-width: 180px !important;
        margin-bottom: 15px !important;
    }
}

/* =========================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================= */

@media (max-width: 768px) {
    /* --- FLOATING DATE --- */
    .floating-date {
        top: 90px; /* Moves it down so it doesn't hit the navbar */
        right: 15px;
    }
    
    .date-circle {
        width: 55px;
        height: 55px;
        box-shadow: 0 5px 20px rgba(211, 72, 54, 0.1);
    }

    .date-day { font-size: 1.2rem; }
    .date-month { font-size: 0.5rem; letter-spacing: 1px; }

    /* --- HERO SECTION --- */
    .blog-header {
        padding: 60px 5% 40px;
        min-height: auto; /* Let content dictate height on mobile */
    }

    .hero-container {
        grid-template-columns: 1fr; /* Stack everything vertically */
        gap: 20px;
    }

    .title-main {
        font-size: 2.2rem; /* Smaller for mobile screens */
        letter-spacing: 1px;
    }

    .title-script {
        font-size: 3.8rem;
        margin-top: -10px;
    }

    .desc {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .stat-label { font-size: 0.6rem; }

    /* --- FILTER SECTION --- */
    .filter-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .filter-buttons {
        justify-content: center;
        width: 100%;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    /* --- FEATURED & ARTICLES GRID --- */
    .featured-grid {
        grid-template-columns: 1fr; /* Stack image and text */
    }

    .featured-image { height: 300px; }

    .featured-content { padding: 30px 20px; }

    .featured-headline { font-size: 1.6rem; }

    .articles-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 25px;
    }

    .card-title { font-size: 1.3rem; }

    /* --- CTA SECTION --- */
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .btn-book-now {
        padding: 15px 30px;
        width: 100%; /* Full width button for easier tapping */
        justify-content: center;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 480px) {
    .title-main { font-size: 1.8rem; }
    .title-script { font-size: 3rem; }
    .year-badge { display: none; } /* Hide extra decor to save space */
}

/* =========================================
   CLEAN MOBILE RESPONSIVE (NO DECORATION)
   ========================================= */

@media (max-width: 768px) {
    /* --- HERO STATS (Stacked & Clean) --- */
    .hero-stats {
        display: flex;
        flex-direction: column; /* Stacks items vertically */
        align-items: center;
        gap: 30px; /* Space between the items */
        margin-top: 40px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .stat-number {
        font-family: 'Bodoni Moda', serif;
        font-size: 2.2rem; /* Easy to read on mobile */
        color: var(--burgundy); /* #D34836 */
        line-height: 1;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--grey);
        margin-top: 5px;
    }

    /* --- THE DIVIDER LINES --- */
    .stat-divider {
        width: 40px; /* Small horizontal line between items */
        height: 1px;
        background: var(--gold); /* #c5a059 */
        opacity: 0.5;
    }

    /* --- HERO TEXT ADJUSTMENTS --- */
    .title-main {
        font-size: 2.2rem;
        text-align: center;
    }

    .title-script {
        font-size: 3.5rem;
        margin-top: -10px;
        text-align: center;
    }

    .desc {
        font-size: 0.9rem;
        padding: 0 20px;
        text-align: center;
    }
}

/* =========================================
   THE ULTIMATE MOBILE FIX (Place at Bottom)
   ========================================= */

@media (max-width: 768px) {
    /* 1. Fix the "Covering Stuff" Problem (Layers) */
    .navbar { 
        z-index: 1001 !important; 
    }
    .floating-date { 
        z-index: 1000 !important; 
        top: 85px !important; 
        right: 15px !important; 
        transform: scale(0.7); 
    }
    .filter-section { 
        z-index: 999 !important; 
        position: sticky !important;
        top: 70px !important; /* This keeps it right under the navbar */
        background: #fff !important;
        padding: 10px 0 !important;
    }

    /* 2. Hero Section - Make it clean, not "weird" */
    .blog-header { padding: 100px 5% 40px !important; min-height: auto !important; }
    .hero-container { grid-template-columns: 1fr !important; gap: 15px !important; }
    .hero-left, .hero-right, .year-badge { display: none !important; } /* Hide extra decor */
    
    .title-main { font-size: 2rem !important; text-align: center !important; }
    .title-script { font-size: 3.2rem !important; margin-top: -10px !important; text-align: center !important; }
    .desc { font-size: 0.9rem !important; padding: 0 15px !important; text-align: center !important; }

    /* 3. The "Horizontal Swipe" (Fixes the ugly stacked buttons) */
    .filter-container {
        display: block !important; 
        padding: 0 15px !important;
    }
    .filter-title { font-size: 1.1rem !important; margin-bottom: 10px !important; text-align: center; }
    .filter-buttons {
        display: flex !important;
        overflow-x: auto !important; /* Let users swipe left/right */
        white-space: nowrap !important; /* Keep buttons on one line */
        gap: 10px !important;
        padding-bottom: 15px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .filter-buttons::-webkit-scrollbar { display: none; }
    .filter-btn { flex: 0 0 auto !important; padding: 8px 16px !important; font-size: 0.75rem !important; }

    /* 4. Hero Stats - Stacked neatly */
    .hero-stats {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }
    .stat-divider { width: 40px !important; height: 1px !important; background: var(--gold) !important; }

    /* 5. Article Grid - Single column for phones */
    .articles-grid, .featured-grid { 
        grid-template-columns: 1fr !important; 
        padding: 0 15px !important; 
    }
    .featured-image, .card-image { height: 250px !important; }
    .featured-content { padding: 30px 20px !important; }
}

/* --- FEATURED DUAL ACTIONS --- */
.featured-actions {
    display: flex;
    gap: 30px; /* Space between buttons */
    margin-top: 25px;
    align-items: center;
    flex-wrap: wrap; /* Prevents overlap if screen is too small */
}

.featured-btn {
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Style for Read Article */
.read-btn {
    color: #333;
    border-bottom: 2px solid #D4A373; /* Gold accent */
    padding-bottom: 4px;
}

.read-btn:hover {
    color: #D34836; /* Brand Red */
    border-color: #D34836;
}

/* Style for Watch Interview */
.watch-btn {
    color: #D34836;
}

.watch-btn i {
    font-size: 1.3rem;
}

.watch-btn:hover {
    transform: translateX(5px);
}

/* --- MOBILE FIX --- */
@media (max-width: 768px) {
    .featured-actions {
        flex-direction: column; /* Stacks them vertically so they never touch */
        align-items: flex-start;
        gap: 20px;
    }
    
    .featured-btn {
        width: 100%;
        font-size: 0.8rem;
    }
}