/* ============================================
   RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #2a2a2a;
    background: #fcfaf8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
============================================ */
.heading-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.heading-serif-bold {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.heading-sans {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.heading-sans-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-primary:hover {
    background: transparent;
    color: #c9a84c;
}

.btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ============================================
   SECTION DIVIDER
============================================ */
.section-divider {
    width: 60px;
    height: 2px;
    background: #c9a84c;
    margin: 0 auto 40px auto;
}

/* ============================================
   SECTION TITLE
============================================ */
.section-title {
    text-align: center;
    margin-bottom: 12px;
}
.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
}
.section-title p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
}

.section-padding {
    padding: 80px 0;
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
.site-header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fcfaf8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.06em;
    text-decoration: none;
}
.logo span {
    color: #c9a84c;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a2a2a;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: #c9a84c;
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-actions a {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #2a2a2a;
    transition: color 0.3s;
    text-decoration: none;
}
.nav-actions a:hover {
    color: #c9a84c;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a2e;
    padding: 0 8px;
    line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fcfaf8;
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-menu.active {
    display: block;
}
.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #1a1a2e;
    transition: color 0.3s;
    text-decoration: none;
}
.mobile-menu a:hover {
    color: #c9a84c;
}

/* ============================================
   HERO CAROUSEL
============================================ */.hero-carousel {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(26, 26, 46, 0.35) 0%, rgba(26, 26, 46, 0.15) 60%);
    z-index: 1;
}


.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    max-width: 900px;
    background: rgba(26, 26, 46, 0.85);
    border-radius: 4px;
}

.hero-slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-slide-content h1 em {
    font-style: italic;
    color: #c9a84c;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}
/* Carousel Controls */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2.5rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    line-height: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(201, 168, 76, 0.3);
    border-color: #c9a84c;
}

.carousel-prev {
    left: 20px;
}
.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dots .dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PRODUCT GRID
============================================ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e8e4e0;
    background-size: cover;
    background-position: center;
}
.card-image--carving {
    background-image: url('../img/course-carving.jpg');
}
.card-image--painting {
    background-image: url('../img/course-painting.jpg');
}
.card-image--bundle {
    background-image: url('../img/course-bundle.jpg');
}
.card-image--guide {
    background-image: url('../img/course-tool-guide.jpg');
}

.card-info {
    padding: 24px 24px 28px;
    text-align: center;
}

.card-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a84c;
    display: block;
    margin-bottom: 6px;
}

.card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.card-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 14px;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a2e;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 3px;
    transition: color 0.3s;
}
.card-link:hover {
    color: #c9a84c;
}

/* ============================================
   VIDEO SECTION
============================================ */
.video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
    margin: 60px 0;
}

.video-thumb {
    aspect-ratio: 16/10;
    background: #2a2a2a;
    background-image: url('../img/video-placeholder.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.play-btn:hover {
    transform: scale(1.08);
}
.play-btn svg {
    margin-left: 4px;
}

.video-text {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f6f4;
}

.video-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 8px;
}

.video-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.video-text p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.video-cta {
    align-self: flex-start;
}

/* ============================================
   QUOTE SECTION
============================================ */
.quote-section {
    padding: 100px 0;
    margin: 60px 0;
    background: #1a1a2e;
    background-image: url('../img/quote-bg-placeholder.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 16px;
}

.attribution {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.signature {
    margin-top: 20px;
    opacity: 0.5;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c9a84c;
    font-style: italic;
}

/* ============================================
   SPLIT SECTIONS
============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 60px 0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
}

.split-image {
    aspect-ratio: 4/3;
    background: #d4d0cc;
    background-size: cover;
    background-position: center;
}
.split-image--about {
    background-image: url('../img/split-about.jpg');
}
.split-image--contact {
    background-image: url('../img/split-contact.jpg');
}

.split-text {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f6f4;
}

.split-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 6px;
}

.split-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.split-text p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-cta {
    align-self: flex-start;
}

/* ============================================
   SOCIAL GRID
============================================ */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 30px;
}

.social-item {
    aspect-ratio: 1/1;
    background: #e8e4e0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}
.social-item:hover {
    opacity: 0.8;
}

.social-item--1 { background-image: url('../img/social-1.jpg'); }
.social-item--2 { background-image: url('../img/social-2.jpg'); }
.social-item--3 { background-image: url('../img/social-3.jpg'); }
.social-item--4 { background-image: url('../img/social-4.jpg'); }

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #c9a84c;
    font-weight: 300;
}
.faq-question:hover {
    color: #c9a84c;
}

.faq-answer {
    padding: 0 0 20px 0;
    display: none;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}
.faq-answer.active {
    display: block;
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
    background: #1a1a2e;
    padding: 80px 0;
    margin: 60px 0;
}

.newsletter-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.04em;
    border-radius: 0;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.newsletter-form input:focus {
    outline: 1px solid #c9a84c;
    background: rgba(255, 255, 255, 0.12);
}

.btn-submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    background: #c9a84c;
    color: #1a1a2e;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover {
    background: #b8973e;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fcfaf8;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copy {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    transition: color 0.3s;
    text-decoration: none;
}
.footer-links a:hover {
    color: #c9a84c;
}

.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    color: #c9a84c;
}

/* ============================================
   SCROLL TO TOP
============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #1a1a2e;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    font-size: 1.2rem;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: #c9a84c;
    color: #1a1a2e;
}

/* ============================================
   AUTHENTICATION PAGES (Registration / Login)
============================================ */

.auth-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 50px 45px 40px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.07);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #888;
    font-size: 0.8rem;
    margin-top: 4px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a2e;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a2e;
    background: #fcfaf8;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #c9a84c;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder {
    color: #bbb;
    font-weight: 300;
}

.password-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    color: #999;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.password-hint-valid {
    color: #2e7d32;
}

.password-hint-invalid {
    color: #c62828;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 16px 40px;
    margin-top: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    border-radius: 0;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: #777;
}

.auth-footer a {
    font-weight: 500;
    color: #c9a84c;
    transition: color 0.3s;
    text-decoration: none;
}

.auth-footer a:hover {
    color: #1a1a2e;
}

.auth-error {
    background: #fff5f5;
    border-left: 3px solid #c62828;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #c62828;
}

.auth-success {
    background: #f0f7f0;
    border-left: 3px solid #2e7d32;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #2e7d32;
}

/* ============================================
   CONTACT PAGE
============================================ */

.contact-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-icon {
    display: inline-block;
    width: 30px;
    color: #c9a84c;
    font-size: 1rem;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form .form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a2e;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a2e;
    background: #fcfaf8;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #c9a84c;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert-container {
    text-align: center;
    margin-bottom: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.alert-message {
    padding: 14px 24px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-block;
}

.alert-success {
    background: #f0f7f0;
    border-left: 3px solid #2e7d32;
    color: #2e7d32;
}

.alert-error {
    background: #fff5f5;
    border-left: 3px solid #c62828;
    color: #c62828;
}

.honeypot {
    display: none !important;
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.captcha-group {
    background: #f8f6f4;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px 24px;
    border-radius: 0;
    margin: 4px 0;
}

.captcha-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.captcha-input {
    width: 140px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a2e;
    background: #ffffff;
    transition: all 0.3s ease;
}

.captcha-input:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.captcha-hint {
    display: block;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    color: #999;
}

/* ============================================
   ABOUT PAGE
============================================ */

.about-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a2e;
    margin: 24px 0 12px 0;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

.about-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c9a84c;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: block;
}

.values-section {
    max-width: 1200px;
    margin: 60px auto 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.value-icon {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 12px;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: #777;
    line-height: 1.6;
}

.about-quote {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-attribution {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
}

/* ============================================
   TUTORIALS / PRODUCTS PAGE
============================================ */

.tutorials-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.tutorials-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.tutorials-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.tutorials-product-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 36px 40px 32px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.tutorials-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.tutorials-product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tutorials-product-card--bundle {
    border: 1px solid #c9a84c;
    background: linear-gradient(135deg, #fcf9f2 0%, #fcfaf8 100%);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    background: #c9a84c;
    color: #1a1a2e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
    z-index: 2;
}

.tutorials-product-card--bundle h3 {
    color: #c9a84c;
}

.product-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 16px 0 20px;
    flex-wrap: wrap;
}

.product-image {
    flex-shrink: 0;
    width: 180px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: block;
}

.tutorials-product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-text {
    flex: 1;
    min-width: 200px;
}

.product-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 10px;
    border-left: 3px solid #c9a84c;
    padding-left: 14px;
}

.product-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-text ul li {
    padding: 4px 0 4px 24px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

.product-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a84c;
    font-weight: 600;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 8px 0 4px 0;
}

.product-price--bundle {
    font-size: 1.4rem;
    color: #c9a84c;
}

.product-save {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    background: #f0ebe0;
    padding: 2px 14px;
    border-radius: 20px;
    margin-left: 10px;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-actions form {
    display: inline;
    margin: 0;
}

.btn-bundle {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a1a2e;
}

.btn-bundle:hover {
    background: transparent;
    color: #c9a84c;
}

.btn-paypal {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid #1a1a2e;
    background: #1a1a2e;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    min-width: 180px;
}

.btn-paypal:hover {
    background: transparent;
    color: #1a1a2e;
}

/* ============================================
   COURSE SCHEDULE PAGE
============================================ */

.schedule-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.schedule-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.schedule-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.schedule-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

.course-type-header {
    margin: 50px 0 24px 0;
    text-align: center;
}

.course-type-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.06em;
    display: inline-block;
    padding: 0 30px 12px 30px;
    border-bottom: 2px solid #c9a84c;
    position: relative;
}

.course-type-header h4::before,
.course-type-header h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 8px;
    height: 2px;
    background: #c9a84c;
}
.course-type-header h4::before { left: -10px; }
.course-type-header h4::after { right: -10px; }

.class-card {
    display: grid;
    grid-template-columns: 180px 1fr 220px 200px;
    gap: 20px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.class-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.class-card--bundle {
    border: 1px solid #c9a84c;
    background: linear-gradient(135deg, #fcf9f2 0%, #fcfaf8 100%);
}

.class-card--bundle::before {
    content: '★ BEST VALUE ★';
    position: absolute;
    top: 16px;
    right: -28px;
    background: #c9a84c;
    color: #1a1a2e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
    z-index: 2;
}

.class-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.class-image {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    background: #e8e4e0;
    flex-shrink: 0;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.class-card:hover .class-image img {
    transform: scale(1.04);
}

.class-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 4px 0 2px 0;
}

.class-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
}

.class-card--bundle .class-price {
    color: #1a1a2e;
}

.bundle-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #c9a84c;
    color: #1a1a2e;
    padding: 2px 12px;
    border-radius: 20px;
    margin-top: 2px;
}

.class-blurb {
    font-size: 0.85rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
}

.class-blurb .more-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 2px;
    display: inline-block;
    margin-top: 6px;
    transition: color 0.3s;
    align-self: flex-start;
}

.class-blurb .more-link:hover {
    color: #1a1a2e;
    border-color: #1a1a2e;
}

.class-details {
    font-size: 0.8rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4px;
}

.detail-item {
    padding: 2px 0;
}

.detail-item strong {
    font-weight: 600;
    color: #1a1a2e;
}

.detail-time {
    color: #777;
    font-size: 0.75rem;
}

.detail-icon {
    color: #c9a84c;
    margin-right: 6px;
    font-weight: 400;
}

.spots-left {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #c9a84c;
    color: #1a1a2e;
    padding: 2px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-left: 6px;
}

.class-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
}

.btn-book,
.btn-enroll {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    max-width: 180px;
}

.btn-book:hover,
.btn-enroll:hover {
    background: transparent;
    color: #c9a84c;
}

.btn-enroll .btn-price {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: inherit;
    margin-top: 2px;
}

.btn-book {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.btn-book:hover {
    background: transparent;
    color: #1a1a2e;
}

.class-card--bundle .btn-enroll {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #c9a84c;
}

.class-card--bundle .btn-enroll:hover {
    background: transparent;
    color: #1a1a2e;
}

.no-classes {
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-weight: 300;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .class-card {
        grid-template-columns: 140px 1fr 180px;
        gap: 16px;
        padding: 20px;
    }
    
    .class-actions {
        align-items: stretch;
    }
    
    .btn-book,
    .btn-enroll {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details li {
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .container {
        padding: 0 20px;
    }

    .hero-carousel {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-slide-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .carousel-prev,
    .carousel-next {
        font-size: 1.8rem;
        padding: 6px 14px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    .video-section {
        grid-template-columns: 1fr;
    }
    .video-text {
        padding: 30px;
    }
    .video-text h3 {
        font-size: 1.6rem;
    }

    .split-section {
        grid-template-columns: 1fr;
    }
    .split-text {
        padding: 30px;
    }
    .split-text h3 {
        font-size: 1.6rem;
    }

    .quote-content blockquote {
        font-size: 1.5rem;
    }
    .quote-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .newsletter-inner h3 {
        font-size: 1.6rem;
    }

    .class-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
    
    .class-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
    
    .class-image {
        width: 80px;
        height: 80px;
    }
    
    .class-title {
        font-size: 1rem;
        flex: 0 0 100%;
    }
    
    .class-price {
        font-size: 1rem;
    }
    
    .class-blurb .more-link {
        align-self: center;
    }
    
    .class-details {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }
    
    .detail-item {
        flex: 0 0 auto;
    }
    
    .class-actions {
        align-items: center;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .btn-book,
    .btn-enroll {
        max-width: 220px;
        width: 100%;
    }
    
    .class-card--bundle::before {
        top: 8px;
        right: -20px;
        font-size: 0.45rem;
        padding: 3px 30px;
    }

    .tutorials-product-card {
        padding: 24px 20px 24px;
    }
    
    .tutorials-product-card h3 {
        font-size: 1.3rem;
    }
    
    .product-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-image {
        width: 160px;
    }
    
    .product-text h4 {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #c9a84c;
        padding-bottom: 8px;
    }
    
    .product-text ul li {
        text-align: left;
        padding-left: 28px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-actions form {
        width: 100%;
    }
    
    .product-actions .btn-primary,
    .btn-paypal {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .paypal-wrapper {
        width: 100%;
    }
    
    .product-badge {
        font-size: 0.45rem;
        padding: 3px 30px;
        right: -20px;
        top: 10px;
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-slide-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-slide-content {
        padding: 20px;
    }
    
    .carousel-dots .dot {
        width: 8px;
        height: 8px;
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.6rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .newsletter-form input {
        min-width: 100%;
    }
    .btn-submit {
        width: 100%;
    }

    .auth-card {
        padding: 30px 24px 28px;
    }
    
    .auth-header h2 {
        font-size: 1.8rem;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .btn-full {
        padding: 14px 24px;
        font-size: 0.7rem;
    }

    .schedule-section {
        padding: 30px 0 50px 0;
    }
    
    .schedule-section .section-header h2 {
        font-size: 2rem;
    }
    
    .schedule-section .section-subtitle {
        font-size: 0.65rem;
    }
    
    .intro-text {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .course-type-header h4 {
        font-size: 1.2rem;
        padding: 0 16px 8px 16px;
    }
    
    .class-card {
        padding: 16px;
        gap: 10px;
    }
    
    .class-left {
        gap: 6px 12px;
    }
    
    .class-image {
        width: 70px;
        height: 70px;
    }
    
    .class-title {
        font-size: 0.9rem;
    }
    
    .class-blurb {
        font-size: 0.8rem;
    }
    
    .class-details {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 2px;
    }
    
    .btn-book,
    .btn-enroll {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
    
    .class-card--bundle::before {
        font-size: 0.4rem;
        padding: 2px 20px;
        right: -14px;
        top: 6px;
    }

    .tutorials-section {
        padding: 30px 0 50px 0;
    }
    
    .tutorials-section .section-header h2 {
        font-size: 2rem;
    }
    
    .tutorials-product-card {
        padding: 18px 14px 20px;
    }
    
    .tutorials-product-card h3 {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-image {
        width: 130px;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-price--bundle {
        font-size: 1.1rem;
    }
    
    .product-save {
        display: block;
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }
    
    .btn-paypal {
        font-size: 0.6rem;
        padding: 10px 16px;
        min-width: auto;
    }
    
    .product-badge {
        font-size: 0.4rem;
        padding: 2px 20px;
        right: -14px;
        top: 6px;
    }

    .contact-section {
        padding: 30px 0 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 18px 14px;
    }
    
    .about-section {
        padding: 30px 0 50px 0;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-quote blockquote {
        font-size: 1.2rem;
    }
    
    .about-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 55vh;
        min-height: 300px;
        margin-bottom: 30px;
    }
    
    .hero-slide-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        font-size: 1.4rem;
        padding: 4px 10px;
    }
    
    .carousel-prev {
        left: 6px;
    }
    .carousel-next {
        right: 6px;
    }
    
    .carousel-dots {
        bottom: 16px;
        gap: 8px;
    }
    
    .carousel-dots .dot {
        width: 6px;
        height: 6px;
    }

    .auth-card {
        padding: 24px 16px 20px;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-section {
        padding: 30px 0 50px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 20px 16px;
    }
}

/* ============================================
   SHOP PAGE
============================================ */

.shop-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.shop-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.shop-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

/* Product Card - Reused from tutorials */
.tutorials-product-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 36px 40px 32px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.tutorials-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.tutorials-product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 16px 0 20px;
    flex-wrap: wrap;
}

.product-image {
    flex-shrink: 0;
    width: 180px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: block;
}

.tutorials-product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-text {
    flex: 1;
    min-width: 200px;
}

.product-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 10px;
    border-left: 3px solid #c9a84c;
    padding-left: 14px;
}

.product-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-text ul li {
    padding: 4px 0 4px 24px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

.product-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a84c;
    font-weight: 600;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 8px 0 4px 0;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-actions form {
    display: inline;
    margin: 0;
}

.paypal-wrapper {
    display: inline-flex;
    align-items: center;
}

.btn-paypal {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid #1a1a2e;
    background: #1a1a2e;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    min-width: 180px;
}

.btn-paypal:hover {
    background: transparent;
    color: #1a1a2e;
}

/* ============================================
   RESPONSIVE - SHOP
============================================ */

@media (max-width: 820px) {
    .tutorials-product-card {
        padding: 24px 20px 24px;
    }
    
    .tutorials-product-card h3 {
        font-size: 1.3rem;
    }
    
    .product-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-image {
        width: 160px;
    }
    
    .product-text h4 {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #c9a84c;
        padding-bottom: 8px;
    }
    
    .product-text ul li {
        text-align: left;
        padding-left: 28px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-actions form {
        width: 100%;
    }
    
    .product-actions .btn-primary,
    .btn-paypal {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .paypal-wrapper {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .shop-section {
        padding: 30px 0 50px 0;
    }
    
    .shop-section .section-header h2 {
        font-size: 2rem;
    }
    
    .tutorials-product-card {
        padding: 18px 14px 20px;
    }
    
    .tutorials-product-card h3 {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-image {
        width: 130px;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .btn-paypal {
        font-size: 0.6rem;
        padding: 10px 16px;
        min-width: auto;
    }
}
/* ============================================
   INTERMEDIATE COURSES PAGE
============================================ */

.intermediate-section {
    padding: 60px 0 40px 0;
    background: #fcfaf8;
}

.intermediate-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.intermediate-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.intermediate-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Layout */
.intermediate-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Modules */
.intermediate-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module {
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    border-left: 4px solid #c9a84c;
    padding: 14px 20px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.module h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.04em;
}

/* Image */
.intermediate-image {
    text-align: center;
}

.intermediate-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.intermediate-image img:hover {
    transform: scale(1.02);
}

.intermediate-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 20px 0;
    border-radius: 3px;
}

/* Course Cards */
.intermediate-course-container {
    margin-bottom: 30px;
}

.intermediate-class-card {
    display: grid;
    grid-template-columns: 180px 1fr 200px 180px;
    gap: 20px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.intermediate-class-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.intermediate-class-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    background: #f8f6f4;
    padding: 3px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.intermediate-class-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 4px 0 8px 0;
}

.intermediate-class-image img {
    width: 130px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.intermediate-class-image img:hover {
    transform: scale(1.03);
}

.intermediate-class-blurb {
    font-size: 0.85rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
}

.intermediate-class-details {
    font-size: 0.8rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4px;
}

.intermediate-class-date,
.intermediate-class-sessions,
.intermediate-class-interval {
    padding: 2px 0;
}

.intermediate-detail-icon {
    color: #c9a84c;
    margin-right: 4px;
}

.intermediate-class-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.intermediate-class-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
}

.intermediate-class-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    max-width: 180px;
    text-decoration: none;
}

.intermediate-class-btn:hover {
    background: transparent;
    color: #c9a84c;
}

/* No Classes */
.intermediate-no-classes {
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Gallery */
.intermediate-gallery {
    padding: 40px 0 80px 0;
    background: #fcfaf8;
}

.intermediate-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.intermediate-gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.intermediate-gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE - INTERMEDIATE COURSES
============================================ */

@media (max-width: 1024px) {
    .intermediate-class-card {
        grid-template-columns: 140px 1fr 160px;
        gap: 16px;
        padding: 20px;
    }
    
    .intermediate-class-actions {
        align-items: stretch;
    }
    
    .intermediate-class-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
}

@media (max-width: 820px) {
    .intermediate-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intermediate-image {
        order: -1;
    }
    
    .intermediate-image img {
        max-width: 400px;
    }
    
    .intermediate-class-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
    
    .intermediate-class-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .intermediate-class-image img {
        margin: 0 auto;
    }
    
    .intermediate-class-blurb {
        padding: 0;
        text-align: center;
    }
    
    .intermediate-class-details {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }
    
    .intermediate-class-date,
    .intermediate-class-sessions,
    .intermediate-class-interval {
        flex: 0 0 auto;
    }
    
    .intermediate-class-actions {
        align-items: center;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .intermediate-class-btn {
        max-width: 220px;
        width: 100%;
    }
    
    .intermediate-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .intermediate-section .section-header h2 {
        font-size: 2rem;
    }
    
    .intermediate-intro {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .module h3 {
        font-size: 0.8rem;
    }
    
    .intermediate-class-price {
        font-size: 1.2rem;
    }
    
    .intermediate-class-title {
        font-size: 1rem;
    }
    
    .intermediate-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .intermediate-section {
        padding: 30px 0 20px 0;
    }
    
    .intermediate-class-card {
        padding: 16px;
        gap: 10px;
    }
    
    .intermediate-class-image img {
        width: 100px;
    }
    
    .intermediate-class-blurb {
        font-size: 0.8rem;
    }
    
    .intermediate-class-details {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 2px;
    }
    
    .intermediate-class-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
    
    .intermediate-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* ============================================
   ADVANCED COURSES PAGE
============================================ */

.advanced-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.advanced-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.advanced-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.advanced-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Layout */
.advanced-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Modules */
.advanced-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module {
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    border-left: 4px solid #c9a84c;
    padding: 14px 20px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.module h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.04em;
}

/* Image */
.advanced-image {
    text-align: center;
}

.advanced-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.advanced-image img:hover {
    transform: scale(1.02);
}

.advanced-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 20px 0;
    border-radius: 3px;
}

/* Course Cards */
.advanced-course-container {
    margin-bottom: 30px;
}

.advanced-class-card {
    display: grid;
    grid-template-columns: 200px 1fr 200px 180px;
    gap: 20px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.advanced-class-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.advanced-class-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    background: #f8f6f4;
    padding: 3px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.advanced-class-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 4px 0 8px 0;
}

.advanced-class-image-price {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.advanced-class-image img {
    width: 100px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.advanced-class-image img:hover {
    transform: scale(1.03);
}

.advanced-class-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
}

.advanced-class-blurb {
    font-size: 0.85rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
}

.advanced-class-details {
    font-size: 0.8rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4px;
}

.advanced-class-date,
.advanced-class-sessions,
.advanced-class-interval {
    padding: 2px 0;
}

.advanced-detail-icon {
    color: #c9a84c;
    margin-right: 4px;
}

.advanced-class-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.advanced-class-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    max-width: 160px;
    text-decoration: none;
}

.advanced-class-btn:hover {
    background: transparent;
    color: #c9a84c;
}

.advanced-class-btn-start {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.advanced-class-btn-start:hover {
    background: transparent;
    color: #1a1a2e;
}

/* No Classes */
.advanced-no-classes {
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-weight: 300;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE - ADVANCED COURSES
============================================ */

@media (max-width: 1024px) {
    .advanced-class-card {
        grid-template-columns: 160px 1fr 160px;
        gap: 16px;
        padding: 20px;
    }
    
    .advanced-class-actions {
        align-items: stretch;
    }
    
    .advanced-class-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
}

@media (max-width: 820px) {
    .advanced-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advanced-image {
        order: -1;
    }
    
    .advanced-image img {
        max-width: 300px;
    }
    
    .advanced-class-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
    
    .advanced-class-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .advanced-class-image-price {
        justify-content: center;
    }
    
    .advanced-class-image img {
        margin: 0 auto;
    }
    
    .advanced-class-blurb {
        padding: 0;
        text-align: center;
    }
    
    .advanced-class-details {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }
    
    .advanced-class-date,
    .advanced-class-sessions,
    .advanced-class-interval {
        flex: 0 0 auto;
    }
    
    .advanced-class-actions {
        align-items: center;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .advanced-class-btn {
        max-width: 220px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .advanced-section .section-header h2 {
        font-size: 2rem;
    }
    
    .advanced-intro {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .module h3 {
        font-size: 0.8rem;
    }
    
    .advanced-class-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .advanced-section {
        padding: 30px 0 50px 0;
    }
    
    .advanced-class-card {
        padding: 16px;
        gap: 10px;
    }
    
    .advanced-class-image img {
        width: 80px;
    }
    
    .advanced-class-price {
        font-size: 1.1rem;
    }
    
    .advanced-class-blurb {
        font-size: 0.8rem;
    }
    
    .advanced-class-details {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 2px;
    }
    
    .advanced-class-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
}

/* ============================================
   BEGINNER COURSES PAGE
============================================ */

.beginner-section {
    padding: 60px 0 40px 0;
    background: #fcfaf8;
}

.beginner-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.beginner-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.beginner-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Layout */
.beginner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Modules */
.beginner-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module {
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    border-left: 4px solid #c9a84c;
    padding: 14px 20px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.module h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.04em;
}

/* Image */
.beginner-image {
    text-align: center;
}

.beginner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.beginner-image img:hover {
    transform: scale(1.02);
}

.beginner-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 20px 0;
    border-radius: 3px;
}

/* Course Cards */
.beginner-class-card {
    display: grid;
    grid-template-columns: 180px 1fr 200px 180px;
    gap: 20px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.beginner-class-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

/* Bundle Card */
.beginner-class-card--bundle {
    border: 1px solid #c9a84c;
    background: linear-gradient(135deg, #fcf9f2 0%, #fcfaf8 100%);
}

.beginner-class-card--bundle .product-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    background: #c9a84c;
    color: #1a1a2e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
    z-index: 2;
}

.beginner-class-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    background: #f8f6f4;
    padding: 3px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.beginner-class-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 4px 0 8px 0;
}

.beginner-class-image img {
    width: 130px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.beginner-class-image img:hover {
    transform: scale(1.03);
}

.beginner-class-blurb {
    font-size: 0.85rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
}

.beginner-bundle-includes {
    margin-top: 10px;
    font-size: 0.85rem;
}

.beginner-bundle-includes ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.beginner-bundle-includes ul li {
    padding: 2px 0 2px 20px;
    position: relative;
    font-size: 0.8rem;
    color: #555;
}

.beginner-bundle-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a84c;
}

.beginner-class-details {
    font-size: 0.8rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4px;
}

.beginner-class-date,
.beginner-class-sessions,
.beginner-class-interval {
    padding: 2px 0;
}

.beginner-detail-icon {
    color: #c9a84c;
    margin-right: 4px;
}

.beginner-class-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.beginner-class-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
}

.beginner-class-price--bundle {
    color: #1a1a2e;
}

.beginner-price-compare {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #999;
    font-weight: 300;
    margin-left: 6px;
}

.beginner-price-save {
    font-size: 0.75rem;
    font-weight: 700;
    background: #c9a84c;
    color: #1a1a2e;
    padding: 2px 12px;
    border-radius: 20px;
    margin-left: 6px;
}

.beginner-class-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    max-width: 180px;
    text-decoration: none;
}

.beginner-class-btn:hover {
    background: transparent;
    color: #c9a84c;
}

.beginner-class-btn--bundle {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #c9a84c;
}

.beginner-class-btn--bundle:hover {
    background: transparent;
    color: #1a1a2e;
}

/* No Classes */
.beginner-no-classes {
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Gallery */
.beginner-gallery {
    padding: 40px 0 80px 0;
    background: #fcfaf8;
}

.beginner-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.beginner-gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.beginner-gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE - BEGINNER COURSES
============================================ */

@media (max-width: 1024px) {
    .beginner-class-card {
        grid-template-columns: 140px 1fr 160px;
        gap: 16px;
        padding: 20px;
    }
    
    .beginner-class-actions {
        align-items: stretch;
    }
    
    .beginner-class-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
}

@media (max-width: 820px) {
    .beginner-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .beginner-image {
        order: -1;
    }
    
    .beginner-image img {
        max-width: 300px;
    }
    
    .beginner-class-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
    
    .beginner-class-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .beginner-class-image img {
        margin: 0 auto;
    }
    
    .beginner-class-blurb {
        padding: 0;
        text-align: center;
    }
    
    .beginner-bundle-includes ul li {
        text-align: left;
    }
    
    .beginner-class-details {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }
    
    .beginner-class-date,
    .beginner-class-sessions,
    .beginner-class-interval {
        flex: 0 0 auto;
    }
    
    .beginner-class-actions {
        align-items: center;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .beginner-class-btn {
        max-width: 220px;
        width: 100%;
    }
    
    .beginner-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .beginner-section .section-header h2 {
        font-size: 2rem;
    }
    
    .beginner-intro {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .module h3 {
        font-size: 0.8rem;
    }
    
    .beginner-class-price {
        font-size: 1.2rem;
    }
    
    .beginner-class-title {
        font-size: 1rem;
    }
    
    .beginner-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .beginner-section {
        padding: 30px 0 20px 0;
    }
    
    .beginner-class-card {
        padding: 16px;
        gap: 10px;
    }
    
    .beginner-class-image img {
        width: 100px;
    }
    
    .beginner-class-blurb {
        font-size: 0.8rem;
    }
    
    .beginner-class-details {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 2px;
    }
    
    .beginner-class-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
    
    .beginner-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}
/* ============================================
   VIDEO - PORTRAIT 1080x1920
============================================ */

.video-section--portrait {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    padding: 40px 60px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
    margin: 60px 0;
}

.video-portrait-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-portrait {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 9 / 16;
    background: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.video-portrait::-webkit-media-controls {
    border-radius: 0 0 12px 12px;
}

/* Video text */
.video-section--portrait .video-text {
    padding: 0;
    background: transparent;
}

.video-section--portrait .video-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 8px;
    display: block;
}

.video-section--portrait .video-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.video-section--portrait .video-text p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE - VIDEO PORTRAIT
============================================ */

@media (max-width: 1024px) {
    .video-section--portrait {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 30px 40px;
    }
    
    .video-portrait {
        max-width: 240px;
    }
}

@media (max-width: 820px) {
    .video-section--portrait {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }
    
    .video-portrait {
        max-width: 260px;
    }
    
    .video-section--portrait .video-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .video-section--portrait {
        padding: 20px;
        margin: 30px 0;
    }
    
    .video-portrait {
        max-width: 200px;
    }
    
    .video-section--portrait .video-text h3 {
        font-size: 1.3rem;
    }
    
    .video-section--portrait .video-text p {
        font-size: 0.8rem;
    }
}

/* ============================================
   FREE TOOL GUIDE PAGE
============================================ */

.toolguide-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.toolguide-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.toolguide-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.toolguide-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Box */
.toolguide-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    padding: 50px 45px 40px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

.toolguide-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 8px;
}

.toolguide-subtitle {
    text-align: center;
    color: #777;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 24px;
}

/* List */
.toolguide-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto 28px auto;
}

.toolguide-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

.toolguide-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a84c;
    font-weight: 600;
}

/* Form */
.toolguide-form {
    max-width: 450px;
    margin: 0 auto;
}

.toolguide-form-group {
    margin-bottom: 18px;
}

.toolguide-form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.toolguide-form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a2e;
    background: #fcfaf8;
    transition: all 0.3s ease;
}

.toolguide-form-group input:focus {
    outline: none;
    border-color: #c9a84c;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.toolguide-form-group input::placeholder {
    color: #bbb;
    font-weight: 300;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 16px 40px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    border-radius: 0;
}

/* Error & Success */
.toolguide-error {
    background: #fff5f5;
    border-left: 3px solid #c62828;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #c62828;
}

.toolguide-success {
    text-align: center;
    padding: 20px 0;
}

.toolguide-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #2e7d32;
    margin-bottom: 12px;
}

.toolguide-success p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 16px;
}

.toolguide-success-cta {
    font-weight: 600;
    color: #1a1a2e;
}

/* Divider */
.toolguide-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 24px 0;
}

/* Next Section */
.toolguide-next {
    text-align: center;
}

.toolguide-next-title {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.toolguide-next-link {
    color: #c9a84c;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.toolguide-next-link:hover {
    color: #1a1a2e;
}

/* Testimonials */
.toolguide-testimonials {
    background: #f8f6f4;
    border-radius: 4px;
    padding: 40px 35px;
}

.toolguide-testimonials h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 24px;
}

.toolguide-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.toolguide-testimonial-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toolguide-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.toolguide-testimonial-text {
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.toolguide-testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 12px;
}

.toolguide-testimonial-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.85rem;
}

.toolguide-testimonial-course {
    font-size: 0.75rem;
    color: #999;
    font-weight: 300;
}

.toolguide-testimonial-cta {
    text-align: center;
    margin-top: 24px;
}

/* CTA Banner */
.toolguide-cta {
    background: #1a1a2e;
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    margin-top: 40px;
}

.toolguide-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #c9a84c;
    margin-bottom: 12px;
}

.toolguide-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.toolguide-cta small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.btn-gold {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a1a2e;
}

.btn-gold:hover {
    background: transparent;
    color: #c9a84c;
}

/* ============================================
   RESPONSIVE - TOOL GUIDE
============================================ */

@media (max-width: 820px) {
    .toolguide-box {
        padding: 30px 24px;
    }
    
    .toolguide-box h3 {
        font-size: 1.4rem;
    }
    
    .toolguide-testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .toolguide-testimonials {
        padding: 24px 18px;
    }
    
    .toolguide-cta {
        padding: 30px 20px;
    }
    
    .toolguide-cta h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .toolguide-section {
        padding: 30px 0 50px 0;
    }
    
    .toolguide-section .section-header h2 {
        font-size: 2rem;
    }
    
    .toolguide-box {
        padding: 20px 16px;
    }
    
    .toolguide-box h3 {
        font-size: 1.2rem;
    }
    
    .toolguide-form-group input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .btn-full {
        padding: 14px 24px;
        font-size: 0.7rem;
    }
    
    .toolguide-success h4 {
        font-size: 1.3rem;
    }
    
    .toolguide-cta h4 {
        font-size: 1.2rem;
    }
}
/* ============================================
   PAINTING COURSES PAGE
============================================ */

.painting-course-section {
    padding: 60px 0 40px 0;
    background: #fcfaf8;
}

.painting-course-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.painting-course-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.painting-course-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Layout */
.painting-course-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Modules */
.painting-course-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.painting-course-modules .module {
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    border-left: 4px solid #c9a84c;
    padding: 14px 20px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.painting-course-modules .module:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.painting-course-modules .module h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.04em;
}

/* Image */
.painting-course-image {
    text-align: center;
}

.painting-course-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.painting-course-image img:hover {
    transform: scale(1.02);
}

.painting-course-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 20px 0;
    border-radius: 3px;
}

/* Course Card */
.painting-course-container {
    margin-bottom: 30px;
}

.painting-course-card {
    display: grid;
    grid-template-columns: 180px 1fr 200px 180px;
    gap: 20px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.painting-course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

/* Left Column */
.painting-course-left {
    display: flex;
    flex-direction: column;
}

.painting-course-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    background: #f8f6f4;
    padding: 3px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
    align-self: flex-start;
}

.painting-course-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 10px;
}

.painting-course-image-wrap img {
    width: 130px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.painting-course-image-wrap img:hover {
    transform: scale(1.03);
}

/* Blurb */
.painting-course-blurb {
    font-size: 0.85rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
}

/* Details */
.painting-course-details {
    font-size: 0.8rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4px;
}

.painting-course-detail {
    padding: 2px 0;
}

.painting-course-detail-icon {
    color: #c9a84c;
    margin-right: 4px;
}

/* Actions */
.painting-course-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.painting-course-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
}

.painting-course-stripe-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #1a1a2e;
    background: #1a1a2e;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    max-width: 180px;
    text-decoration: none;
}

.painting-course-stripe-btn:hover {
    background: transparent;
    color: #1a1a2e;
}

/* No Classes */
.painting-course-no-classes {
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Gallery */
.painting-course-gallery {
    padding: 40px 0 80px 0;
    background: #fcfaf8;
}

.painting-course-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.painting-course-gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.painting-course-gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE - PAINTING COURSES
============================================ */

@media (max-width: 1024px) {
    .painting-course-card {
        grid-template-columns: 140px 1fr 160px;
        gap: 16px;
        padding: 20px;
    }
    
    .painting-course-actions {
        align-items: stretch;
    }
    
    .painting-course-stripe-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
}

@media (max-width: 820px) {
    .painting-course-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .painting-course-image {
        order: -1;
    }
    
    .painting-course-image img {
        max-width: 300px;
    }
    
    .painting-course-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
    
    .painting-course-left {
        align-items: center;
    }
    
    .painting-course-badge {
        align-self: center;
    }
    
    .painting-course-image-wrap img {
        margin: 0 auto;
    }
    
    .painting-course-blurb {
        padding: 0;
        text-align: center;
    }
    
    .painting-course-details {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }
    
    .painting-course-detail {
        flex: 0 0 auto;
    }
    
    .painting-course-actions {
        align-items: center;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .painting-course-stripe-btn {
        max-width: 220px;
        width: 100%;
    }
    
    .painting-course-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .painting-course-section .section-header h2 {
        font-size: 2rem;
    }
    
    .painting-course-intro {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .painting-course-modules .module h3 {
        font-size: 0.8rem;
    }
    
    .painting-course-price {
        font-size: 1.4rem;
    }
    
    .painting-course-title {
        font-size: 1rem;
    }
    
    .painting-course-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .painting-course-section {
        padding: 30px 0 20px 0;
    }
    
    .painting-course-card {
        padding: 16px;
        gap: 10px;
    }
    
    .painting-course-image-wrap img {
        width: 100px;
    }
    
    .painting-course-blurb {
        font-size: 0.8rem;
    }
    
    .painting-course-details {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 2px;
    }
    
    .painting-course-stripe-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 0.6rem;
    }
    
    .painting-course-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* ============================================
   AUTH SUCCESS MESSAGE
============================================ */

.auth-success {
    background: #f0f7f0;
    border-left: 3px solid #2e7d32;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #2e7d32;
}

/* Auth footer back link */
.auth-footer a {
    font-weight: 500;
    color: #c9a84c;
    transition: color 0.3s;
    text-decoration: none;
}

.auth-footer a:hover {
    color: #1a1a2e;
}

/* ============================================
   PROFILE PAGE
============================================ */

.profile-details {
    margin: 10px 0 24px 0;
}

.profile-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.profile-detail:last-of-type {
    border-bottom: none;
}

.profile-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.profile-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a2e;
}

.profile-role {
    background: #f8f6f4;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.profile-status-active {
    color: #2e7d32;
}

.profile-status-inactive {
    color: #c62828;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-secondary-profile {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: #888;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary-profile:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

.profile-logout-link {
    font-weight: 500;
    color: #c62828;
    transition: color 0.3s;
    text-decoration: none;
}

.profile-logout-link:hover {
    color: #b71c1c;
}

/* ============================================
   RESPONSIVE - PROFILE
============================================ */

@media (max-width: 600px) {
    .profile-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }
    
    .profile-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .profile-actions .btn-primary,
    .btn-secondary-profile {
        text-align: center;
        width: 100%;
    }
}

/* ============================================
   COURSE PAGE
============================================ */

.course-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.course-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.course-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

.course-description {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: #555;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Modules */
.course-modules {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.course-modules-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.course-module {
    background: #ffffff;
    border-radius: 4px;
    padding: 24px 30px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-module:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.course-module h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Lessons */
.course-lessons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-lessons li {
    margin-bottom: 6px;
}

.course-lesson-form {
    display: inline;
}

.course-lesson-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #555;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.course-lesson-btn:hover {
    color: #c9a84c;
}

.course-lesson-btn:hover .course-lesson-arrow {
    transform: translateX(4px);
}

.course-lesson-arrow {
    color: #c9a84c;
    transition: transform 0.3s ease;
}

/* Zoom Classes */
.course-zoom {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.course-zoom-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.course-zoom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-zoom-list li {
    margin-bottom: 8px;
}

.course-zoom-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #555;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-zoom-link:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    transform: translateX(4px);
}

.course-zoom-arrow {
    color: #c9a84c;
}

/* No content */
.course-no-content {
    color: #999;
    font-weight: 300;
    font-size: 0.95rem;
    text-align: center;
    padding: 20px 0;
}

/* Back button */
.course-back {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.btn-secondary-profile {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: #888;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary-profile:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* ============================================
   RESPONSIVE - COURSE
============================================ */

@media (max-width: 768px) {
    .course-section .section-header h2 {
        font-size: 2rem;
    }
    
    .course-module {
        padding: 18px 20px;
    }
    
    .course-module h4 {
        font-size: 1.05rem;
    }
    
    .course-lesson-btn {
        font-size: 0.85rem;
    }
    
    .course-zoom-link {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .course-section {
        padding: 30px 0 50px 0;
    }
    
    .course-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .course-module {
        padding: 14px 16px;
    }
    
    .course-module h4 {
        font-size: 0.95rem;
    }
    
    .course-lesson-btn {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .course-zoom-link {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ============================================
   CLASS DATE SELECTION PAGE
============================================ */

.class-date-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.class-date-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.class-date-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

/* Requirements */
.class-date-requirements {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.class-date-requirement-box {
    background: #ffffff;
    border-radius: 4px;
    padding: 30px 35px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.class-date-requirement-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.class-date-requirement-box ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.class-date-requirement-box ul li {
    padding: 4px 0 4px 24px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

.class-date-requirement-box ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c9a84c;
}

.class-date-requirement-box p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    margin: 6px 0;
}

.class-date-download-link {
    color: #c9a84c;
    text-decoration: none;
    border-bottom: 1px solid #c9a84c;
    transition: color 0.3s;
}

.class-date-download-link:hover {
    color: #1a1a2e;
}

.class-date-supply-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.class-date-supply-btn:hover {
    background: transparent;
    color: #c9a84c;
}

/* Messages */
.class-date-success {
    background: #f0f7f0;
    border-left: 3px solid #2e7d32;
    padding: 14px 20px;
    margin: 20px auto;
    max-width: 800px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #2e7d32;
}

.class-date-error {
    background: #fff5f5;
    border-left: 3px solid #c62828;
    padding: 14px 20px;
    margin: 20px auto;
    max-width: 800px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #c62828;
}

/* Registered */
.class-date-registered {
    max-width: 800px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 4px;
    padding: 30px 35px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.class-date-registered p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    margin: 8px 0;
}

.class-date-registered strong {
    color: #1a1a2e;
}

.class-date-registered a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.3s;
}

.class-date-registered a:hover {
    color: #1a1a2e;
}

.class-date-unregister-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 28px;
    border: 1px solid #c62828;
    background: transparent;
    color: #c62828;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    margin-top: 8px;
}

.class-date-unregister-btn:hover {
    background: #c62828;
    color: #fff;
}

/* Select Form */
.class-date-select {
    max-width: 800px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 4px;
    padding: 30px 35px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.class-date-select h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.class-date-select-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.class-date-select-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #555;
}

.class-date-select-dropdown {
    padding: 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a2e;
    background: #fcfaf8;
    min-width: 200px;
}

.class-date-select-dropdown:focus {
    outline: none;
    border-color: #c9a84c;
}

.class-date-register-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 36px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.class-date-register-btn:hover {
    background: transparent;
    color: #c9a84c;
}

/* Back */
.class-date-back {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
}

/* ============================================
   RESPONSIVE - CLASS DATE SELECTION
============================================ */

@media (max-width: 768px) {
    .class-date-section .section-header h2 {
        font-size: 2rem;
    }
    
    .class-date-requirement-box {
        padding: 20px 24px;
    }
    
    .class-date-registered,
    .class-date-select {
        padding: 20px 24px;
    }
    
    .class-date-select-group {
        flex-direction: column;
    }
    
    .class-date-select-dropdown {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .class-date-section {
        padding: 30px 0 50px 0;
    }
    
    .class-date-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .class-date-requirement-box {
        padding: 16px 18px;
    }
    
    .class-date-requirement-box h4 {
        font-size: 1.1rem;
    }
    
    .class-date-registered,
    .class-date-select {
        padding: 16px 18px;
    }
    
    .class-date-select h3 {
        font-size: 1.2rem;
    }
    
    .class-date-register-btn,
    .class-date-unregister-btn {
        width: 100%;
    }
}

/* ============================================
   PAINT TOOLS PAGE
============================================ */

.paint-tools-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.paint-tools-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.paint-tools-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

/* Print Button */
.paint-tools-print {
    text-align: center;
    margin-bottom: 30px;
}

.paint-tools-print-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 28px;
    border: none;
    background: #1a1a2e;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.paint-tools-print-btn:hover {
    background: #c9a84c;
    color: #1a1a2e;
}

@media print {
    .paint-tools-print-btn {
        display: none;
    }
    .paint-tools-print {
        display: none;
    }
}

/* Notes */
.paint-tools-notes {
    max-width: 800px;
    margin: 0 auto 30px auto;
    background: #f8f6f4;
    border-left: 4px solid #c9a84c;
    padding: 20px 28px;
    border-radius: 0;
}

.paint-tools-notes h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.paint-tools-notes p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.paint-tools-notes p:last-child {
    margin-bottom: 0;
}

/* Supply List */
.paint-tools-list {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.paint-tools-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
}

.paint-tools-table-wrapper {
    overflow-x: auto;
}

.paint-tools-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.paint-tools-table th {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a2e;
    background: #f8f6f4;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid #c9a84c;
}

.paint-tools-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    vertical-align: top;
    line-height: 1.7;
}

.paint-tools-table tr:last-child td {
    border-bottom: none;
}

.paint-tools-table .paint-tools-tool-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1a2e;
}

.paint-tools-img {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.paint-tools-img:hover {
    transform: scale(1.05);
}

.paint-tools-table ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.paint-tools-table ul li {
    padding: 2px 0 2px 20px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

.paint-tools-table ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c9a84c;
}

.paint-tools-supplier {
    color: #c9a84c;
}

/* Back */
.paint-tools-back {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   RESPONSIVE - PAINT TOOLS
============================================ */

@media (max-width: 768px) {
    .paint-tools-section .section-header h2 {
        font-size: 2rem;
    }
    
    .paint-tools-table thead {
        display: none;
    }

    .paint-tools-table,
    .paint-tools-table tbody,
    .paint-tools-table tr,
    .paint-tools-table td {
        display: block;
        width: 100%;
    }

    .paint-tools-table tr {
        margin-bottom: 20px;
        border-bottom: 2px solid #c9a84c;
        padding-bottom: 10px;
    }

    .paint-tools-table td {
        text-align: left;
        padding: 6px 12px;
        border-bottom: none;
    }

    .paint-tools-table td::before {
        content: attr(data-label);
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #999;
        margin-bottom: 4px;
    }

    .paint-tools-table .paint-tools-tool-name {
        font-size: 1.1rem;
    }

    .paint-tools-img {
        max-width: 80px;
    }

    .paint-tools-notes {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .paint-tools-section {
        padding: 30px 0 50px 0;
    }
    
    .paint-tools-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .paint-tools-list h3 {
        font-size: 1.4rem;
    }
    
    .paint-tools-table td {
        padding: 4px 10px;
    }
    
    .paint-tools-img {
        max-width: 60px;
    }
}

/* ============================================
   TOOLS LIST PAGE
============================================ */

.tools-section {
    padding: 60px 0 80px 0;
    background: #fcfaf8;
}

.tools-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 6px;
}

.tools-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
}

/* Print Button */
.tools-print {
    text-align: center;
    margin-bottom: 30px;
}

.tools-print-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 28px;
    border: none;
    background: #1a1a2e;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tools-print-btn:hover {
    background: #c9a84c;
    color: #1a1a2e;
}

@media print {
    .tools-print-btn {
        display: none;
    }
    .tools-print {
        display: none;
    }
    .tools-actions {
        display: none !important;
    }
}

/* Tools List */
.tools-list {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.tools-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
}

.tools-table-wrapper {
    overflow-x: auto;
}

.tools-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.tools-table th {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a2e;
    background: #f8f6f4;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid #c9a84c;
}

.tools-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    vertical-align: top;
    line-height: 1.7;
}

.tools-table tr:last-child td {
    border-bottom: none;
}

.tools-tool-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1a2e;
}

.tools-img {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.tools-img:hover {
    transform: scale(1.05);
}

.tools-no-image {
    color: #999;
    font-style: italic;
    font-size: 0.85rem;
}

.tools-no-results {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

/* Actions */
.tools-actions {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tools-start-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 32px;
    border: 1px solid #c9a84c;
    background: #c9a84c;
    color: #1a1a2e;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.tools-start-btn:hover {
    background: transparent;
    color: #c9a84c;
}

.tools-back-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: #888;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.tools-back-btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* Error */
.tools-error {
    text-align: center;
    padding: 60px 0;
    color: #c62828;
    font-weight: 300;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE - TOOLS LIST
============================================ */

@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }
    
    .tools-table thead {
        display: none;
    }

    .tools-table,
    .tools-table tbody,
    .tools-table tr,
    .tools-table td {
        display: block;
        width: 100%;
    }

    .tools-table tr {
        margin-bottom: 20px;
        border-bottom: 2px solid #c9a84c;
        padding-bottom: 10px;
    }

    .tools-table td {
        text-align: left;
        padding: 6px 12px;
        border-bottom: none;
    }

    .tools-table td::before {
        content: attr(data-label);
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #999;
        margin-bottom: 4px;
    }

    .tools-tool-name {
        font-size: 1.1rem;
    }

    .tools-img {
        max-width: 80px;
    }
    
    .tools-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-start-btn,
    .tools-back-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tools-section {
        padding: 30px 0 50px 0;
    }
    
    .tools-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .tools-list h3 {
        font-size: 1.4rem;
    }
    
    .tools-table td {
        padding: 4px 10px;
    }
    
    .tools-img {
        max-width: 60px;
    }
}