:root {
    --dusty-rose: #D8ACA5;
    --dusty-rose-light: #eedddb;
    --dusty-rose-dark: #b88a82;
    --sage-green: #B2C3B5;
    --sage-green-light: #e4ece6;
    --warm-cream: #FBF8F1;
    --soft-teal: #85A5A1;
    --terracotta: #CD7B68;
    --text-dark: #3F3934;
    --text-light: #7A726A;
    --bg-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--warm-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    color: var(--text-dark);
}

h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-md { max-width: 800px; }
.max-w-sm { max-width: 600px; }
.text-center { text-align: center; }
.text-large { font-size: 1.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.min-h-screen { min-height: 100vh; }
.justify-center { justify-content: center !important; }

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.header {
    background-color: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--terracotta);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 1rem;
}

.main-nav a:hover {
    color: var(--terracotta);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.section {
    padding: 6rem 0;
}

.bg-sage { background-color: var(--sage-green-light); }
.bg-rose { background-color: var(--dusty-rose-light); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.align-center { align-items: center; }

.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(to bottom, var(--bg-white), var(--warm-cream));
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(63, 57, 52, 0.08);
}

.card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border-top: 3px solid var(--dusty-rose);
}

.card p {
    color: var(--text-light);
}

.program-images {
    position: relative;
}

.img-float {
    width: 75%;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.img-float.offset {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 60%;
    border: 8px solid var(--sage-green-light);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-size: 1.2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--soft-teal);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
}

.format-item p {
    color: var(--text-light);
}

.instructor-image img {
    width: 100%;
    border-radius: 120px 120px 8px 8px;
    object-fit: cover;
}

.instructor-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-container {
    max-width: 800px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--terracotta);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.form-container {
    max-width: 500px;
}

.lead-form {
    text-align: left;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--soft-teal);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.legal-page h1 { font-size: 2.5rem; margin-bottom: 2rem; }
.legal-page h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-page p { margin-bottom: 1rem; color: var(--text-light); }

.success-icon {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-info h3 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.footer-info p, .footer-legal p {
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--warm-cream);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@media (min-width: 768px) {
    .grid-2, .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .hero { padding: 2rem 0 4rem; text-align: center; }
    .hero p { max-width: 100%; margin: 0 auto 2rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }

    .mobile-toggle { display: block; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }

    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .program-images { display: none; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
