/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fefcf8;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* NAVIGATION */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.logo-symbol {
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 4px;
    color: #c17b4c;
}

.logo-accent {
    color: #c17b4c;
}

.logo-light {
    color: #fefcf8;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c17b4c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a1a2e;
}

/* HERO SECTION */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #fefcf8 0%, #faf5ea 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(193, 123, 76, 0.1);
    color: #c17b4c;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.hero-title-accent {
    color: #c17b4c;
    font-style: italic;
}

.hero-text {
    font-size: 1.2rem;
    color: #4a4a5a;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #c17b4c;
    color: white;
}

.btn-primary:hover {
    background: #a86238;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 123, 76, 0.3);
}

.btn-secondary {
    background: white;
    color: #c17b4c;
    border: 2px solid #c17b4c;
}

.btn-secondary:hover {
    background: #c17b4c;
    color: white;
    transform: translateY(-2px);
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #e8dccc, #d4c4a8);
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    object-fit: cover
}

/* ABOUT SECTION */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c17b4c;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-tag.center {
    text-align: center;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 32px;
    color: #1a1a2e;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.about-intro {
    font-size: 1.2rem;
    color: #2a2a3e;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-detail {
    color: #4a4a5a;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #c17b4c;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #6a6a7a;
}

.quote-card {
    background: #f5efe6;
    padding: 40px;
    border-radius: 30px;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: #c17b4c;
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-author {
    font-size: 0.85rem;
    color: #6a6a7a;
    font-weight: 500;
}

/* PRINCIPLES SECTION */
.principles {
    padding: 80px 0;
    background: #faf5ea;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.principle-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.principle-card:hover {
    transform: translateY(-8px);
}

.principle-icon {
    font-size: 3rem;
    color: #c17b4c;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.principle-card p {
    color: #4a4a5a;
}

/* CTA SECTION */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: #1a1a2e;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: #0f0f1a;
    color: #a0a0b0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 20px 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #a0a0b0;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c17b4c;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c17b4c;
}

.footer-contact li i {
    width: 24px;
    margin-right: 8px;
    color: #c17b4c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}