:root {
    --bg-main: #FDFBF7; /* Linen */
    --text-main: #1A1A1A; /* Charcoal */
    --text-muted: #666666;
    --primary: #C05B3A; /* Burnt Orange */
    --primary-hover: #A04A2A;
    --bg-charcoal: #1A1A1A;
    --text-light: #FDFBF7;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; letter-spacing: 0.05em; }
h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 2rem; }
h2.section-title { font-size: 3rem; text-align: center; margin-bottom: 1rem; }
p.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 4rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* Utilities */
.bg-linen { background-color: #F4EFE6; }
.bg-charcoal { background-color: var(--bg-charcoal); }
.text-light { color: var(--text-light); }
.text-light h2, .text-light h3, .text-light p { color: var(--text-light); }
.eyebrow { display: block; font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary { background-color: var(--text-main); color: var(--bg-main); }
.btn-primary:hover { background-color: var(--primary); color: white; }

.btn-outline { background-color: transparent; color: var(--text-main); border-color: var(--text-main); }
.btn-outline:hover { background-color: var(--text-main); color: var(--bg-main); }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 5%;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
}
.logo { font-family: var(--font-heading); font-size: 1.8rem; letter-spacing: 0.1em; color: var(--text-main); text-decoration: none; }
.nav-links a { margin-left: 3rem; text-decoration: none; color: var(--text-main); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links a:hover { color: var(--primary); }

/* Layouts */
.split-layout { display: flex; min-height: 100vh; }
.section { padding: 8rem 0; }

/* Hero */
.hero.split-layout { max-width: 1400px; margin: 0 auto; padding: 12rem 5% 6rem 5%; min-height: auto; align-items: stretch; gap: 6rem; }
.hero-image { flex: 1; background-size: cover; background-position: center; border-radius: 1rem; min-height: 600px; }
.hero-text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0; background: transparent; }
.hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 400px; }
.hero-buttons { display: flex; gap: 1rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 4rem; }
.process-card { padding: 2rem 0; }
.process-icon { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.process-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.process-card p { color: var(--text-muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.pricing-card { background: var(--bg-main); padding: 4rem 3rem; text-align: center; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.4s ease; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.pricing-card.popular { border: 1px solid var(--primary); }
.pricing-card h3 { font-size: 2rem; margin-bottom: 1rem; }
.price { font-family: var(--font-body); font-size: 3rem; font-weight: 300; margin: 2rem 0; }
.pricing-features { list-style: none; margin: 3rem 0; text-align: center; }
.pricing-features li { padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); }

/* Gallery */
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(2) { transform: translateY(4rem); }

/* Instructor */
.instructor-section { min-height: 80vh; padding: 0; }
.instructor-text { flex: 1; padding: 8rem 8%; display: flex; flex-direction: column; justify-content: center; }
.instructor-role { color: var(--primary); margin: 1rem 0 3rem; font-family: var(--font-body); font-weight: 300; text-transform: uppercase; letter-spacing: 0.1em; }
.instructor-bio { font-size: 1.2rem; line-height: 1.8; color: #A0A0A0; }
.instructor-image { flex: 1; overflow: hidden; }
.instructor-image img { width: 100%; height: 100%; object-fit: cover; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; padding-top: 4rem; border-top: 1px solid rgba(0,0,0,0.1); }
.testimonial-card p { font-size: 1.2rem; font-style: italic; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.testimonial-card h4 { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; }

/* Footer */
.footer { padding: 6rem 0 2rem; }
.footer-grid { display: flex; justify-content: space-between; margin-bottom: 4rem; }
.footer-brand h3 { font-size: 2rem; letter-spacing: 0.2em; }
.footer-contact p { color: #A0A0A0; margin-bottom: 0.5rem; font-family: var(--font-body); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #666; font-size: 0.9rem; }

/* Skeletons */
.skeleton { background: #EAEAEA; animation: pulse 1.5s infinite; color: transparent !important; }
@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }

@media (max-width: 900px) {
    .split-layout { flex-direction: column; }
    .hero-image { min-height: 50vh; }
    .hero-text, .instructor-text { padding: 4rem 2rem; }
    .process-grid, .pricing-grid, .gallery-masonry, .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(2) { transform: none; }
}
