/* Critical CSS - Above the fold styles only
   This file contains only the most critical styles needed for initial render */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FAF8F5;
    color: #2B1810;
    line-height: 1.6;
}

/* Trust Banner - Critical */
.trust-banner {
    background: linear-gradient(135deg, #2B1810, #4A3428);
    color: rgba(255,255,255,0.9);
    padding: 12px 0;
    font-size: 13px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation - Critical */
.main-nav {
    position: sticky;
    top: 48px;
    z-index: 100;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #E8E3DB;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    text-decoration: none;
    background: linear-gradient(135deg, #2B1810, #C9A355);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section - Critical */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2B1810 0%, #4A3428 100%);
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Buttons - Critical */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #C9A355, #B8944A);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8944A, #C9A355);
    box-shadow: 0 4px 12px rgba(201, 163, 85, 0.3);
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Mobile Responsive - Critical */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .main-nav {
        padding: 12px 0;
    }
}

