/* ============================================
   Онлайн-школа живописи - Основные стили
   ============================================ */

:root {
    /* Color Palette */
    --beige: #F4EDE3;
    --dusty-rose: #D3AFA6;
    --olive-gray: #8A8E7A;
    --charcoal: #2C2C2E;
    --gold: #C1A56B;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--beige);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(244, 237, 227, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px rgba(44, 44, 46, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: var(--charcoal);
    font-family: var(--font-serif);
    font-weight: 600;
}

.logo-text {
    font-size: 1rem;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    top: 8px;
}

.nav-toggle span:nth-child(2) {
    top: 14px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

.nav-toggle.active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--dusty-rose) 50%, var(--gold) 100%);
    opacity: 0.3;
    z-index: -1;
}

.paint-strokes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(211, 175, 166, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(193, 165, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(138, 142, 122, 0.2) 0%, transparent 50%);
    animation: paintAnimation 20s ease-in-out infinite;
}

@keyframes paintAnimation {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--olive-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--beige);
}

.btn-primary:hover {
    background: var(--olive-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 44, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--beige);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ============================================
   Scroll Indicator
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--olive-gray);
    font-size: 0.9rem;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--olive-gray);
    margin: 10px auto;
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--olive-gray);
    border-bottom: 2px solid var(--olive-gray);
    transform: rotate(45deg);
}

@keyframes scrollDown {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--charcoal);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dusty-rose));
    margin: var(--spacing-md) auto;
    border-radius: 2px;
}

.text-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ============================================
   Learning Segments
   ============================================ */

.learning-segments {
    background: white;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.segment-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--beige);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(193, 165, 107, 0.2);
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.segment-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.segment-card p {
    color: var(--olive-gray);
    font-size: 0.95rem;
}

/* ============================================
   Advantages
   ============================================ */

.advantages {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.advantage-item {
    position: relative;
    padding: var(--spacing-lg);
}

.advantage-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
}

.advantage-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.advantage-item p {
    color: var(--olive-gray);
    position: relative;
    z-index: 1;
}

/* ============================================
   Gallery Preview
   ============================================ */

.gallery-preview {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 46, 0.9), transparent);
    color: white;
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ============================================
   Style Quiz
   ============================================ */

.style-quiz {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    color: white;
}

.quiz-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quiz-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.quiz-card p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
    background: var(--beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 44, 46, 0.15);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--charcoal);
}

/* ============================================
   Promo Courses
   ============================================ */

.promo-courses {
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.course-card-promo {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
    position: relative;
}

.course-card-promo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 44, 46, 0.2);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.course-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: var(--spacing-md);
}

.course-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.course-content p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
}

.course-price {
    margin-bottom: var(--spacing-md);
}

.price-old {
    text-decoration: line-through;
    color: var(--olive-gray);
    margin-right: var(--spacing-xs);
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    font-family: var(--font-serif);
}

/* ============================================
   Color Wheel
   ============================================ */

.color-wheel-section {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
}

.color-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

#colorWheel {
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(44, 44, 46, 0.2);
    cursor: crosshair;
}

.color-info {
    text-align: center;
}

.selected-color {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
    border: 3px solid var(--charcoal);
    box-shadow: 0 5px 20px rgba(44, 44, 46, 0.3);
}

#colorName {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--charcoal);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--charcoal);
    color: var(--beige);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3,
.footer-col h4 {
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-sm);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: var(--beige);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}


.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(244, 237, 227, 0.2);
    color: rgba(244, 237, 227, 0.7);
}

/* ============================================
   Modal
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 46, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--beige);
    margin: 5% auto;
    padding: var(--spacing-lg);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--gold);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--beige);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(44, 44, 46, 0.05);
        padding: var(--spacing-md) 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 320px) {
    .nav-toggle {
        display: flex;
        width: 28px;
        height: 28px;
    }

    .nav-toggle span {
        width: 22px;
    }

    .nav-menu {
        top: 60px;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .segments-grid,
    .advantages-grid,
    .gallery-grid,
    .testimonials-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    #colorWheel {
        width: 300px;
        height: 300px;
    }
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    padding: calc(var(--spacing-xl) + 70px) 0 var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--olive-gray);
}

/* ============================================
   Courses Page
   ============================================ */

.courses-filters {
    background: white;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(44, 44, 46, 0.1);
}

.filters-wrapper {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.filter-group label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    background: white;
    color: var(--charcoal);
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:hover {
    border-color: var(--gold);
}

.courses-list {
    background: var(--beige);
    padding: var(--spacing-lg) 0;
}

.courses-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 44, 46, 0.2);
}

.course-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
    font-size: 0.9rem;
    color: var(--olive-gray);
}

.course-level,
.course-modules {
    padding: 0.25rem 0.75rem;
    background: var(--beige);
    border-radius: 15px;
}

/* ============================================
   About Page
   ============================================ */

.about-story {
    background: white;
    padding: var(--spacing-lg) 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.story-content p {
    margin-bottom: var(--spacing-md);
    color: var(--olive-gray);
    line-height: 1.8;
}

.about-philosophy {
    background: var(--beige);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.philosophy-item {
    text-align: center;
    padding: var(--spacing-md);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.about-team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    border: 4px solid var(--gold);
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.member-bio {
    color: var(--olive-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-video {
    background: var(--beige);
    padding: var(--spacing-lg) 0;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.video-placeholder p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-studio {
    background: white;
}

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.studio-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    transition: var(--transition);
    object-fit: cover;
}

.studio-image:hover {
    transform: scale(1.05);
}

.studio-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--olive-gray);
    line-height: 1.8;
}

/* ============================================
   Gallery Page
   ============================================ */

.gallery-filters {
    background: white;
    padding: var(--spacing-md) 0;
}

.gallery-filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--beige);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--charcoal);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--charcoal);
    color: var(--beige);
    border-color: var(--charcoal);
}

.gallery-main {
    background: var(--beige);
    padding: var(--spacing-lg) 0;
}

.masonry-grid {
    column-count: 3;
    column-gap: var(--spacing-md);
}

.gallery-item-large {
    break-inside: avoid;
    margin-bottom: var(--spacing-md);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-image-large {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-large:hover .gallery-image-large {
    transform: scale(1.1);
}

.gallery-overlay-large {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 46, 0.9), transparent);
    color: white;
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item-large:hover .gallery-overlay-large {
    transform: translateY(0);
}

.gallery-overlay-large h3 {
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-xs);
}

.modal-info {
    padding: var(--spacing-md);
    background: var(--beige);
}

.modal-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.modal-info p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-xs);
}

#modalImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
}

/* ============================================
   Blog Page
   ============================================ */

.blog-list {
    background: white;
    padding: var(--spacing-lg) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(44, 44, 46, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.blog-content h2 a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h2 a:hover {
    color: var(--gold);
}

.blog-content p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--olive-gray);
}

.newsletter {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    padding: var(--spacing-lg) 0;
}

.newsletter-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-card h2 {
    font-family: var(--font-serif);
    color: white;
    margin-bottom: var(--spacing-sm);
}

.newsletter-card p {
    color: white;
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-sans);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Pricing Page
   ============================================ */

.pricing-plans {
    background: var(--beige);
    padding: var(--spacing-lg) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 44, 46, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.pricing-price {
    margin-bottom: var(--spacing-md);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
}

.price-period {
    color: var(--olive-gray);
    font-size: 1rem;
}

.pricing-savings {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--olive-gray);
}

.pricing-faq {
    background: white;
    padding: var(--spacing-lg) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: var(--beige);
    border-radius: 15px;
}

.faq-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.faq-item p {
    color: var(--olive-gray);
    line-height: 1.7;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-main {
    background: white;
    padding: var(--spacing-lg) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-form-section h2,
.contact-info-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.info-item p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-xs);
}

.contact-faq {
    background: var(--beige);
    padding: var(--spacing-lg) 0;
}

/* ============================================
   Onboarding Page
   ============================================ */

.onboarding-steps {
    background: white;
    padding: var(--spacing-lg) 0;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.step-content p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.onboarding-help {
    background: var(--beige);
    padding: var(--spacing-lg) 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.help-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(44, 44, 46, 0.15);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.help-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.help-card p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Free Lessons Page
   ============================================ */

.free-lessons-list {
    background: white;
    padding: var(--spacing-lg) 0;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.lesson-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(44, 44, 46, 0.15);
}

.lesson-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.lesson-content {
    padding: var(--spacing-md);
}

.lesson-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.lesson-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.lesson-content p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.lesson-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--olive-gray);
}

.free-lessons-cta {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
    padding: var(--spacing-lg) 0;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
}

.cta-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.cta-card p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   404 Page
   ============================================ */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    padding: var(--spacing-xl) 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-art {
    position: relative;
    height: 200px;
    margin-bottom: var(--spacing-lg);
}

.paint-stroke {
    position: absolute;
    width: 150px;
    height: 20px;
    background: linear-gradient(90deg, var(--dusty-rose), var(--gold));
    border-radius: 10px;
    opacity: 0.6;
    animation: paintStroke 3s ease-in-out infinite;
}

.paint-stroke:nth-child(1) {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.paint-stroke:nth-child(2) {
    top: 50%;
    right: 15%;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.paint-stroke:nth-child(3) {
    bottom: 20%;
    left: 50%;
    transform: rotate(-10deg);
    animation-delay: 2s;
}

@keyframes paintStroke {
    0%, 100% { transform: scale(1) rotate(var(--rotation, 0deg)); }
    50% { transform: scale(1.1) rotate(calc(var(--rotation, 0deg) + 5deg)); }
}

.error-title {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.error-subtitle {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.error-text {
    color: var(--olive-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.error-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Quiz Styles
   ============================================ */

.quiz-answer {
    display: block;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: white;
    border: 2px solid var(--beige);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.quiz-answer:hover {
    border-color: var(--gold);
    background: var(--beige);
}

.quiz-answer input[type="radio"] {
    margin-right: var(--spacing-sm);
}

/* ============================================
   Success Stories Page
   ============================================ */

.success-stories {
    background: white;
    padding: var(--spacing-lg) 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: var(--spacing-xl);
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(44, 44, 46, 0.15);
}

.story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.story-content {
    padding: var(--spacing-lg);
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.story-author {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.story-text {
    color: var(--olive-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-progress {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.progress-before,
.progress-after {
    text-align: center;
}

.progress-before p,
.progress-after p {
    font-size: 0.9rem;
    color: var(--olive-gray);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.progress-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--beige);
    display: block;
}

.success-cta {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
    padding: var(--spacing-lg) 0;
}

/* ============================================
   Course Detail Page
   ============================================ */

.course-detail-header {
    padding: calc(var(--spacing-xl) + 70px) 0 var(--spacing-lg);
}

.course-banner {
    border-radius: 20px;
    padding: var(--spacing-xl);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.course-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 46, 0.2);
    z-index: 1;
}

.course-banner-content {
    position: relative;
    z-index: 2;
}

.course-badge-large {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gold);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.course-banner h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
}

.course-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.course-detail-content {
    background: white;
    padding: var(--spacing-lg) 0;
}

.course-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-xl);
}

.course-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.course-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.course-section p {
    color: var(--olive-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.course-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.course-benefits li {
    padding: var(--spacing-xs) 0;
    color: var(--olive-gray);
    font-size: 1.05rem;
}

.course-modules {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.module-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--beige);
    border-radius: 15px;
    transition: var(--transition);
}

.module-item:hover {
    background: rgba(193, 165, 107, 0.1);
}

.module-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
}

.module-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.module-content p {
    color: var(--olive-gray);
    margin: 0;
}

.course-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.include-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--beige);
    border-radius: 15px;
}

.include-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.include-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.include-item p {
    color: var(--olive-gray);
    font-size: 0.95rem;
    margin: 0;
}

.course-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.example-image {
    aspect-ratio: 1;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.example-image:hover {
    transform: scale(1.05);
}

.course-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.course-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.course-purchase-card {
    background: white;
    border: 2px solid var(--beige);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
}

.course-price-large {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.course-price-large .price-old {
    display: block;
    text-decoration: line-through;
    color: var(--olive-gray);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.course-price-large .price-new {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
}

.course-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--beige);
}

.info-row {
    display: flex;
    justify-content: space-between;
    color: var(--olive-gray);
}

.info-row span:last-child {
    font-weight: 600;
    color: var(--charcoal);
}

/* Responsive additions */
@media (max-width: 1024px) {
    .course-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .course-sidebar {
        position: static;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        font-size: 3rem;
    }

    .error-title {
        font-size: 5rem;
    }

    .error-subtitle {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .story-progress {
        grid-template-columns: 1fr;
    }

    .course-benefits {
        grid-template-columns: 1fr;
    }

    .course-includes {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-content {
    background: white;
    padding: var(--spacing-lg) 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-wrapper p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--olive-gray);
}

.legal-wrapper li {
    margin-bottom: var(--spacing-xs);
}

.legal-wrapper a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.legal-wrapper a:hover {
    color: var(--charcoal);
    text-decoration: underline;
}

.thank-you-content {
    background: white;
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    font-weight: 700;
}

.thank-you-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.thank-you-wrapper p {
    color: var(--olive-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.thank-you-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .thank-you-wrapper h2 {
        font-size: 2rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .thank-you-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .thank-you-wrapper h2 {
        font-size: 1.6rem;
    }

    .thank-you-wrapper p {
        font-size: 1rem;
    }
}

/* ============================================
   Cookies Consent Banner
   ============================================ */

.cookies-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: white;
    padding: var(--spacing-md);
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(44, 44, 46, 0.3);
    display: none;
}

.cookies-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookies-consent-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookies-consent-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookies-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookies-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookies-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.techniques-showcase {
    background: white;
    padding: var(--spacing-xl) 0;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.technique-item {
    background: var(--beige);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.technique-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 44, 46, 0.15);
}

.technique-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.technique-content {
    padding: var(--spacing-md);
    text-align: center;
}

.technique-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.technique-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.technique-content p {
    color: var(--olive-gray);
}

.learning-path {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
    padding: var(--spacing-xl) 0;
}

.path-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.path-content h2 {
    text-align: left;
}

.path-content p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.8;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.path-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: white;
    border-radius: 15px;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.path-step h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.path-step p {
    color: var(--olive-gray);
    margin: 0;
    font-size: 0.95rem;
}

.path-visual {
    text-align: center;
}

.path-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 44, 46, 0.2);
}

.community-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.community-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--beige);
    border-radius: 20px;
    transition: var(--transition);
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 44, 46, 0.15);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.community-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.community-card p {
    color: var(--olive-gray);
}

.resources-section {
    background: var(--beige);
    padding: var(--spacing-xl) 0;
}

.resources-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.resources-visual {
    text-align: center;
}

.resources-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 44, 46, 0.2);
}

.resources-content h2 {
    text-align: left;
}

.resources-content p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.8;
}

.resources-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.resources-list li {
    color: var(--olive-gray);
    font-size: 1.05rem;
    padding: var(--spacing-xs) 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    padding: var(--spacing-xl) 0;
}

.cta-card-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-card-large h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.cta-card-large p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .path-wrapper,
    .resources-wrapper {
        grid-template-columns: 1fr;
    }

    .path-content h2,
    .resources-content h2 {
        text-align: center;
    }

    .path-visual,
    .resources-visual {
        order: -1;
    }

    .cta-card-large h2 {
        font-size: 2rem;
    }

    .techniques-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }
}


.course-structure-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.structure-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.structure-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 44, 46, 0.2);
}

.structure-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.structure-content > p {
    color: var(--olive-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.structure-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.structure-feature {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--beige);
    border-radius: 15px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.structure-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.structure-feature p {
    color: var(--olive-gray);
    font-size: 0.95rem;
}

.course-benefits-section {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
    padding: var(--spacing-xl) 0;
}

.benefits-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.benefit-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
}

.benefit-card-large:nth-child(even) {
    direction: rtl;
}

.benefit-card-large:nth-child(even) > * {
    direction: ltr;
}

.benefit-image {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 300px;
}

.benefit-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.benefit-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.benefit-content p {
    color: var(--olive-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.course-testimonials-section {
    background: var(--charcoal);
    color: white;
    padding: var(--spacing-xl) 0;
}

.course-testimonials-section .section-title {
    color: white;
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-featured {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
}

.course-cta-section {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    padding: var(--spacing-xl) 0;
}

.cta-wide {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cta-content-wide h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content-wide > p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .structure-wrapper,
    .cta-wide {
        grid-template-columns: 1fr;
    }

    .structure-content h2,
    .cta-content-wide h2 {
        text-align: center;
    }

    .structure-visual,
    .cta-visual {
        order: -1;
    }

    .structure-features {
        grid-template-columns: 1fr;
    }

    .benefit-card-large {
        grid-template-columns: 1fr;
    }

    .benefit-card-large:nth-child(even) {
        direction: ltr;
    }

    .testimonials-showcase {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }
}

.about-mission-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.mission-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 44, 46, 0.2);
    object-fit: cover;
    height: 500px;
}

.mission-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.mission-intro {
    font-size: 1.2rem;
    color: var(--olive-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mission-point {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: var(--beige);
    border-radius: 15px;
    transition: var(--transition);
}

.mission-point:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(44, 44, 46, 0.1);
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.point-text p {
    color: var(--olive-gray);
    line-height: 1.7;
}

.about-achievements-section {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
    padding: var(--spacing-xl) 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.achievement-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 44, 46, 0.15);
}

.achievement-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.achievement-label {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.achievement-item p {
    color: var(--olive-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-values-section {
    background: var(--charcoal);
    color: white;
    padding: var(--spacing-xl) 0;
}

.about-values-section .section-title {
    color: white;
}

.values-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.values-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0.8;
}

.value-details h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.value-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.values-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    height: 500px;
}

@media (max-width: 768px) {
    .mission-layout,
    .values-layout {
        grid-template-columns: 1fr;
    }

    .mission-content h2,
    .values-content h2 {
        text-align: center;
    }

    .mission-visual,
    .values-visual {
        order: -1;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-point,
    .value-item {
        flex-direction: column;
        text-align: center;
    }
}


.gallery-featured-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.featured-works {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.featured-work-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 46, 0.95), transparent);
    padding: var(--spacing-lg);
    color: white;
}

.featured-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.featured-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.featured-works-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.featured-work-small {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
}

.featured-work-small .featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 46, 0.9), transparent);
    padding: var(--spacing-md);
    color: white;
}

.featured-info h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.featured-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-stats-section {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    padding: var(--spacing-xl) 0;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-card-gallery {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.stat-card-gallery:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-icon-gallery {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.stat-number-gallery {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.stat-label-gallery {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
}

.gallery-techniques-section {
    background: var(--beige);
    padding: var(--spacing-xl) 0;
}

.techniques-showcase-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.technique-card-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
}

.technique-card-gallery:nth-child(even) {
    direction: rtl;
}

.technique-card-gallery:nth-child(even) > * {
    direction: ltr;
}

.technique-image-gallery {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.technique-content-gallery h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.technique-content-gallery p {
    color: var(--olive-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.gallery-community-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.community-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.community-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.community-intro {
    font-size: 1.2rem;
    color: var(--olive-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.community-feature-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--beige);
    border-radius: 15px;
}

.community-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.community-feature-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.community-feature-item p {
    color: var(--olive-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.community-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 44, 46, 0.2);
    object-fit: cover;
    height: 400px;
}

@media (max-width: 768px) {
    .featured-works {
        grid-template-columns: 1fr;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .technique-card-gallery {
        grid-template-columns: 1fr;
    }

    .technique-card-gallery:nth-child(even) {
        direction: ltr;
    }

    .community-showcase {
        grid-template-columns: 1fr;
    }

    .community-content h2 {
        text-align: center;
    }

    .community-visual {
        order: -1;
    }

    .community-features {
        grid-template-columns: 1fr;
    }
}


.blog-featured-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.featured-articles {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.featured-article-main {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
}

.featured-article-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-article-content {
    padding: var(--spacing-lg);
}

.featured-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.featured-article-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.featured-article-content > p {
    color: var(--olive-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.featured-meta {
    display: flex;
    gap: var(--spacing-md);
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.featured-articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.featured-article-small {
    display: flex;
    gap: var(--spacing-md);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.featured-article-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(44, 44, 46, 0.15);
}

.article-thumb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-preview {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category-small {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--beige);
    color: var(--charcoal);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

.article-preview h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.article-preview p {
    color: var(--olive-gray);
    font-size: 0.95rem;
}

.blog-topics-section {
    background: linear-gradient(135deg, var(--beige) 0%, white 100%);
    padding: var(--spacing-xl) 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.topic-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(44, 44, 46, 0.1);
    transition: var(--transition);
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 44, 46, 0.15);
}

.topic-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.topic-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.topic-card > p {
    color: var(--olive-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.topic-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-writers-section {
    background: var(--charcoal);
    color: white;
    padding: var(--spacing-xl) 0;
}

.blog-writers-section .section-title {
    color: white;
}

.writers-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.writers-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    height: 400px;
}

.writers-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.writers-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.writers-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.writer-feature {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.writer-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.writer-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.writer-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .featured-articles {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .writers-layout {
        grid-template-columns: 1fr;
    }

    .writers-content h2 {
        text-align: center;
    }

    .writers-visual {
        order: -1;
    }

    .writers-features {
        grid-template-columns: 1fr;
    }

    .featured-article-small {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 320px) {
    :root {
        --spacing-xs: 0.4rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .segments-grid,
    .advantages-grid,
    .gallery-grid,
    .testimonials-grid,
    .courses-grid,
    .philosophy-grid,
    .team-grid,
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .segment-card,
    .advantage-item,
    .testimonial-card,
    .philosophy-item {
        padding: 1rem;
    }

    .segment-icon,
    .philosophy-icon {
        font-size: 2rem;
    }

    .advantage-number {
        font-size: 3rem;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .course-card-promo,
    .course-card {
        margin-bottom: 1rem;
    }

    .course-image {
        height: 150px;
    }

    .course-content {
        padding: 1rem;
    }

    .course-content h3 {
        font-size: 1.2rem;
    }

    .price-new {
        font-size: 1.2rem;
    }

    #colorWheel {
        width: 250px;
        height: 250px;
    }

    .selected-color {
        width: 80px;
        height: 80px;
    }

    .path-step {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .step-icon {
        font-size: 1.5rem;
    }

    .cta-card-large {
        padding: 1.5rem;
    }

    .cta-card-large h2 {
        font-size: 1.4rem;
    }

    .cta-card-large p {
        font-size: 0.95rem;
    }

    .technique-content,
    .community-card {
        padding: 1rem;
    }

    .technique-icon,
    .community-icon {
        font-size: 2rem;
    }

    .structure-wrapper,
    .path-wrapper,
    .resources-wrapper,
    .cta-wide,
    .mission-layout,
    .values-layout,
    .community-showcase,
    .writers-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .structure-content h2,
    .path-content h2,
    .resources-content h2,
    .cta-content-wide h2,
    .mission-content h2,
    .values-content h2,
    .community-content h2,
    .writers-content h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .structure-visual,
    .path-visual,
    .resources-visual,
    .cta-visual,
    .mission-visual,
    .values-visual,
    .community-visual,
    .writers-visual {
        order: -1;
    }

    .structure-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .structure-feature {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .benefit-card-large {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .benefit-card-large:nth-child(even) {
        direction: ltr;
    }

    .benefit-image {
        height: 200px;
    }

    .benefit-number {
        font-size: 3rem;
    }

    .benefit-content h3 {
        font-size: 1.4rem;
    }

    .testimonials-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-featured {
        padding: 1rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .achievement-item {
        padding: 1rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-label {
        font-size: 1.1rem;
    }

    .mission-point,
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .point-icon,
    .value-number {
        font-size: 2rem;
    }

    .point-text h3,
    .value-details h3 {
        font-size: 1.1rem;
    }

    .featured-works {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-work-large {
        height: 300px;
    }

    .featured-content h3 {
        font-size: 1.4rem;
    }

    .featured-content p {
        font-size: 0.95rem;
    }

    .featured-work-small {
        height: 180px;
    }

    .featured-info h4 {
        font-size: 1.1rem;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card-gallery {
        padding: 1rem;
    }

    .stat-icon-gallery {
        font-size: 2.5rem;
    }

    .stat-number-gallery {
        font-size: 2rem;
    }

    .stat-label-gallery {
        font-size: 1rem;
    }

    .technique-card-gallery {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .technique-card-gallery:nth-child(even) {
        direction: ltr;
    }

    .technique-image-gallery {
        height: 200px;
    }

    .technique-content-gallery h3 {
        font-size: 1.4rem;
    }

    .technique-content-gallery p {
        font-size: 1rem;
    }

    .community-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .community-feature-item {
        padding: 1rem;
    }

    .community-feature-icon {
        font-size: 2rem;
    }

    .community-image {
        height: 250px;
    }

    .featured-articles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-article-image {
        height: 200px;
    }

    .featured-article-content {
        padding: 1rem;
    }

    .featured-article-content h2 {
        font-size: 1.4rem;
    }

    .featured-article-content > p {
        font-size: 1rem;
    }

    .featured-article-small {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
        height: 150px;
    }

    .article-preview {
        padding: 1rem;
    }

    .article-preview h3 {
        font-size: 1.1rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .topic-card {
        padding: 1rem;
    }

    .topic-icon {
        font-size: 2.5rem;
    }

    .topic-card h3 {
        font-size: 1.2rem;
    }

    .writers-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .writer-feature {
        padding: 1rem;
    }

    .writer-feature-icon {
        font-size: 2rem;
    }

    .writer-feature h4 {
        font-size: 1.1rem;
    }

    .writers-image {
        height: 250px;
    }

    .filters-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group select {
        width: 100%;
    }

    .gallery-filter-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .courses-grid-full {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .newsletter-card {
        padding: 1rem;
    }

    .newsletter-card h2 {
        font-size: 1.4rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-card {
        margin-bottom: 1rem;
    }

    .blog-image {
        height: 150px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h2 {
        font-size: 1.2rem;
    }

    .masonry-grid {
        column-count: 1;
    }

    .gallery-item-large {
        margin-bottom: 1rem;
    }

    .gallery-image-large {
        height: 250px;
    }

    .modal-content {
        padding: 1rem;
        margin: 10% auto;
        width: 95%;
    }

    .close-modal {
        right: 10px;
        top: 10px;
        font-size: 1.5rem;
    }

    .quiz-card {
        padding: 1rem;
    }

    .quiz-card h2 {
        font-size: 1.4rem;
    }

    .quiz-card p {
        font-size: 0.95rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-content h2 {
        font-size: 1.4rem;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .help-card {
        padding: 1rem;
    }

    .help-icon {
        font-size: 2rem;
    }

    .help-card h3 {
        font-size: 1.2rem;
    }

    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lesson-card {
        margin-bottom: 1rem;
    }

    .lesson-image {
        height: 150px;
    }

    .lesson-content {
        padding: 1rem;
    }

    .lesson-content h3 {
        font-size: 1.2rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .story-card {
        margin-bottom: 1rem;
    }

    .story-image {
        height: 200px;
    }

    .story-content {
        padding: 1rem;
    }

    .story-content h2 {
        font-size: 1.4rem;
    }

    .story-progress {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-banner {
        padding: 1rem;
    }

    .course-banner h1 {
        font-size: 1.6rem;
    }

    .course-section h2 {
        font-size: 1.4rem;
    }

    .course-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .course-includes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .include-item {
        padding: 1rem;
    }

    .include-icon {
        font-size: 2rem;
    }

    .course-examples {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-purchase-card {
        padding: 1rem;
    }

    .course-price-large .price-new {
        font-size: 2rem;
    }

    .legal-wrapper {
        padding: 0 0.5rem;
    }

    .legal-wrapper h2 {
        font-size: 1.4rem;
    }

    .legal-wrapper h3 {
        font-size: 1.2rem;
    }

    .legal-wrapper p,
    .legal-wrapper li {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1.2rem;
    }


    .error-title {
        font-size: 4rem;
    }

    .error-subtitle {
        font-size: 1.2rem;
    }

    .error-text {
        font-size: 0.95rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .gallery-image,
    .course-image,
    .blog-image,
    .studio-image,
    .member-photo,
    .technique-image,
    .path-image,
    .resources-image,
    .benefit-image,
    .featured-image,
    .technique-image-gallery,
    .community-image,
    .writers-image,
    .mission-image,
    .values-image,
    .featured-article-image,
    .article-thumb,
    .cta-image {
        max-width: 100%;
        height: auto;
    }

    .page-header {
        padding: calc(2rem + 60px) 0 1.5rem;
    }

    .courses-filters,
    .gallery-filters {
        padding: 1rem 0;
    }

    .filters-wrapper {
        padding: 0 0.5rem;
    }

    .course-structure-section,
    .course-benefits-section,
    .course-testimonials-section,
    .course-cta-section,
    .about-mission-section,
    .about-achievements-section,
    .about-values-section,
    .gallery-featured-section,
    .gallery-stats-section,
    .gallery-techniques-section,
    .gallery-community-section,
    .blog-featured-section,
    .blog-topics-section,
    .blog-writers-section {
        padding: 1.5rem 0;
    }

    .featured-work-large {
        height: 250px;
    }

    .featured-overlay {
        padding: 1rem;
    }

    .featured-content h3 {
        font-size: 1.2rem;
    }

    .featured-content p {
        font-size: 0.9rem;
    }

    .featured-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .stat-card-gallery {
        padding: 0.75rem;
    }

    .technique-content-gallery {
        padding: 1rem;
    }

    .technique-content-gallery h3 {
        font-size: 1.2rem;
    }

    .community-intro,
    .writers-intro,
    .mission-intro {
        font-size: 1rem;
    }

    .topic-count {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .newsletter-card {
        padding: 1.5rem;
    }

    .newsletter-card h2 {
        font-size: 1.3rem;
    }

    .newsletter-card p {
        font-size: 0.95rem;
    }

    .course-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-category,
    .lesson-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .course-badge-large {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .course-banner {
        padding: 1.5rem;
    }

    .course-banner h1 {
        font-size: 1.4rem;
    }

    .course-banner p {
        font-size: 1rem;
    }

    .course-sidebar {
        position: static;
    }

    .course-purchase-card {
        margin-top: 1rem;
    }

    .module-item {
        padding: 0.75rem;
    }

    .module-number {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .module-content h3 {
        font-size: 1.1rem;
    }

    .include-item {
        padding: 0.75rem;
    }

    .include-icon {
        font-size: 2rem;
    }

    .include-item h3 {
        font-size: 1.1rem;
    }

    .info-row {
        font-size: 0.85rem;
    }

    .course-info-list {
        gap: 0.75rem;
    }

    .step-content h2 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .help-card h3 {
        font-size: 1.1rem;
    }

    .help-card p {
        font-size: 0.9rem;
    }

    .cta-card h2 {
        font-size: 1.4rem;
    }

    .cta-card p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .story-content h2 {
        font-size: 1.3rem;
    }

    .story-content p {
        font-size: 0.95rem;
    }

    .progress-image {
        height: auto;
    }

    .quiz-card h2 {
        font-size: 1.3rem;
    }

    .quiz-answer {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .legal-wrapper h2 {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    .legal-wrapper h3 {
        font-size: 1.1rem;
    }

    .cookies-consent-content {
        flex-direction: column;
        padding: 1rem;
    }

    .cookies-consent-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cookies-buttons {
        width: 100%;
    }

    .cookies-buttons .btn {
        flex: 1;
        min-width: 100px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.85rem;
    }

    .footer-col ul {
        margin-bottom: 0.5rem;
    }

    .footer-col li {
        margin-bottom: 0.4rem;
    }

    .footer-col a {
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 0.8rem;
    }

    .scroll-arrow {
        height: 25px;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .text-center {
        margin-top: 1rem;
    }

    .course-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .course-level,
    .course-modules {
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .lesson-meta {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-stars {
        font-size: 1rem;
    }

    .price-old {
        font-size: 0.9rem;
    }

    .price-new {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .pricing-savings {
        font-size: 0.9rem;
    }

    .pricing-features {
        font-size: 0.9rem;
    }

    .pricing-features li {
        padding: 0.4rem 0;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .member-role {
        font-size: 0.9rem;
    }

    .member-bio {
        font-size: 0.85rem;
    }

    .studio-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .video-placeholder {
        padding: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-placeholder p {
        font-size: 1rem;
    }

    .course-price {
        margin-bottom: 0.75rem;
    }

    .course-price-large .price-new {
        font-size: 2rem;
    }

    .course-price-large .price-old {
        font-size: 1rem;
    }

    .course-badge-large {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .course-banner-content {
        padding: 0.5rem;
    }

    .course-section p {
        font-size: 0.95rem;
    }

    .course-benefits li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    .module-content p {
        font-size: 0.9rem;
    }

    .include-item p {
        font-size: 0.85rem;
    }

    .example-image {
        height: auto;
    }

    .course-testimonials .testimonial-card {
        padding: 1rem;
    }

    .course-testimonials .testimonial-text {
        font-size: 0.9rem;
    }

    .course-testimonials .testimonial-author {
        font-size: 0.85rem;
    }

    .course-info-list {
        font-size: 0.9rem;
    }

    .info-row {
        font-size: 0.85rem;
    }

    .course-purchase-card .btn {
        width: 100%;
    }

    .onboarding-steps,
    .onboarding-help {
        padding: 1.5rem 0;
    }

    .steps-list {
        padding: 0 0.5rem;
    }

    .step-item {
        margin-bottom: 1.5rem;
    }

    .step-content h2 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .help-grid {
        gap: 1rem;
    }

    .help-card {
        padding: 1rem;
    }

    .free-lessons-list,
    .free-lessons-cta {
        padding: 1.5rem 0;
    }

    .lessons-grid {
        gap: 1rem;
    }

    .lesson-card {
        margin-bottom: 1rem;
    }

    .lesson-content h3 {
        font-size: 1.2rem;
    }

    .lesson-content p {
        font-size: 0.9rem;
    }

    .cta-card {
        padding: 1rem;
    }

    .cta-card h2 {
        font-size: 1.3rem;
    }

    .cta-card p {
        font-size: 0.95rem;
    }

    .success-stories,
    .success-cta {
        padding: 1.5rem 0;
    }

    .stories-grid {
        gap: 1rem;
    }

    .story-card {
        margin-bottom: 1rem;
    }

    .story-content h2 {
        font-size: 1.4rem;
    }

    .story-author {
        font-size: 0.9rem;
    }

    .story-text {
        font-size: 0.95rem;
    }

    .progress-before p,
    .progress-after p {
        font-size: 0.85rem;
    }

    .error-page {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .error-content {
        padding: 0 0.75rem;
    }

    .error-art {
        height: 150px;
        margin-bottom: 1rem;
    }

    .paint-stroke {
        width: 100px;
        height: 15px;
    }

    .error-title {
        font-size: 3.5rem;
    }

    .error-subtitle {
        font-size: 1.1rem;
    }

    .error-text {
        font-size: 0.9rem;
    }

    .error-actions {
        gap: 0.75rem;
    }

    .contact-main,
    .contact-faq {
        padding: 1.5rem 0;
    }

    .contact-form-section,
    .contact-info-section {
        margin-bottom: 1rem;
    }

    .pricing-plans,
    .pricing-faq {
        padding: 1.5rem 0;
    }

    .blog-list {
        padding: 1.5rem 0;
    }

    .newsletter {
        padding: 1.5rem 0;
    }

    .gallery-main {
        padding: 1.5rem 0;
    }

    .about-story,
    .about-philosophy,
    .about-team,
    .about-studio {
        padding: 1.5rem 0;
    }

    .courses-list {
        padding: 1.5rem 0;
    }

    .courses-filters {
        padding: 1rem 0;
    }

    .gallery-filters {
        padding: 1rem 0;
    }

    .page-header {
        padding: calc(2rem + 60px) 0 1rem;
    }

    .page-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
        margin: 0.75rem auto;
    }

    .hero {
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-wrapper {
        padding: 0 0.75rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-bottom {
        margin-top: 1rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 10% auto;
        padding: 1rem;
        max-height: 85vh;
    }

    #modalImage {
        height: 200px;
    }

    .modal-info {
        padding: 1rem;
    }

    .modal-info h3 {
        font-size: 1.2rem;
    }

    .modal-info p {
        font-size: 0.9rem;
    }

    .quiz-answer input[type="radio"] {
        margin-right: 0.5rem;
    }

    #quizContainer h2 {
        font-size: 1.3rem;
    }

    #quizContainer h3 {
        font-size: 1.1rem;
    }

    #quizContainer p {
        font-size: 0.95rem;
    }

    #quizSubmit {
        width: 100%;
        margin-top: 1rem;
    }

    .color-wheel-container {
        padding: 1rem;
    }

    #colorWheel {
        max-width: 100%;
    }

    .color-info {
        padding: 0.5rem;
    }

    #colorName {
        font-size: 1rem;
    }

    .selected-color {
        width: 70px;
        height: 70px;
    }

    .course-badge {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.7rem;
    }

    .pricing-badge {
        top: -12px;
        right: 15px;
        padding: 0.3rem 0.7rem;
    }

    .course-badge-large {
        margin-bottom: 0.75rem;
    }

    .paint-strokes {
        opacity: 0.2;
    }

    .hero-background {
        opacity: 0.25;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .scroll-arrow {
        width: 1.5px;
        height: 25px;
    }

    .scroll-arrow::after {
        width: 8px;
        height: 8px;
        left: -3px;
    }

    .gallery-overlay,
    .gallery-overlay-large {
        padding: 0.75rem;
    }

    .gallery-overlay p,
    .gallery-overlay-large h3 {
        font-size: 0.9rem;
    }

    .gallery-overlay-large p {
        font-size: 0.85rem;
    }

    .course-badge {
        font-size: 0.7rem;
    }

    .pricing-badge {
        font-size: 0.7rem;
    }

    .blog-category {
        font-size: 0.7rem;
    }

    .lesson-badge {
        font-size: 0.7rem;
    }

    .featured-category {
        font-size: 0.8rem;
    }

    .article-category-small {
        font-size: 0.75rem;
    }

    .topic-count {
        font-size: 0.8rem;
    }

    .featured-badge {
        font-size: 0.8rem;
    }

    .course-badge-large {
        font-size: 0.8rem;
    }

    .course-meta {
        margin: 0.5rem 0;
    }

    .blog-meta {
        margin-top: 0.5rem;
    }

    .lesson-meta {
        margin-bottom: 0.75rem;
    }

    .testimonial-card {
        margin-bottom: 1rem;
    }

    .course-card-promo {
        margin-bottom: 1rem;
    }

    .course-card {
        margin-bottom: 1rem;
    }

    .blog-card {
        margin-bottom: 1rem;
    }

    .lesson-card {
        margin-bottom: 1rem;
    }

    .story-card {
        margin-bottom: 1rem;
    }

    .pricing-card {
        margin-bottom: 1rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .help-card {
        margin-bottom: 1rem;
    }

    .community-card {
        margin-bottom: 1rem;
    }

    .technique-item {
        margin-bottom: 1rem;
    }

    .topic-card {
        margin-bottom: 1rem;
    }

    .achievement-item {
        margin-bottom: 1rem;
    }

    .stat-card-gallery {
        margin-bottom: 1rem;
    }

    .testimonial-featured {
        margin-bottom: 1rem;
    }

    .benefit-card-large {
        margin-bottom: 1rem;
    }

    .featured-article-main {
        margin-bottom: 1rem;
    }

    .featured-article-small {
        margin-bottom: 1rem;
    }

    .technique-card-gallery {
        margin-bottom: 1rem;
    }

    .writer-feature {
        margin-bottom: 1rem;
    }

    .community-feature-item {
        margin-bottom: 1rem;
    }

    .structure-feature {
        margin-bottom: 1rem;
    }

    .mission-point {
        margin-bottom: 1rem;
    }

    .value-item {
        margin-bottom: 1rem;
    }

    .featured-work-large {
        margin-bottom: 1rem;
    }

    .featured-work-small {
        margin-bottom: 1rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .path-step {
        margin-bottom: 1rem;
    }

    .step-item {
        margin-bottom: 1rem;
    }

    .module-item {
        margin-bottom: 1rem;
    }

    .include-item {
        margin-bottom: 1rem;
    }

    .course-benefits li {
        margin-bottom: 0.3rem;
    }

    .pricing-features li {
        margin-bottom: 0.3rem;
    }

    .resources-list li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .path-steps {
        gap: 1rem;
    }

    .structure-features {
        gap: 1rem;
    }

    .mission-points {
        gap: 1rem;
    }

    .values-list {
        gap: 1rem;
    }

    .community-features {
        gap: 1rem;
    }

    .writers-features {
        gap: 1rem;
    }

    .testimonials-showcase {
        gap: 1rem;
    }

    .cta-stats {
        gap: 1rem;
    }

    .achievements-grid {
        gap: 1rem;
    }

    .stats-showcase {
        gap: 1rem;
    }

    .topics-grid {
        gap: 1rem;
    }

    .featured-works {
        gap: 1rem;
    }

    .featured-works-grid {
        gap: 1rem;
    }

    .techniques-showcase-gallery {
        gap: 1rem;
    }

    .featured-articles {
        gap: 1rem;
    }

    .featured-articles-sidebar {
        gap: 1rem;
    }

    .benefits-showcase {
        gap: 1rem;
    }

    .structure-wrapper,
    .path-wrapper,
    .resources-wrapper,
    .cta-wide,
    .mission-layout,
    .values-layout,
    .community-showcase,
    .writers-layout {
        gap: 1rem;
    }

    .course-detail-wrapper {
        gap: 1rem;
    }

    .contact-wrapper {
        gap: 1rem;
    }

    .filters-wrapper {
        gap: 0.75rem;
    }

    .gallery-filter-buttons {
        gap: 0.5rem;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    .error-actions {
        gap: 0.75rem;
    }

    .newsletter-form {
        gap: 0.75rem;
    }

    .cookies-buttons {
        gap: 0.75rem;
    }

    .course-meta {
        gap: 0.5rem;
    }

    .blog-meta {
        gap: 0.5rem;
    }

    .lesson-meta {
        gap: 0.4rem;
    }

    .story-progress {
        gap: 1rem;
    }

    .course-modules {
        gap: 1rem;
    }

    .course-includes {
        gap: 1rem;
    }

    .course-examples {
        gap: 1rem;
    }

    .course-testimonials {
        gap: 1rem;
    }

    .course-info-list {
        gap: 0.75rem;
    }

    .info-item {
        gap: 0.75rem;
    }

    .step-item {
        gap: 1rem;
    }

    .module-item {
        gap: 0.75rem;
    }

    .include-item {
        gap: 0.75rem;
    }

    .mission-point {
        gap: 0.75rem;
    }

    .value-item {
        gap: 0.75rem;
    }

    .path-step {
        gap: 0.75rem;
    }

    .benefit-card-large {
        gap: 1rem;
    }

    .technique-card-gallery {
        gap: 1rem;
    }

    .featured-article-small {
        gap: 0.75rem;
    }

    .structure-feature {
        gap: 0.5rem;
    }

    .point-text {
        gap: 0.3rem;
    }

    .value-details {
        gap: 0.3rem;
    }

    .community-feature-item {
        gap: 0.5rem;
    }

    .writer-feature {
        gap: 0.5rem;
    }

    .stat-item {
        gap: 0.3rem;
    }

    .achievement-item {
        gap: 0.5rem;
    }

    .stat-card-gallery {
        gap: 0.5rem;
    }

    .testimonial-featured {
        gap: 0.5rem;
    }

    .benefit-content {
        gap: 0.5rem;
    }

    .technique-content-gallery {
        gap: 0.5rem;
    }

    .article-preview {
        gap: 0.5rem;
    }

    .topic-card {
        gap: 0.5rem;
    }

    .featured-content {
        gap: 0.5rem;
    }

    .featured-info {
        gap: 0.3rem;
    }

    .community-content {
        gap: 0.5rem;
    }

    .writers-content {
        gap: 0.5rem;
    }

    .mission-content {
        gap: 0.5rem;
    }

    .values-content {
        gap: 0.5rem;
    }

    .structure-content {
        gap: 0.5rem;
    }

    .path-content {
        gap: 0.5rem;
    }

    .resources-content {
        gap: 0.5rem;
    }

    .cta-content-wide {
        gap: 0.5rem;
    }

    .benefit-content {
        gap: 0.5rem;
    }

    .course-content {
        gap: 0.5rem;
    }

    .blog-content {
        gap: 0.5rem;
    }

    .lesson-content {
        gap: 0.5rem;
    }

    .story-content {
        gap: 0.5rem;
    }

    .pricing-card {
        gap: 0.5rem;
    }

    .faq-item {
        gap: 0.5rem;
    }

    .help-card {
        gap: 0.5rem;
    }

    .community-card {
        gap: 0.5rem;
    }

    .technique-item {
        gap: 0.5rem;
    }

    .topic-card {
        gap: 0.5rem;
    }

    .achievement-item {
        gap: 0.5rem;
    }

    .stat-card-gallery {
        gap: 0.5rem;
    }

    .testimonial-featured {
        gap: 0.5rem;
    }

    .benefit-card-large {
        gap: 1rem;
    }

    .featured-article-main {
        gap: 0.5rem;
    }

    .featured-article-small {
        gap: 0.75rem;
    }

    .technique-card-gallery {
        gap: 1rem;
    }

    .writer-feature {
        gap: 0.5rem;
    }

    .community-feature-item {
        gap: 0.5rem;
    }

    .structure-feature {
        gap: 0.5rem;
    }

    .mission-point {
        gap: 0.75rem;
    }

    .value-item {
        gap: 0.75rem;
    }

    .path-step {
        gap: 0.75rem;
    }

    .featured-work-large {
        gap: 0;
    }

    .featured-work-small {
        gap: 0;
    }

    .stat-item {
        gap: 0.3rem;
    }

    .achievement-item {
        gap: 0.5rem;
    }

    .stat-card-gallery {
        gap: 0.5rem;
    }

    .testimonial-featured {
        gap: 0.5rem;
    }

    .benefit-content {
        gap: 0.5rem;
    }

    .technique-content-gallery {
        gap: 0.5rem;
    }

    .article-preview {
        gap: 0.5rem;
    }

    .topic-card {
        gap: 0.5rem;
    }

    .featured-content {
        gap: 0.5rem;
    }

    .featured-info {
        gap: 0.3rem;
    }

    .community-content {
        gap: 0.5rem;
    }

    .writers-content {
        gap: 0.5rem;
    }

    .mission-content {
        gap: 0.5rem;
    }

    .values-content {
        gap: 0.5rem;
    }

    .structure-content {
        gap: 0.5rem;
    }

    .path-content {
        gap: 0.5rem;
    }

    .resources-content {
        gap: 0.5rem;
    }

    .cta-content-wide {
        gap: 0.5rem;
    }

    .course-content {
        gap: 0.5rem;
    }

    .blog-content {
        gap: 0.5rem;
    }

    .lesson-content {
        gap: 0.5rem;
    }

    .story-content {
        gap: 0.5rem;
    }

    .pricing-card {
        gap: 0.5rem;
    }

    .faq-item {
        gap: 0.5rem;
    }

    .help-card {
        gap: 0.5rem;
    }

    .community-card {
        gap: 0.5rem;
    }

    .technique-item {
        gap: 0.5rem;
    }

    .topic-card {
        gap: 0.5rem;
    }

    .achievement-item {
        gap: 0.5rem;
    }

    .stat-card-gallery {
        gap: 0.5rem;
    }

    .testimonial-featured {
        gap: 0.5rem;
    }

    .benefit-card-large {
        gap: 1rem;
    }

    .featured-article-main {
        gap: 0.5rem;
    }

    .featured-article-small {
        gap: 0.75rem;
    }

    .technique-card-gallery {
        gap: 1rem;
    }

    .writer-feature {
        gap: 0.5rem;
    }

    .community-feature-item {
        gap: 0.5rem;
    }

    .structure-feature {
        gap: 0.5rem;
    }

    .mission-point {
        gap: 0.75rem;
    }

    .value-item {
        gap: 0.75rem;
    }

    .path-step {
        gap: 0.75rem;
    }

    .featured-work-large {
        gap: 0;
    }

    .featured-work-small {
        gap: 0;
    }

    .stat-item {
        gap: 0.3rem;
    }

    .achievement-item {
        gap: 0.5rem;
    }

    .stat-card-gallery {
        gap: 0.5rem;
    }

    .testimonial-featured {
        gap: 0.5rem;
    }

    .benefit-content {
        gap: 0.5rem;
    }

    .technique-content-gallery {
        gap: 0.5rem;
    }

    .article-preview {
        gap: 0.5rem;
    }

    .topic-card {
        gap: 0.5rem;
    }

    .featured-content {
        gap: 0.5rem;
    }

    .featured-info {
        gap: 0.3rem;
    }

    .community-content {
        gap: 0.5rem;
    }

    .writers-content {
        gap: 0.5rem;
    }

    .mission-content {
        gap: 0.5rem;
    }

    .values-content {
        gap: 0.5rem;
    }

    .structure-content {
        gap: 0.5rem;
    }

    .path-content {
        gap: 0.5rem;
    }

    .resources-content {
        gap: 0.5rem;
    }

    .cta-content-wide {
        gap: 0.5rem;
    }

}

