@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d4a3e;
    --primary-light: #3d6854;
    --secondary: #c4a77d;
    --accent: #8b5a2b;
    --bg-light: #faf8f5;
    --bg-cream: #f5f1ea;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-light); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}

header.scrolled {
    position: fixed;
    background: var(--white);
    box-shadow: var(--shadow);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.logo span { color: var(--secondary); }

nav { display: flex; align-items: center; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 6px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, rgba(196,167,125,0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(196,167,125,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

section { padding: 50px 0; }

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-light);
    padding: 25px 18px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-section {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-content h2 { margin-bottom: 15px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.feature-item i {
    color: var(--primary);
    font-size: 14px;
}

.products-section { background: var(--white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 160px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.product-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.testimonials {
    background: var(--primary);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p { color: var(--white); }

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 22px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.author-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    text-align: center;
}

.cta-content {
    max-width: 550px;
    margin: 0 auto;
}

.cta-content h2 { margin-bottom: 12px; }

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
    display: inline-block;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact i { color: var(--secondary); }

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    display: block;
    padding: 3px 0;
}

.footer-links a:hover { color: var(--secondary); }

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    opacity: 0.7;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.policy-links a:hover { color: var(--secondary); }

.page-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--primary);
    margin-bottom: 10px;
}

.page-hero p { color: var(--text-muted); }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 12px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { color: var(--primary); }

.content-section { background: var(--white); }

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 { margin-bottom: 15px; }

.content-main h3 {
    margin: 20px 0 10px;
    color: var(--primary);
}

.content-sidebar {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    height: fit-content;
}

.sidebar-widget { margin-bottom: 25px; }
.sidebar-widget:last-child { margin-bottom: 0; }

.sidebar-widget h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--primary);
}

.sidebar-widget ul { list-style: none; }

.sidebar-widget li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 13px;
}

.sidebar-widget li:last-child { border: none; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.benefit-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.contact-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 22px;
    color: var(--primary);
    margin-top: 2px;
}

.info-card h4 {
    font-size: 13px;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 18px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    margin: 0;
    color: var(--text-muted);
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thank-you-section,
.error-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.thank-you-content,
.error-content {
    max-width: 450px;
    padding: 40px;
}

.thank-you-icon,
.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
}

.thank-you-icon {
    background: var(--primary);
    color: var(--white);
}

.error-icon {
    background: var(--secondary);
    color: var(--text-dark);
}

.thank-you-content h1,
.error-content h1 {
    margin-bottom: 12px;
    color: var(--primary);
}

.thank-you-content p,
.error-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.policy-section {
    background: var(--white);
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 30px 0 15px;
    color: var(--primary);
}

.policy-content h3 {
    margin: 20px 0 10px;
}

.policy-content p,
.policy-content li {
    font-size: 13px;
    color: var(--text-muted);
}

.policy-content ul {
    margin: 10px 0 15px 20px;
}

.policy-content li { margin-bottom: 6px; }

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.privacy-popup.show { display: block; }

.privacy-popup h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.privacy-popup p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup-buttons .btn { flex: 1; }

.tutoring-features {
    background: var(--bg-cream);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
}

.feature-box i {
    font-size: 24px;
    color: var(--primary);
}

.feature-box h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.pricing-section { background: var(--white); }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.price {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child { border: none; }

.music-instruments {
    background: var(--bg-cream);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.instrument-item {
    background: var(--white);
    padding: 20px 15px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.instrument-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.instrument-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.instrument-item h4 {
    font-size: 13px;
    margin: 0;
}

.process-section { background: var(--white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    font-weight: 600;
}

.process-step h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .hero-content,
    .about-grid,
    .contact-wrapper,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-slider,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image { order: -1; }
    
    .process-steps,
    .instruments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a { font-size: 18px; }
    
    .nav-toggle { display: flex; z-index: 1001; }
    
    .hero { min-height: auto; padding: 100px 0 50px; }
    
    .hero-text h1 { font-size: 2rem; }
    
    .hero-stats { justify-content: center; }
    
    .services-grid,
    .products-grid,
    .testimonials-slider,
    .benefits-grid,
    .pricing-cards,
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content { grid-template-columns: 1fr; }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons { flex-direction: column; }
    
    section { padding: 40px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn { 
        width: 100%;
        padding: 12px 20px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
    }
    
    .policy-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .about-features { grid-template-columns: 1fr; }
    
    .process-steps,
    .instruments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    body { font-size: 13px; }
    
    .container { padding: 0 10px; }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .logo { font-size: 1.1rem; }
    
    section { padding: 30px 0; }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}
