:root {
    --primary-color: #d4a373;
    --secondary-color: #8b7355;
    --accent-color: #e8d4c0;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #faf8f5;
    --white: #ffffff;
    --border-color: #e0ddd9;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(45, 45, 45, 0.96);
    color: var(--white);
    padding: 18px 0;
    z-index: 10000;
    transition: bottom 0.5s ease;
}

.privacy-popup.show {
    bottom: 0;
}

.privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.privacy-content p {
    margin: 0;
    font-size: 13px;
    flex: 1;
    color: var(--white);
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    font-family: 'Karla', sans-serif;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-color) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Karla', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

section {
    padding: 60px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text .btn-secondary {
    margin-top: 15px;
}

.features {
    background: var(--bg-light);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    margin-bottom: 20px;
    font-size: 14px;
}

.feature-link {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.feature-link:hover {
    color: var(--secondary-color);
}

.process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    font-size: 14px;
}

.testimonials {
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
}

.testimonial-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1rem;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 25px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-info p {
    font-size: 13px;
    color: var(--white);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: var(--white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.page-hero {
    background: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.05rem;
}

.workshops-overview, .sessions-overview {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.content-text h2 {
    margin-bottom: 20px;
}

.workshop-offerings {
    background: var(--bg-light);
    padding: 60px 0;
}

.workshop-offerings h2 {
    text-align: center;
    margin-bottom: 50px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offering-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.offering-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.offering-card.featured:hover {
    transform: translateY(-5px) scale(1.03);
}

.offering-card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.offering-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.offering-features {
    flex: 1;
    margin-bottom: 25px;
}

.offering-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.offering-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

.offering-card .btn-primary,
.offering-card .btn-secondary {
    width: 100%;
    text-align: center;
}

.workshop-details {
    padding: 60px 0;
}

.workshop-details h2 {
    text-align: center;
    margin-bottom: 50px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.detail-item {
    text-align: center;
}

.detail-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.detail-item p {
    font-size: 14px;
}

.session-benefits {
    background: var(--bg-light);
    padding: 60px 0;
}

.session-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.benefit-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
}

.session-process {
    padding: 60px 0;
}

.session-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.timeline-item h3 {
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 14px;
}

.session-info {
    background: var(--bg-light);
    padding: 60px 0;
}

.session-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    font-size: 14px;
}

.about-story {
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    margin-bottom: 30px;
}

.story-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.values {
    background: var(--bg-light);
    padding: 60px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
}

.studio-space {
    padding: 60px 0;
}

.studio-space h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 15px;
}

.studio-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
}

.approach {
    background: var(--bg-light);
    padding: 60px 0;
}

.approach h2 {
    text-align: center;
    margin-bottom: 30px;
}

.approach p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 15px;
}

.contact-hero {
    background: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 10px;
}

.contact-main {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.form-intro {
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Karla', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form button {
    margin-top: 10px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 5px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item p {
    font-size: 14px;
    margin: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.contact-hours {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 5px;
}

.contact-hours h3 {
    margin-bottom: 15px;
}

.contact-hours p {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-hours ul li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.map-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.contact-cta {
    padding: 60px 0;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-main, .error-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thank-you-content, .error-content {
    text-align: center;
}

.thank-you-card, .error-card {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon, .error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-icon {
    color: #4caf50;
}

.error-icon {
    color: var(--primary-color);
}

.thank-you-card h1, .error-card h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-card h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.error-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.thank-you-card p, .error-card p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.thank-you-actions, .error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-hero {
    background: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.policy-hero h1 {
    margin-bottom: 10px;
}

.updated {
    font-size: 0.9rem;
    color: var(--text-light);
}

.policy-content {
    padding: 60px 0;
}

.policy-text {
    max-width: 850px;
    margin: 0 auto;
}

.policy-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-text h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.policy-text p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.policy-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-text ul li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .offering-card.featured {
        transform: scale(1);
    }

    .offering-card.featured:hover {
        transform: translateY(-5px);
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        right: 0;
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 15px 0;
        font-size: 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 45px 0;
    }

    .intro-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .features-grid,
    .process-steps,
    .testimonials-grid,
    .benefits-grid,
    .info-cards,
    .studio-features,
    .details-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .privacy-content {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .thank-you-card h1, .error-card h2 {
        font-size: 1.6rem;
    }

    .error-card h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 24px;
        font-size: 13px;
    }

    .feature-card,
    .offering-card {
        padding: 25px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        width: 85%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-buttons,
    .thank-you-actions,
    .error-actions {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .btn-primary, .btn-secondary {
        padding: 9px 20px;
        font-size: 12px;
    }

    section {
        padding: 35px 0;
    }

    .feature-card,
    .offering-card,
    .testimonial,
    .benefit-card,
    .info-card {
        padding: 20px 15px;
    }
}
