@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B5A2B;
    --secondary: #D4A574;
    --accent: #F5E6D3;
    --dark: #2C1810;
    --light: #FDF8F3;
    --text: #3D2914;
    --muted: #6B5344;
    --white: #FFFFFF;
    --shadow: rgba(44, 24, 16, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--secondary); }

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-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.logo span { color: var(--primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
    opacity: 0.15;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge i {
    color: var(--primary);
    margin-right: 8px;
}

.section {
    padding: 60px 0;
}

.section-sm { padding: 40px 0; }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    color: var(--muted);
    max-width: 600px;
    margin: 10px auto 0;
}

.bg-accent { background: var(--accent); }
.bg-white { background: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 22px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.workshop-card:hover { transform: translateY(-5px); }

.workshop-image {
    height: 180px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshop-image i {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.5;
}

.workshop-content {
    padding: 20px;
}

.workshop-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.workshop-content p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--accent);
}

.workshop-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.workshop-duration {
    font-size: 12px;
    color: var(--muted);
}

.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--accent);
}

.footer {
    background: var(--dark);
    color: var(--accent);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
    display: inline-block;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 6px; }

.footer-links a {
    color: var(--accent);
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover { opacity: 1; }

.footer-contact p {
    font-size: 13px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.footer-contact i {
    width: 18px;
    color: var(--secondary);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 12px;
    color: var(--accent);
    opacity: 0.7;
}

.policy-links a:hover { opacity: 1; }

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
}

.page-hero h1 { margin-bottom: 10px; }

.page-hero p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 13px;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--muted); }

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
}

.content-main h3 {
    margin: 25px 0 10px;
}

.content-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget { margin-bottom: 25px; }
.sidebar-widget:last-child { margin-bottom: 0; }

.sidebar-widget h4 {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.contact-page {
    background: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon i {
    font-size: 20px;
    color: var(--primary);
}

.info-card-content h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.info-card-content p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 500px;
    padding: 40px 20px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 15px;
}

.error-content p,
.thankyou-content p {
    color: var(--muted);
    margin-bottom: 25px;
}

.thankyou-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 8px;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-popup.show { display: block; }

.cookie-popup h4 {
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn { padding: 8px 18px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 35px;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.team-card .role {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-card {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
}

.value-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 18px;
    color: var(--primary);
}

.value-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.value-content p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.process-step p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 992px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 { font-size: 2.2rem; }
    
    .hero-buttons { justify-content: center; }
    
    .hero-image { order: -1; }
    
    .hero-badge {
        bottom: auto;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-grid,
    .workshops-grid,
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    
    .content-grid { grid-template-columns: 1fr; }
    
    .content-sidebar {
        position: static;
    }
    
    .footer-content { grid-template-columns: 1fr 1fr; }
    
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    
    .logo {
        font-size: 1.1rem;
        max-width: calc(100% - 60px);
        overflow: visible;
        white-space: nowrap;
    }
    
    .header-inner {
        gap: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-menu a { font-size: 16px; }
    
    .features-grid,
    .workshops-grid,
    .team-grid,
    .values-grid { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body { font-size: 13px; }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .hero-text h1 { font-size: 1.8rem; }
    
    .section { padding: 40px 0; }
    
    .btn { padding: 8px 18px; font-size: 12px; }
    
    .error-code { font-size: 5rem; }
    
    .process-steps { grid-template-columns: 1fr; }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 320px) {
    .container { padding: 0 10px; }
    
    .hero-text h1 { font-size: 1.5rem; }
    
    .logo { font-size: 1rem; }
}
