/*
Theme Name: Archinterio
Theme URI: https://archinterio.com
Author: Archinterio Team
Author URI: https://archinterio.com
Description: Architectural and Interior Design Portfolio Theme - Hiện đại, sang trọng, tối giản với tông màu trung tính và điểm nhấn nâu/vàng đồng
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: archinterio
Domain Path: /languages
Tags: architecture, interior-design, portfolio, modern, minimal, responsive, custom-post-types
Requires at least: 5.8
Requires PHP: 7.4
*/

/* ============================================
   GALLERY STYLES
   ============================================ */
.gallery-section {
    text-align: center;
    padding: 60px 0;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}



/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
}

/* Aspect ratio for square images */
.gallery-item {
    aspect-ratio: 1;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --color-white: #ffffff;
    --color-cream: #faf9f7;
    --color-beige: #f0ede8;
    --color-gray-light: #e8e6e1;
    --color-gray: #9a958e;
    --color-gray-dark: #4a4743;
    --color-black: #1a1918;
    --color-bronze: #b87333;
    --color-gold: #c9a962;
    --color-copper: #a67c52;
    
    --text-primary: #1a1918;
    --text-secondary: #4a4743;
    --text-muted: #9a958e;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #faf9f7;
    --bg-dark: #1a1918;
    
    --accent-primary: #b87333;
    --accent-secondary: #c9a962;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    --container-max: 1280px;
    --container-padding: 1.5rem;
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-size: var(--text-base); line-height: 1.6; color: var(--text-primary); background-color: var(--bg-primary); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-base); }
p { margin-bottom: 1rem; }
a { color: var(--accent-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-copper); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 var(--container-padding); }
.section { padding: var(--space-24) 0; }
.section-light { background-color: var(--bg-primary); }
.section-cream { background-color: var(--bg-secondary); }
.section-dark { background-color: var(--bg-dark); color: var(--text-white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid transparent; cursor: pointer; transition: all var(--transition-base); }
.btn-primary { background-color: var(--accent-primary); color: var(--color-white); border-color: var(--accent-primary); }
.btn-primary:hover { background-color: var(--color-copper); border-color: var(--color-copper); color: var(--color-white); }
.btn-outline { background-color: transparent; color: var(--text-primary); border-color: var(--text-primary); }
.btn-outline:hover { background-color: var(--text-primary); color: var(--color-white); }
.btn-white { background-color: var(--color-white); color: var(--text-primary); border-color: var(--color-white); }
.btn-white:hover { background-color: var(--color-beige); border-color: var(--color-beige); color: var(--text-primary); }
.btn-outline-white { background-color: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-white:hover { background-color: var(--color-white); color: var(--text-primary); }

/* ============================================
   HEADER
   ============================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background-color: var(--bg-dark); transition: background-color var(--transition-base), box-shadow var(--transition-base); }
.site-header.scrolled,
.site-header.inner-page { background-color: var(--bg-dark); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-logo a { font-family: var(--font-heading); font-size: var(--text-2xl); color: var(--color-white); transition: color var(--transition-base); }
.primary-nav ul { display: flex; align-items: center; gap: var(--space-8); list-style: none; padding: 0; margin: 0; }
.primary-nav a { font-size: var(--text-sm); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-white); transition: color var(--transition-fast); }
.primary-nav a:hover { color: var(--accent-primary); }
.header-cta .btn { padding: 0.75rem 1.5rem; font-size: var(--text-xs); }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background-color: var(--color-white); transition: all var(--transition-fast); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26, 25, 24, 0.4), rgba(26, 25, 24, 0.6)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--color-white); max-width: 900px; padding: 0 var(--container-padding); }
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; margin-bottom: var(--space-6); line-height: 1.1; }
.hero-subtitle { font-family: var(--font-accent); font-size: var(--text-xl); font-style: italic; margin-bottom: var(--space-8); opacity: 0.9; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: var(--space-24) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.about-images img { width: 100%; height: 300px; object-fit: cover; }
.about-images img:first-child { grid-column: 1 / -1; height: 400px; }
.about-content .section-label { font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-primary); margin-bottom: var(--space-4); }
.about-content h2 { font-size: var(--text-4xl); margin-bottom: var(--space-6); }
.about-content p { color: var(--text-secondary); margin-bottom: var(--space-6); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); margin-top: var(--space-10); }
.stat-item h4 { font-family: var(--font-heading); font-size: var(--text-3xl); color: var(--accent-primary); margin-bottom: var(--space-2); }
.stat-item p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.service-card { text-align: center; padding: var(--space-8); background-color: var(--bg-primary); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); }
.service-icon { width: 70px; height: 70px; margin: 0 auto var(--space-6); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); }
.service-icon svg { width: 100%; height: 100%; stroke-width: 1; }
.service-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.service-card p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section { padding: var(--space-24) 0; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.project-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.project-card:hover img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 25, 24, 0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-8); opacity: 0; transition: opacity var(--transition-base); }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h3 { font-size: var(--text-xl); color: var(--color-white); margin-bottom: var(--space-2); }
.project-overlay p { font-size: var(--text-sm); color: var(--color-beige); margin-bottom: var(--space-4); }
.project-link { font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-secondary); transition: color var(--transition-fast); }
.project-link:hover { color: var(--color-white); }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section { background-color: var(--bg-secondary); padding: var(--space-24) 0; }
.process-grid { display: flex; flex-wrap: nowrap; justify-content: center; align-items: flex-start; gap: var(--space-4); margin-top: var(--space-12); }
.process-step { flex: 0 0 22%; text-align: center; padding: var(--space-6); box-sizing: border-box; }
.process-arrow { flex: 0 0 4%; display: flex; align-items: flex-start; justify-content: center; padding-top: var(--space-12); color: var(--accent-primary); opacity: 0.4; }
.process-arrow svg { width: 20px; height: 20px; }
.step-icon { width: 56px; height: 56px; margin: 0 auto var(--space-4); color: var(--accent-primary); }
.step-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.process-step h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-3); }
.process-step p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: var(--space-24) 0; }
.testimonial-card { max-width: 800px; margin: 0 auto; text-align: center; padding: var(--space-12); }
.testimonial-quote { font-family: var(--font-heading); font-size: var(--text-2xl); font-style: italic; line-height: 1.6; color: var(--text-primary); margin-bottom: var(--space-8); }
.testimonial-quote::before { content: '"'; font-size: var(--text-5xl); color: var(--accent-primary); opacity: 0.3; display: block; margin-bottom: var(--space-4); }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: var(--space-4); }
.testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimonial-author-info h4 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.testimonial-author-info p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section { padding: var(--space-24) 0; background-color: var(--bg-secondary); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.blog-card { background-color: var(--bg-primary); overflow: hidden; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); }
.blog-card img { width: 100%; height: 240px; object-fit: cover; }
.blog-card-content { padding: var(--space-6); }
.blog-meta { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-3); }
.blog-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-4); line-height: 1.3; }
.blog-card h3 a { color: var(--text-primary); }
.blog-card h3 a:hover { color: var(--accent-primary); }
.blog-excerpt { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: var(--space-20) 0; background-color: var(--bg-dark); color: var(--color-white); text-align: center; }
.cta-section h2 { font-size: var(--text-4xl); margin-bottom: var(--space-6); }
.cta-section p { font-size: var(--text-lg); color: var(--color-beige); margin-bottom: var(--space-8); max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background-color: var(--bg-dark); color: var(--color-beige); padding: var(--space-16) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: var(--space-12); margin-bottom: var(--space-12); }
.footer-brand .site-logo { font-family: var(--font-heading); font-size: var(--text-2xl); color: var(--color-white); margin-bottom: var(--space-4); display: inline-block; }
.footer-brand p { font-size: var(--text-sm); line-height: 1.8; color: var(--color-gray); }
.footer-column h4 { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-white); margin-bottom: var(--space-6); }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: var(--space-3); }
.footer-column a { font-size: var(--text-sm); color: var(--color-gray); transition: color var(--transition-fast); }
.footer-column a:hover { color: var(--color-white); }
.footer-contact p { font-size: var(--text-sm); margin-bottom: var(--space-3); display: flex; align-items: flex-start; gap: var(--space-3); }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: var(--space-4); margin-top: var(--space-6); }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-gray-dark); border-radius: 50%; color: var(--color-gray); transition: all var(--transition-fast); }
.footer-social a:hover { background-color: var(--accent-primary); border-color: var(--accent-primary); color: var(--color-white); }
.footer-bottom { padding-top: var(--space-8); border-top: 1px solid var(--color-gray-dark); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: var(--text-xs); color: var(--color-gray); margin: 0; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { position: relative; padding: calc(80px + var(--space-20)) 0 var(--space-16); background-size: cover; background-position: center; text-align: center; }
.page-header-overlay { position: absolute; inset: 0; background: rgba(26, 25, 24, 0.6); }
.page-header-content { position: relative; z-index: 2; color: var(--color-white); }
.page-header h1 { font-size: var(--text-5xl); margin-bottom: var(--space-4); }
.page-header-subtitle { font-family: var(--font-accent); font-size: var(--text-xl); font-style: italic; opacity: 0.9; }

/* ============================================
   PAGE PROJECTS
   ============================================ */
.projects-filter-section { padding: var(--space-8) 0; background-color: var(--bg-secondary); border-bottom: 1px solid var(--color-beige); }
.advanced-filters { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }
.filter-group { display: flex; flex-direction: column; gap: var(--space-2); }
.filter-group label { font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.filter-group select { padding: var(--space-3) var(--space-4); border: 1px solid var(--color-gray-light); background-color: var(--bg-primary); font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-primary); cursor: pointer; min-width: 180px; }
.projects-list-section { padding: var(--space-16) 0; }
.project-item { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-16); background-color: var(--bg-secondary); }
.project-item-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-2); }
.project-item-gallery img { width: 100%; height: 100%; object-fit: cover; }
.project-item-gallery img:first-child { grid-row: 1 / 3; min-height: 400px; }
.project-item-info { padding: var(--space-8); display: flex; flex-direction: column; justify-content: center; }
.project-item-info h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.project-item-meta { margin-bottom: var(--space-6); }
.project-item-meta p { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-2); }
.project-item-meta strong { color: var(--text-primary); margin-right: var(--space-2); }
.project-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); margin: var(--space-6) 0; }
.project-spec-item { padding: var(--space-4); background-color: var(--bg-primary); text-align: center; }
.project-spec-item span { display: block; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: var(--space-1); }
.project-spec-item strong { font-family: var(--font-heading); font-size: var(--text-xl); color: var(--accent-primary); }
.project-item-info > .btn { align-self: flex-start; }

/* ============================================
   PROJECTS MASONRY GRID - NEW DESIGN
   ============================================ */
.projects-masonry-section { padding: var(--space-16) 0; background-color: var(--bg-primary); }

.projects-masonry-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--space-8); 
}

/* Project Card */
.project-masonry-card { 
    background-color: var(--bg-primary); 
    border-radius: 0; 
    overflow: hidden;
}

/* Image Gallery Grid */
.project-card-gallery { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    grid-template-rows: repeat(3, 1fr);
    gap: 8px; 
    margin-bottom: var(--space-6);
    height: 320px;
}

.gallery-main { 
    grid-column: 1;
    grid-row: 1 / 4;
    overflow: hidden; 
    height: 100%;
}

.gallery-main img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform var(--transition-slow);
}

.gallery-thumbs { 
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.thumb-item { 
    flex: 1;
    overflow: hidden; 
    min-height: 0;
}

.thumb-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform var(--transition-slow);
}

.thumb-placeholder img { 
    filter: grayscale(20%); 
}

.project-card-gallery:hover .gallery-main img,
.thumb-item:hover img { 
    transform: scale(1.05); 
}

/* Project Card Info */
.project-card-info { 
    padding: 0 var(--space-2); 
}

.project-title { 
    font-size: var(--text-xl); 
    font-weight: 600; 
    margin-bottom: var(--space-2); 
    color: var(--text-primary);
    line-height: 1.3;
}

.project-owner { 
    font-size: var(--text-sm); 
    font-weight: 500;
    color: var(--text-secondary); 
    margin-bottom: var(--space-3);
}

.project-desc { 
    font-size: var(--text-sm); 
    color: var(--text-muted); 
    margin-bottom: var(--space-3); 
    line-height: 1.6;
}

.project-meta-inline { 
    display: flex; 
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4); 
    margin-bottom: var(--space-4);
}

.project-meta-inline .meta-left {
    display: flex;
    gap: var(--space-4);
}

.project-meta-inline span { 
    font-size: var(--text-xs); 
    color: var(--text-muted);
}

.project-meta-inline .btn-project-detail {
    margin: 0;
}

/* Filter Tags */
.project-filter-tags { 
    display: none;
}

.filter-tag { 
    display: flex; 
    flex-direction: column; 
    padding: var(--space-2) var(--space-4); 
    background-color: var(--bg-secondary); 
    border-radius: 4px;
    min-width: 100px;
}

.filter-tag .tag-label { 
    font-size: var(--text-xs); 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.filter-tag .tag-value { 
    font-size: var(--text-sm); 
    font-weight: 500;
    color: var(--text-primary);
}

/* Detail Button */
.btn-project-detail { 
    display: inline-block; 
    padding: var(--space-3) var(--space-6); 
    font-size: var(--text-xs); 
    font-weight: 500; 
    text-transform: uppercase; 
    letter-spacing: 0.1em;
    color: var(--text-primary); 
    background-color: var(--bg-secondary); 
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.btn-project-detail:hover { 
    background-color: var(--accent-primary); 
    border-color: var(--accent-primary);
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-masonry-grid { 
        grid-template-columns: 1fr; 
        gap: var(--space-10);
    }
    .premium-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .premium-masonry-item {
        height: 200px;
    }
    .project-card-gallery { 
        height: 280px;
    }
}

@media (max-width: 768px) {
    .project-card-gallery { 
        height: 220px;
        gap: 6px;
    }
    
    .premium-masonry-item {
        height: 180px;
    }
    
    .gallery-thumbs { 
        gap: 6px;
    }
    
    .thumb-item:last-child { 
        display: none; 
    }
    
    .project-filter-tags { 
        gap: var(--space-2);
    }
    
    .filter-tag { 
        min-width: auto; 
        padding: var(--space-2) var(--space-3);
    }
}

/* ============================================
   SINGLE PROJECT
   ============================================ */
.project-hero { position: relative; height: 80vh; min-height: 600px; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 25, 24, 0.9) 0%, rgba(26, 25, 24, 0.3) 50%, transparent 100%); }
.project-hero-content { position: relative; z-index: 2; width: 100%; padding: var(--space-16) 0; color: var(--color-white); }
.project-hero-content h1 { font-size: var(--text-5xl); margin-bottom: var(--space-4); }
.project-hero-content p { font-size: var(--text-lg); max-width: 700px; opacity: 0.9; }
.overview-section { padding: var(--space-16) 0; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); }
.overview-content h2 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.overview-content p { color: var(--text-secondary); margin-bottom: var(--space-4); }
.overview-floor-plan img { width: 100%; height: auto; }
.project-specs-section { padding: var(--space-16) 0; background-color: var(--bg-secondary); }
.specs-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.spec-row { display: flex; justify-content: space-between; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-beige); }
.spec-label { font-size: var(--text-sm); color: var(--text-muted); }
.spec-value { font-weight: 500; color: var(--text-primary); }
.gallery-section { padding: var(--space-16) 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); position: relative; }
.gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid:not(.project-gallery-masonry) .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); cursor: pointer; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-grid.project-gallery-masonry {
    display: block;
    position: relative;
}

.project-gallery-masonry::after {
    content: '';
    display: block;
    clear: both;
}

.project-gallery-masonry .gallery-sizer,
.project-gallery-masonry .gallery-item {
    width: calc((100% - 30px) / 3);
}

.project-gallery-masonry .gallery-sizer {
    pointer-events: none;
    opacity: 0;
}

.project-gallery-masonry .gallery-item {
    float: left;
    aspect-ratio: auto;
    margin-bottom: 15px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.project-gallery-masonry .gallery-item img {
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .project-gallery-masonry .gallery-sizer,
    .project-gallery-masonry .gallery-item {
        width: calc((100% - 15px) / 2);
    }
}

@media (max-width: 600px) {
    .project-gallery-masonry .gallery-sizer,
    .project-gallery-masonry .gallery-item {
        width: 100%;
    }
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--space-2); margin-top: var(--space-12); }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 var(--space-4); border: 1px solid var(--color-beige); font-size: var(--text-sm); color: var(--text-primary); transition: all var(--transition-fast); }
.pagination a:hover, .pagination span.current { background-color: var(--accent-primary); border-color: var(--accent-primary); color: var(--color-white); }

/* ============================================
   COMMENTS
   ============================================ */
.comments-area { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--color-beige); }
.comments-title { font-size: 1.5rem; margin-bottom: 30px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 40px; }
.comment-body { display: flex; gap: 20px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--color-beige); }
.comment-meta { flex-shrink: 0; }
.comment-meta img { border-radius: 50%; }
.comment-content { flex: 1; }
.comment-metadata { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 10px; }
.comment-metadata .fn { font-style: normal; font-weight: 500; color: var(--text-primary); }
.comment-text { line-height: 1.8; }
.reply { margin-top: 15px; }
.reply a { font-size: 0.875rem; font-weight: 500; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 0.05em; }
.reply a:hover { color: var(--color-copper); }
.comment-form label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 1rem; border: 1px solid var(--color-beige); font-family: var(--font-body); font-size: 1rem; margin-bottom: 20px; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--accent-primary); }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { flex-wrap: wrap; gap: var(--space-8); }
    .process-step { flex: 0 0 45%; }
    .process-arrow { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .project-item { grid-template-columns: 1fr; }
    .project-item-gallery img:first-child { grid-row: auto; min-height: 300px; }
    .specs-table { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --text-5xl: 2.5rem; --text-4xl: 2rem; --text-3xl: 1.5rem; --space-24: 4rem; --space-20: 3rem; --space-16: 2.5rem; }
    .mobile-menu-toggle { display: flex; }
    .primary-nav { display: none; }
    .header-cta { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .process-grid { flex-wrap: wrap; }
    .process-step { flex: 0 0 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
    .overview-grid { grid-template-columns: 1fr; }
    .specs-table { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .project-specs { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }


/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-copper);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-24) 0;
}

.section-light {
    background-color: var(--bg-primary);
}

.section-cream {
    background-color: var(--bg-secondary);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--color-white);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background-color: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--text-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-beige);
    border-color: var(--color-beige);
    color: var(--text-primary);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--text-primary);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-dark);
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled,
.site-header.inner-page {
    background-color: var(--bg-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-white);
    transition: color var(--transition-base);
}

/* Primary Navigation */
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-nav a {
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.primary-nav a:hover {
    color: var(--accent-primary);
}

/* Header CTA */
.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-xs);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 25, 24, 0.4), rgba(26, 25, 24, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .hero-content {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.hero-slider-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-white);
}

.hero-slider-nav svg {
    width: 20px;
    height: 20px;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* Scroll Down Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-down:hover {
    opacity: 1;
}

.hero-scroll-down span {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-scroll-down svg {
    width: 20px;
    height: 20px;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider-nav {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        left: 15px;
    }

    .hero-slider-next {
        right: 15px;
    }

    .hero-slider-dots {
        bottom: 100px;
        gap: 10px;
    }

    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-24) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.about-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-images img:first-child {
    grid-column: 1 / -1;
    height: 400px;
}

.about-content .section-label {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: var(--space-4);
}

.about-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.stat-item h4 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--accent-primary);
    margin-bottom: var(--space-2);
}

.stat-item p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--space-24) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.service-card {
    text-align: center;
    padding: var(--space-8);
    background-color: var(--bg-primary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
    padding: var(--space-24) 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 25, 24, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-8);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.project-overlay p {
    font-size: var(--text-sm);
    color: var(--color-beige);
    margin-bottom: var(--space-4);
}

.project-link {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-secondary);
    transition: color var(--transition-fast);
}

.project-link:hover {
    color: var(--color-white);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-step p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-24) 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-12);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--space-8);
}

.testimonial-quote::before {
    content: '"';
    font-size: var(--text-5xl);
    color: var(--accent-primary);
    opacity: 0.3;
    display: block;
    margin-bottom: var(--space-4);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.testimonial-author-info p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* Testimonial Slider Navigation */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10;
}

.testimonial-nav:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--color-white);
}

.testimonial-nav svg {
    width: 20px;
    height: 20px;
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

@media (max-width: 1024px) {
    .testimonial-prev {
        left: -20px;
    }
    .testimonial-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    .testimonial-prev {
        left: 0;
    }
    .testimonial-next {
        right: 0;
    }
    .testimonial-card {
        padding: var(--space-12) var(--space-16);
    }
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--text-muted);
    opacity: 0.3;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot:hover {
    background-color: var(--accent-primary);
    opacity: 0.6;
}

.testimonial-dot.active {
    background-color: var(--accent-primary);
    opacity: 1;
}

/* Testimonial Card Animation */
.testimonial-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: var(--space-24) 0;
    background-color: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.blog-card {
    background-color: var(--bg-primary);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-card-content {
    padding: var(--space-6);
}

.blog-meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.blog-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    color: var(--accent-primary);
}

.blog-excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-20) 0;
    background-color: var(--bg-dark);
    color: var(--color-white);
    text-align: center;
}

.cta-section h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.cta-section p {
    font-size: var(--text-lg);
    color: var(--color-beige);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--color-beige);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand .site-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    display: inline-block;
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-gray);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: var(--space-3);
}

.footer-column a {
    font-size: var(--text-sm);
    color: var(--color-gray);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-contact p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-dark);
    border-radius: 50%;
    color: var(--color-gray);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--color-white);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: var(--color-gray);
    margin: 0;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    padding: calc(80px + var(--space-20)) 0 var(--space-16);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 25, 24, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.page-header h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
}

.page-header-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    opacity: 0.9;
}

/* ============================================
   PAGE PROJECTS
   ============================================ */
.projects-filter-section {
    padding: var(--space-8) 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--color-beige);
}

.advanced-filters {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.filter-group label {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.filter-group select {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-gray-light);
    background-color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-primary);
    cursor: pointer;
    min-width: 180px;
}

.projects-list-section {
    padding: var(--space-16) 0;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    background-color: var(--bg-secondary);
}

.project-item-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2);
}

.project-item-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-item-gallery img:first-child {
    grid-row: 1 / 3;
    min-height: 400px;
}

.project-item-info {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-item-info h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.project-item-meta {
    margin-bottom: var(--space-6);
}

.project-item-meta p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.project-item-meta strong {
    color: var(--text-primary);
    margin-right: var(--space-2);
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.project-spec-item {
    padding: var(--space-4);
    background-color: var(--bg-primary);
    text-align: center;
}

.project-spec-item span {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.project-spec-item strong {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--accent-primary);
}

.project-item-info > .btn {
    align-self: flex-start;
}

/* ============================================
   SINGLE PROJECT
   ============================================ */
.project-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 25, 24, 0.9) 0%, rgba(26, 25, 24, 0.3) 50%, transparent 100%);
}

.project-hero-container {
    position: relative;
    width: 100%;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    padding: var(--space-16) 0;
    color: var(--color-white);
    /* text-align: left; */
    background-color: #0000004a;
}

.project-hero-content h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-weight: bolder;
}

.project-hero-subtitle {
    font-size: var(--text-xl);
    max-width: 600px;
    opacity: 0.95;
    margin-bottom: var(--space-2);
    line-height: 1.35;
    white-space: pre-line;
}

.project-hero-location {
    font-size: var(--text-base);
    opacity: 0.8;
    margin-top: var(--space-2);
    font-weight: bold;
}

.overview-section {
    padding: var(--space-16) 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.overview-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
}

.overview-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.overview-floor-plan img {
    width: 100%;
    height: auto;
}

.project-specs-section {
    padding: var(--space-16) 0;
    background-color: var(--bg-secondary);
}

.specs-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-beige);
}

.spec-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.spec-value {
    font-weight: 500;
    color: var(--text-primary);
}

.gallery-section {
    padding: var(--space-16) 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: var(--space-4);
}

.gallery-item {
    margin-bottom: var(--space-4);
    break-inside: avoid;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-slow);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-4);
    border: 1px solid var(--color-beige);
    font-size: var(--text-sm);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.pagination a:hover,
.pagination span.current {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--color-white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        flex-wrap: wrap;
        gap: var(--space-8);
    }
    
    .process-step {
        flex: 0 0 45%;
    }
    
    .process-arrow {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-item {
        grid-template-columns: 1fr;
    }
    
    .project-item-gallery img:first-child {
        grid-row: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
        --space-24: 4rem;
        --space-20: 3rem;
        --space-16: 2.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: var(--space-6);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .primary-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .primary-nav a {
        color: var(--text-primary);
    }
    
    .header-cta {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .project-specs {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   CONTACT POPUP
   ============================================ */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 25, 24, 0.8);
    cursor: pointer;
}

.contact-popup-content {
    position: relative;
    background: var(--color-white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.contact-popup.active .contact-popup-content {
    transform: translateY(0);
}

.contact-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.contact-popup-close:hover {
    color: var(--text-primary);
}

.contact-popup-close svg {
    width: 24px;
    height: 24px;
}

.contact-popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.contact-popup-form {
    padding: var(--space-10);
    overflow-y: auto;
    max-height: 90vh;
}

.contact-popup-form h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.contact-popup-form > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.contact-popup-form .form-group {
    margin-bottom: 8px;
}

.contact-popup-form input,
.contact-popup-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.5;
    transition: all 0.25s ease;
    background: var(--color-white);
    color: var(--text-primary);
}

.contact-popup-form input:hover,
.contact-popup-form textarea:hover {
    border-color: var(--color-gray);
}

.contact-popup-form input:focus,
.contact-popup-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.contact-popup-form input::placeholder,
.contact-popup-form textarea::placeholder {
    color: var(--color-gray);
    font-weight: 400;
}

.contact-popup-form textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-popup-form .btn-full {
    width: 100%;
    margin-top: var(--space-2);
    padding: 1.125rem 2rem;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* Contact Form 7 Styles */
.cf7-form-wrapper .wpcf7-form {
    margin: 0;
}

.cf7-form-wrapper .wpcf7-form p {
    margin-bottom: var(--space-2);
}

.cf7-form-wrapper .wpcf7-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}

.cf7-form-wrapper .wpcf7-form input[type="text"],
.cf7-form-wrapper .wpcf7-form input[type="email"],
.cf7-form-wrapper .wpcf7-form input[type="tel"],
.cf7-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all 0.25s ease;
    background: var(--color-white);
    margin-top: var(--space-1);
}

.cf7-form-wrapper .wpcf7-form input[type="text"]:hover,
.cf7-form-wrapper .wpcf7-form input[type="email"]:hover,
.cf7-form-wrapper .wpcf7-form input[type="tel"]:hover,
.cf7-form-wrapper .wpcf7-form textarea:hover {
    border-color: var(--color-gray);
}

.cf7-form-wrapper .wpcf7-form input[type="text"]:focus,
.cf7-form-wrapper .wpcf7-form input[type="email"]:focus,
.cf7-form-wrapper .wpcf7-form input[type="tel"]:focus,
.cf7-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.cf7-form-wrapper .wpcf7-form textarea {
    resize: vertical;
    min-height: 60px;
}

.cf7-form-wrapper .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1.125rem 2rem;
    background-color: var(--accent-primary);
    color: var(--color-white);
    border: 1px solid var(--accent-primary);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cf7-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background-color: var(--color-copper);
    border-color: var(--color-copper);
}

.cf7-form-wrapper .wpcf7-not-valid-tip {
    font-size: var(--text-xs);
    color: #c0392b;
    margin-top: var(--space-1);
}

.cf7-form-wrapper .wpcf7-response-output {
    margin: var(--space-4) 0;
    padding: var(--space-4);
    font-size: var(--text-sm);
    border-radius: 2px;
}

.contact-popup-map {
    position: relative;
    background: var(--color-beige);
    min-height: 300px;
}

.contact-popup-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-popup-content {
        width: 95%;
        max-height: 95vh;
    }

    .contact-popup-body {
        grid-template-columns: 1fr;
    }

    .contact-popup-map {
        min-height: 250px;
        order: -1;
    }

    .contact-popup-form {
        padding: var(--space-6);
        max-height: 60vh;
    }

    .contact-popup-close {
        top: 10px;
        right: 10px;
        background: var(--color-white);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* ============================================
   ABOUT PAGE - SECTION 1: HERO BANNER
   ============================================ */
.about-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 25, 24, 0.5), rgba(26, 25, 24, 0.7));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.about-hero-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    color: var(--color-beige);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ============================================
   ABOUT PAGE - SECTION 2: VỀ ARCHITERIO
   ============================================ */
.about-story-section {
    padding: var(--space-24) 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-story-content .section-label {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: var(--space-4);
    display: block;
}

.about-story-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.about-story-vision {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    padding-left: var(--space-6);
    border-left: 3px solid var(--accent-primary);
}

.about-story-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-story-list li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
    color: var(--text-primary);
}

.about-story-list svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE - SECTION 3: STATS/COUNTERS
   ============================================ */
.about-stats-section {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.about-stat-item {
    text-align: center;
    padding: var(--space-8);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 600;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.stat-label {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* ============================================
   ABOUT PAGE - SECTION 4: CORE VALUES
   ============================================ */
.about-values-section {
    padding: var(--space-24) 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.about-value-card {
    text-align: center;
    padding: var(--space-10) var(--space-8);
    background-color: var(--bg-primary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-beige);
    border-radius: 50%;
    color: var(--accent-primary);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.about-value-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.about-value-card p {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE - SECTION 5: FOUNDER
   ============================================ */
.about-founder-section {
    padding: var(--space-24) 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-founder-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-beige) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    transform: translateY(-50%);
    z-index: 0;
}

.about-founder-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-founder-image {
    position: relative;
}

.about-founder-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-founder-content {
    padding-left: var(--space-8);
}

.founder-quote {
    margin: 0 0 var(--space-8) 0;
    padding: var(--space-8);
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent-primary);
}

.founder-quote p {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.founder-quote cite {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
}

.founder-info h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.founder-role {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.founder-bio {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   ABOUT PAGE - SECTION 6: PRICING TABLE
   ============================================ */
.about-pricing-section {
    padding: var(--space-24) 0;
}

.about-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
    align-items: flex-start;
}

.pricing-card {
    background-color: var(--bg-primary);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    border: 2px solid var(--accent-primary);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-primary);
    color: var(--color-white);
    padding: var(--space-2) var(--space-6);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-header {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-gray-light);
}

.pricing-header h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.pricing-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-features li.feature-available {
    color: var(--text-primary);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pricing-features li .dash {
    width: 18px;
    text-align: center;
    color: var(--color-gray);
    flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE - SECTION 7: PROCESS
   ============================================ */
.about-process-section {
    padding: var(--space-24) 0;
    background-color: var(--bg-primary);
}

.about-process-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

.about-process-step {
    flex: 0 0 22%;
    text-align: center;
    padding: var(--space-6);
    box-sizing: border-box;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-beige);
    z-index: 0;
    line-height: 1;
}

.about-process-step .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-process-step .step-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.about-process-step h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.about-process-step p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-process-arrow {
    flex: 0 0 6%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 95px;
    color: var(--accent-primary);
    opacity: 0.6;
}

.about-process-arrow svg {
    width: 36px;
    height: 36px;
}

/* ============================================
   ABOUT PAGE - SECTION 8: CTA & FORM
   ============================================ */
.about-cta-section {
    padding: var(--space-24) 0;
}

.about-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-cta-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.about-cta-content p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.about-cta-form {
    background-color: var(--bg-primary);
    padding: var(--space-8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-consultation-form .form-group {
    margin-bottom: var(--space-4);
}

.about-consultation-form input,
.about-consultation-form textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

.about-consultation-form input:focus,
.about-consultation-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.about-consultation-form input::placeholder,
.about-consultation-form textarea::placeholder {
    color: var(--color-gray);
}

.about-consultation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.about-consultation-form .btn-full {
    width: 100%;
}

/* ============================================
   ABOUT PAGE - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-story-grid {
        gap: var(--space-8);
    }
    
    .about-founder-grid {
        gap: var(--space-8);
    }
    
    .about-cta-grid {
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    
    .about-story-image img {
        height: 350px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-founder-image img {
        margin: 0 auto;
        max-width: 300px;
        height: 380px;
    }
    
    .about-founder-content {
        padding-left: 0;
    }
    
    .founder-quote {
        text-align: left;
    }
    
    .about-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-featured {
        transform: none;
        order: -1;
    }
    
    .about-process-grid {
        flex-wrap: wrap;
    }
    
    .about-process-step {
        flex: 0 0 45%;
    }
    
    .about-process-arrow {
        display: none;
    }
    
    .about-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: var(--text-3xl);
    }
    
    .about-story-content h2,
    .about-cta-content h2 {
        font-size: var(--text-3xl);
    }
}

:root {
    --premium-bg-primary: #ffffff;
    --premium-bg-secondary: #faf9f7;
    --premium-bg-dark: #1a1918;
    --premium-text-primary: #1a1918;
    --premium-text-secondary: #4a4743;
    --premium-accent: #b87333;
    --premium-accent-light: #c9a962;
    --premium-accent-hover: #a67c52;
    --premium-radius: 12px;
    --premium-radius-sm: 8px;
    --premium-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --premium-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --premium-transition: all 0.3s ease;
    --premium-font-heading: 'Playfair Display', Georgia, serif;
    --premium-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --premium-font-accent: 'Cormorant Garamond', serif;
}

/* Premium Section Headers */
.premium-section-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.premium-section-title {
    font-family: var(--premium-font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--premium-text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.premium-section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-accent), var(--premium-accent-light));
    margin: 0 auto;
    border-radius: 2px;
}

.premium-section-header-left {
    text-align: left;
}

.premium-section-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.premium-section-header-left .premium-section-title {
    margin-bottom: 0;
}

.premium-section-header-left .premium-section-divider {
    margin: 0;
    width: 56px;
    flex: 0 0 56px;
}

/* Hero Section */
.premium-hero-section {
    padding: var(--space-24) 0 var(--space-20);
    background: var(--premium-bg-primary);
}

/* Premium layout container */
.premium-container {
    width: min(100%, 1380px);
    margin: 0 auto;
    padding: 0 var(--space-10);
}

/* Hero container removed - using .premium-container instead */

.premium-hero-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.premium-hero-label {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--premium-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-6);
}

.premium-hero-title {
    font-family: var(--premium-font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--premium-text-primary);
    margin-bottom: var(--space-8);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.premium-hero-subtitle {
    font-family: var(--premium-font-accent);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--premium-text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Article */
.premium-featured-article {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) 1.08fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: var(--space-20);
    border-radius: 36px;
    background: linear-gradient(135deg, #f9f5ef 0%, #f1e6d7 60%, #ebd8c3 100%);
    box-shadow: 0 40px 90px rgba(18, 10, 2, 0.12);
    overflow: hidden;
    align-items: stretch;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.premium-featured-article:hover {
    transform: translateY(-6px);
    box-shadow: 0 48px 110px rgba(18, 10, 2, 0.18);
}

.premium-featured-content {

    padding: clamp(24px, 3vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    min-height: 100%;
}

.premium-featured-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.premium-featured-category {
    font-family: var(--premium-font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b87333;
    opacity: 0.9;
}

.premium-featured-title {
    font-family: var(--premium-font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    color: #1f1b16;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.premium-featured-excerpt {
    font-family: var(--premium-font-body);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: #4d4338;
    line-height: 1.7;
    margin: 0;
    max-width: 34ch;
}

.premium-featured-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--premium-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #1f1b16;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(31, 27, 22, 0.15);
    padding-bottom: 6px;
    align-self: flex-start;
    transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.premium-featured-link:hover {
    gap: var(--space-4);
    color: var(--premium-accent);
    border-color: var(--premium-accent);
}

.premium-featured-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.premium-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

.premium-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.premium-featured-article:hover .premium-featured-img {
    transform: scale(1.04);
}

/* Latest Insights Section */
.premium-latest-section {
    padding: var(--space-24) 0;
    background: var(--premium-bg-secondary);
}

.premium-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.premium-article-card {
    background: var(--premium-bg-primary);
    border-radius: var(--premium-radius);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: var(--premium-transition);
}

.premium-article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--premium-shadow-hover);
}

.premium-article-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.premium-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-article-card:hover .premium-article-image img {
    transform: scale(1.08);
}

.premium-article-content {
    padding: var(--space-8);
}

.premium-article-category {
    font-family: var(--premium-font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--premium-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-4);
}

.premium-article-title {
    font-family: var(--premium-font-heading);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--premium-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.premium-article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-article-title a:hover {
    color: var(--premium-accent);
}

.premium-article-excerpt {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    color: var(--premium-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.premium-article-link {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--premium-accent);
    text-decoration: none;
    transition: var(--premium-transition);
}

.premium-article-link:hover {
    color: var(--premium-accent-hover);
}

/* Featured Projects Section */
.premium-projects-section {
    padding: var(--space-24) 0;
    background: var(--premium-bg-primary);
}

.premium-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.premium-project-card {
    background: var(--premium-bg-primary);
    border-radius: var(--premium-radius);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: var(--premium-transition);
}

.premium-project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-shadow-hover);
}

.premium-project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.premium-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-project-card:hover .premium-project-image img {
    transform: scale(1.05);
}

.premium-project-content {
    padding: var(--space-8);
}

.premium-project-title {
    font-family: var(--premium-font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--premium-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.premium-project-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-project-title a:hover {
    color: var(--premium-accent);
}

.premium-project-excerpt {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    color: var(--premium-text-secondary);
    line-height: 1.5;
}

.premium-section-footer {
    text-align: center;
    margin-top: var(--space-12);
}

.premium-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--premium-accent);
    color: var(--premium-bg-primary);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--premium-radius);
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--premium-transition);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

.premium-btn-primary:hover {
    background: var(--premium-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.4);
}

/* Gallery Section */
.premium-gallery-section {
    padding: var(--space-24) 0;
    background: var(--premium-bg-primary);
}

.premium-gallery-header {
    margin-bottom: var(--space-12);
}

.premium-gallery-title {
    font-family: var(--premium-font-body);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.premium-moments-collage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.premium-moments-item {
    margin: 0;
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--premium-bg-secondary);
    box-shadow: 0 10px 30px rgba(29, 24, 20, 0.12);
}

.premium-moments-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-moments-item:hover img {
    transform: scale(1.04);
}

.premium-moments-tall {
    grid-row: span 2;
}

.premium-moments-small {
    grid-row: span 1;
}

.premium-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.premium-masonry-item {
    border-radius: var(--premium-radius-sm);
    overflow: hidden;
    transition: var(--premium-transition);
    height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.premium-masonry-item:hover {
    transform: scale(1.02);
    box-shadow: var(--premium-shadow);
}

.premium-masonry-large {
    grid-row: span 2;
}

.premium-masonry-medium {
    grid-row: span 1;
}

.premium-masonry-small {
    grid-row: span 1;
}

.premium-masonry-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.6s ease;
}

.premium-masonry-item:hover img {
    transform: scale(1.05);
}

/* Expert Section */
.premium-expert-section {
    padding: var(--space-24) 0;
    background: var(--premium-bg-primary);
}

.premium-expert-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.premium-expert-text {
    padding: var(--space-12);
    background: var(--premium-bg-secondary);
    border-radius: var(--premium-radius);
    box-shadow: var(--premium-shadow);
}

.premium-expert-title {
    font-family: var(--premium-font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--premium-text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.3;
}

.premium-expert-excerpt {
    font-family: var(--premium-font-body);
    font-size: var(--text-base);
    color: var(--premium-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.premium-expert-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--premium-accent);
    text-decoration: none;
    transition: var(--premium-transition);
}

.premium-expert-link:hover {
    color: var(--premium-accent-hover);
}

.premium-expert-image {
    width: 100%;
    height: 400px;
    border-radius: var(--premium-radius);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
}

.premium-expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-expert-image:hover img {
    transform: scale(1.05);
}

/* Market Data Section */
.premium-market-section {
    padding: var(--space-24) 0;
    background: var(--premium-bg-secondary);
}

.premium-market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
}

.premium-chart-container {
    background: var(--premium-bg-primary);
    border-radius: var(--premium-radius);
    padding: var(--space-12);
    box-shadow: var(--premium-shadow);
}

.premium-chart-item {
    margin-bottom: var(--space-12);
}

.premium-chart-item:last-child {
    margin-bottom: 0;
}

.premium-chart-title {
    font-family: var(--premium-font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--premium-text-primary);
    margin-bottom: var(--space-6);
}

.premium-line-chart {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-radius: var(--premium-radius-sm);
    overflow: hidden;
}

.premium-chart-canvas {
    position: relative;
    height: 100%;
}

.premium-chart-line {
    position: absolute;
    bottom: 30%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-accent), var(--premium-accent-light));
    border-radius: 2px;
    transform: rotate(12deg);
    transform-origin: left center;
}

.premium-chart-points {
    position: relative;
    height: 100%;
}

.premium-chart-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--premium-accent);
    border: 3px solid var(--premium-bg-primary);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

.premium-chart-description {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    color: var(--premium-text-secondary);
    line-height: 1.6;
    margin-top: var(--space-6);
    text-align: center;
}

.premium-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    gap: var(--space-4);
}

.premium-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.premium-bar {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(to top, var(--premium-accent), var(--premium-accent-light));
    border-radius: var(--premium-radius-sm) var(--premium-radius-sm) 0 0;
    margin-bottom: var(--space-3);
    position: relative;
    overflow: hidden;
}

.premium-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.premium-bar-value {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--premium-accent);
    margin-bottom: var(--space-2);
}

.premium-bar-label {
    font-family: var(--premium-font-body);
    font-size: var(--text-xs);
    color: var(--premium-text-secondary);
    text-align: center;
    line-height: 1.4;
}

/* Newsletter Section */
.premium-newsletter-section {
    background: var(--premium-bg-dark);
    padding: var(--space-32) 0;
    color: var(--premium-bg-primary);
}

.premium-newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.premium-newsletter-title {
    font-family: var(--premium-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--premium-bg-primary);
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

.premium-newsletter-subtitle {
    font-family: var(--premium-font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--premium-bg-primary);
    opacity: 0.9;
    margin-bottom: var(--space-16);
    line-height: 1.6;
}

.premium-newsletter-form {
    margin-bottom: var(--space-20);
}

.premium-form {
    display: flex;
    gap: var(--space-4);
    max-width: 500px;
    margin: 0 auto;
}

.premium-form-group {
    display: flex;
    gap: var(--space-3);
    flex: 1;
}

.premium-form input {
    flex: 1;
    padding: var(--space-4) var(--space-6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--premium-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--premium-bg-primary);
    font-family: var(--premium-font-body);
    font-size: var(--text-base);
    transition: var(--premium-transition);
}

.premium-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.premium-form input:focus {
    outline: none;
    border-color: var(--premium-accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1);
}

.premium-btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-base);
}

.premium-newsletter-secondary {
    margin-top: var(--space-8);
}

.premium-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    color: var(--premium-bg-primary);
    padding: var(--space-4) var(--space-8);
    border: 2px solid var(--premium-bg-primary);
    border-radius: var(--premium-radius);
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--premium-transition);
}

.premium-btn-secondary:hover {
    background: var(--premium-bg-primary);
    color: var(--premium-bg-dark);
    transform: translateY(-2px);
}

.premium-newsletter-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    margin-top: var(--space-24);
    align-items: start;
}

.premium-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.premium-contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.premium-contact-label {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    color: var(--premium-bg-primary);
    opacity: 0.7;
}

.premium-contact-value {
    font-family: var(--premium-font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--premium-bg-primary);
    text-decoration: none;
    transition: var(--premium-transition);
}

.premium-contact-value:hover {
    color: var(--premium-accent-light);
}

.premium-social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.premium-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--premium-bg-primary);
    text-decoration: none;
    transition: var(--premium-transition);
}

.premium-social-link:hover {
    background: var(--premium-accent);
    border-color: var(--premium-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-container {
        max-width: 1200px;
        padding: 0 var(--space-6);
    }
    
    .premium-header-container {
        padding: 0 var(--space-6);
    }
    
    .premium-nav-menu {
        gap: var(--space-6);
    }
    
    .premium-latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .premium-moments-collage {
        grid-auto-rows: 118px;
        max-width: 860px;
    }
}

@media (max-width: 1024px) {
    .premium-blog-page {
        padding-top: 80px;
    }
    
    .premium-header {
        position: fixed;
    }
    
    .premium-container {
        padding: 0 var(--space-4);
    }
    
    .premium-hero-title {
        font-size: var(--text-4xl);
    }
    
    .premium-hero-subtitle {
        font-size: var(--text-xl);
    }

    .premium-hero-header {
        margin-bottom: var(--space-16);
    }
    
    .premium-featured-article {
        grid-template-columns: 1fr;
        padding: clamp(24px, 7vw, 48px);
    }
    
    .premium-featured-content {
        padding: clamp(20px, 6vw, 36px);
    }
    
    .premium-featured-image {
        min-height: 320px;
    }
    
    .premium-latest-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .premium-projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .premium-expert-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .premium-expert-image {
        height: 300px;
        order: -1;
    }
    
    .premium-market-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .premium-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-moments-collage {
        grid-auto-rows: 104px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .premium-blog-page {
        padding-top: 70px;
    }
    
    .premium-header-container {
        height: 70px;
        padding: 0 var(--space-4);
    }
    
    .premium-logo {
        font-size: var(--text-xl);
    }
    
    .premium-nav-menu {
        display: none;
    }
    
    .premium-cta-nav {
        display: none;
    }
    
    .premium-search-icon {
        width: 36px;
        height: 36px;
    }
    
    .premium-hero-section {
        padding: var(--space-16) 0 var(--space-14);
    }
    
    .premium-hero-title {
        font-size: var(--text-3xl);
    }
    
    .premium-hero-subtitle {
        font-size: var(--text-lg);
    }

    .premium-hero-header {
        margin-bottom: var(--space-12);
    }
    
    .premium-featured-article {
        padding: var(--space-8);
        border-radius: 26px;
    }
    
    .premium-featured-content {
        padding: var(--space-6);
        border-radius: 20px;
    }
    
    .premium-featured-image {
        min-height: 240px;
        border-radius: 20px;
    }
    
    .premium-section-title {
        font-size: var(--text-2xl);
    }
    
    .premium-article-image {
        height: 200px;
    }
    
    .premium-project-image {
        height: 180px;
    }
    
    .premium-expert-image {
        height: 250px;
    }
    
    .premium-line-chart {
        height: 150px;
    }
    
    .premium-bar-chart {
        height: 120px;
    }
    
    .premium-newsletter-section {
        padding: var(--space-24) 0;
    }
    
    .premium-newsletter-title {
        font-size: var(--text-2xl);
    }
    
    .premium-newsletter-subtitle {
        font-size: var(--text-lg);
    }
    
    .premium-form {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .premium-newsletter-footer {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .premium-masonry-grid {
        grid-template-columns: 1fr;
    }

    .premium-moments-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 116px;
        gap: 12px;
    }

    .premium-moments-tall {
        grid-row: span 2;
    }
    
    .premium-contact-info {
        margin-bottom: var(--space-6);
    }
    
    .premium-social-links {
        margin-top: var(--space-4);
    }
}

@media (max-width: 1024px) {
    .premium-expert-content {
        grid-template-columns: 1fr;
    }
}
