/** Shopify CDN: Minification failed

Line 110:4 Unexpected "{"
Line 110:5 Expected identifier but found "%"
Line 112:4 Unexpected "{"
Line 112:5 Expected identifier but found "%"
Line 114:4 Unexpected "{"
Line 114:5 Expected identifier but found "%"

**/
:root {
    --primary-gradient: linear-gradient(135deg, #72363b 0%, #000000 50%, #72363b 100%);
    --accent-gradient: linear-gradient(135deg, #72363b 0%, #000000 100%);
    --text-primary: #000000;
    --text-secondary: #72363b;
    --background-main: #f7f7f7;
    --background-white: #ffffff;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-quick: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body-family), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--background-main);
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.custom-cursor.active { opacity: 1; }
.custom-cursor.hover { transform: scale(2); }

/* Animated Background */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, var(--background-main), var(--background-white), #f0f0f0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--text-secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 25s linear infinite;
}

@keyframes float {
    0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding-top:130px;
    {% if show_hero %}
    min-height: 100vh;
    {% else %}
    min-height: 60vh;
    {% endif %}
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    opacity: 0;
    animation: heroReveal 2s ease forwards 0.5s;
}

@keyframes heroReveal {
    to {
    opacity: 1;
    transform: translateY(0);
    }
    from {
    transform: translateY(30px);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(114, 54, 59, 0.3);
}

.btn-secondary {
    background: var(--background-white);
    border: 2px solid rgba(114, 54, 59, 0.2);
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(114, 54, 59, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-quick);
}

.btn:hover::before {
    left: 100%;
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Article Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Article Card */
.article-card {
    position: relative;
    background: var(--background-white);
    border: 1px solid rgba(114, 54, 59, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.article-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.article-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
    0 25px 50px rgba(114, 54, 59, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #72363b, #000000);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.9) contrast(1.1);
}

.article-card:hover .article-image img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1) contrast(1.2);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
    180deg, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.4) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.article-category {
    background: rgba(255,255,255,0.9);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.article-card:hover .article-category {
    opacity: 1;
    transform: translateY(0);
}

.article-content {
    padding: 2rem;
    position: relative;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.article-meta-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-separator {
    opacity: 0.6;
}

.article-author {
    font-weight: 600;
    color: var(--text-secondary);
}

.reading-time {
    font-style: italic;
    opacity: 0.8;
}

.article-title {
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
}

.article-title-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-quick);
    position: relative;
    display: block;
}

.article-title-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-quick);
}

.article-card:hover .article-title-link::after {
    width: 60px;
}

.article-card:hover .article-title-link {
    color: var(--text-secondary);
}

.article-excerpt {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0.9;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-quick);
    position: relative;
    overflow: hidden;
}

.read-more:hover {
    color: var(--text-secondary);
    transform: translateX(5px);
}

.arrow-icon {
    transition: var(--transition-quick);
    opacity: 0.7;
}

.read-more:hover .arrow-icon {
    transform: translateX(3px);
    opacity: 1;
}

/* Pagination */
.pagination-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.pagination {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-quick);
    font-weight: 600;
}

.pagination a {
    background: var(--background-white);
    color: var(--text-primary);
    border: 1px solid rgba(114, 54, 59, 0.2);
}

.pagination a:hover {
    background: var(--text-secondary);
    color: white;
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--primary-gradient);
    color: white;
}

/* Tags Filter */
.tags-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag-link {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-quick);
    background: var(--background-white);
    color: var(--text-secondary);
    border: 1px solid rgba(114, 54, 59, 0.2);
}

.tag-link:hover,
.tag-link.active {
    background: var(--text-secondary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
    padding: 0 1rem;
    }
    
    .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    
    .hero-cta {
    flex-direction: column;
    align-items: center;
    }
    
    .btn {
    min-width: 200px;
    }
    
    .custom-cursor {
    display: none;
    }
    
    .article-content {
    padding: 1.5rem;
    }
    
    .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    }
    
    .article-title-link {
    font-size: 1.25rem;
    }
    
    .article-image {
    height: 240px;
    }
    
    .tags-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    }
    
    .tag-link {
    white-space: nowrap;
    }
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* No articles state */
.no-articles {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
}

.no-articles h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}