:root {
    /* Core Brand Colors - Reduced to 4 */
    --primary: #8B7355; /* Warm Brown */
    --secondary: #B05A30; /* Terracota */
    --neutral-dark: #2C2C2C; /* Almost Black */
    --neutral-light: #FFFFFF; /* White */

    /* Tints and Shades */
    --primary-light: #B8A088;
    --primary-dark: #6B5842;
    --secondary-light: #A5C896;
    --secondary-dark: #5F8A4E;
    --neutral-mid: #6B6B6B;
    --neutral-bg: #FAF8F5;

    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Typography Scale */
    --text-xs: 0.875rem; /* 14px */
    --text-sm: 1rem; /* 16px */
    --text-base: 1.125rem; /* 18px */
    --text-lg: 1.5rem; /* 24px */
    --text-xl: 1.75rem; /* 28px */
    --text-2xl: 2.25rem; /* 36px */
    --text-3xl: 3rem; /* 48px */
    --text-4xl: 4rem; /* 64px */

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(.25, .8, .25, 1);

    .pricing-note {
        font-size: var(--text-base);
    }

    .price-highlight {
        font-size: var(--text-sm);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-3xl);
}

h2 {
    font-size: var(--text-2xl);
}

h3 {
    font-size: var(--text-xl);
}

h4 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--neutral-dark);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        gap: var(--space-sm);
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: var(--space-sm);
        font-size: var(--text-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(139, 115, 85, 0.3), rgba(139, 115, 85, 0.3)),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 60px;
}

.hero-content h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.hero-content .subtitle {
    font-size: var(--text-xl);
    font-weight: 300;
    margin-bottom: var(--space-sm);
    font-family: 'Playfair Display', serif;
}

.hero-content .dates {
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.hero-content .instructors {
    font-size: var(--text-base);
    font-weight: 400;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Styling */
.section-padding {
    padding: var(--space-3xl) 0;
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2xl);
    text-align: center;
    color: var(--primary);
}

/* Introduction Section */
.intro-section {
    background-color: var(--neutral-bg);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--neutral-mid);
}

.intro-content .lead {
    font-size: var(--text-lg);
    color: var(--neutral-dark);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.season-highlight {
    background: var(--neutral-light);
    padding: var(--space-xl);
    border-radius: 15px;
    margin-top: var(--space-2xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.season-highlight h3 {
    color: var(--primary);
    margin-bottom: var(--space-lg);
    font-size: var(--text-2xl);
}


/* Modern What's Included Section */
#included {
    position: relative;
    overflow: hidden;
}

#included::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.included-item {
    background: var(--neutral-light);
    padding: var(--space-xl);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.included-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 115, 85, 0.03) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.included-item:hover::before {
    opacity: 1;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

/* Grid layout for different sized items */
.included-item.featured {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--neutral-bg) 0%, rgba(139, 115, 85, 0.05) 100%);
}

.included-item:nth-child(2),
.included-item:nth-child(3) {
    grid-column: span 3;
}

.included-item:nth-child(4),
.included-item:nth-child(5),
.included-item:nth-child(6) {
    grid-column: span 2;
}

.item-number {
    font-size: 4rem;
    font-weight: 300;
    color: transparent;
    line-height: 1;
    margin-bottom: var(--space-md);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.3;
}

.included-item h3 {
    font-size: var(--text-lg);
    color: var(--neutral-dark);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.included-item p {
    color: var(--neutral-mid);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.item-details {
    margin-top: var(--space-md);
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.item-details span {
    font-size: var(--text-xs);
    color: var(--primary);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(139, 115, 85, 0.1);
    border-radius: 20px;
}

/* Highlight Box */
.included-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--neutral-light);
    border-radius: 20px;
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.3);
}

.highlight-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.included-highlight h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--neutral-light);
}

.included-highlight p {
    font-size: var(--text-base);
    line-height: 1.8;
    opacity: 0.95;
}

.highlight-pattern {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.05) 40.5%, transparent 41%, transparent 100%);
    background-size: 30px 30px;
    transform: rotate(15deg);
    pointer-events: none;
    opacity: 0.5;
}

/* Responsive tablet */
@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .included-item.featured {
        grid-column: span 4;
    }

    .included-item:nth-child(2),
    .included-item:nth-child(3) {
        grid-column: span 2;
    }

    .included-item:nth-child(4),
    .included-item:nth-child(5),
    .included-item:nth-child(6) {
        grid-column: span 2;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #included::before {
        width: 200px;
        height: 200px;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .included-item,
    .included-item.featured,
    .included-item:nth-child(2),
    .included-item:nth-child(3),
    .included-item:nth-child(4),
    .included-item:nth-child(5),
    .included-item:nth-child(6) {
        grid-column: span 1;
    }

    .included-item {
        padding: var(--space-lg);
    }

    .item-number {
        font-size: 3rem;
    }

    .included-highlight {
        padding: var(--space-xl);
    }

    .highlight-pattern {
        display: none;
    }
}

/* Minimalist Instructors Styles */
.instructors-section {
    background: var(--neutral-bg);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.instructor-card {
    background: var(--neutral-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
    padding: var(--space-md);
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.instructor-photo {
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.instructor-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.instructor-bio {
    font-size: var(--text-sm);
    color: var(--neutral-mid);
    line-height: 1.6;
}

@media (max-width: 576px) {
    .instructors-grid {
        gap: var(--space-md);
    }

    .instructor-card {
        padding: var(--space-sm);
    }

    .instructor-bio {
        font-size: var(--text-xs);
    }
}


/* Gallery Section */
.gallery-section {
    background-color: var(--neutral-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; /* var(--space-md) */
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    background-color: #FAF8F5; /* var(--neutral-bg) */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.large {
    grid-column: span 2;
    height: 400px;
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .gallery-item,
    .gallery-item.large {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .gallery-item:nth-child(odd) {
        aspect-ratio: 16/9;
    }

    .gallery-item:nth-child(3n) {
        aspect-ratio: 1/1;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
    animation: scaleIn 0.3s cubic-bezier(.25, .8, .25, 1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--neutral-light);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--secondary-light);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Desktop & tablet */
.pricing-section {
    background-color: var(--neutral-light);
}

.pricing-note {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--primary);
    margin-bottom: var(--space-2xl);
    font-weight: 600;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--neutral-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%);
}

.pricing-table-wrapper.scrolled {
    mask-image: none;
}

.pricing-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--primary);
    color: var(--neutral-light);
    padding: var(--space-lg);
    font-weight: 600;
    font-size: var(--text-base);
    text-align: left;
}

.pricing-table td {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.pricing-table tr:hover {
    background-color: rgba(139, 115, 85, 0.05);
}

.price-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* 1) Dim and strike-through the entire row */
.pricing-table tr.sold-out {
    opacity: 0.6;                       /* de‑emphasize */
}
.pricing-table tr.sold-out td {
    text-decoration: line-through;     /* scratch‑out text */
}

/* 2) Override price‑highlight color so it doesn’t pop */
.pricing-table tr.sold-out .price-highlight {
    color: inherit;
    font-weight: normal;
}

/* 3) Position a “Sold Out” badge over the first cell */
.pricing-table tr.sold-out td:first-child {
    position: relative;                /* establish containing block */
}
.pricing-table tr.sold-out td:first-child::after {
    content: "Sold Out";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: var(--primary);        /* use your theme’s primary color */
    color: var(--neutral-light);
    padding: 0.2em 0.5em;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 3px;
    pointer-events: none;              /* so it doesn’t block clicks */
}


/* CTA Section */
.cta-section {
    padding: 96px 0; /* var(--space-3xl) */
    background: linear-gradient(135deg, #FAF8F5 0%, rgba(139, 115, 85, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(176, 90, 48, 0.08) 0%, transparent 70%);
    animation: float-gentle 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
    animation: float-gentle 25s ease-in-out infinite reverse;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-10px, 10px) rotate(240deg);
    }
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* var(--text-3xl) */
    font-weight: 400;
    color: #8B7355; /* var(--primary) */
    margin-bottom: 24px; /* var(--space-md) */
    letter-spacing: -1px;
}

.cta-section .lead {
    font-size: 1.5rem; /* var(--text-lg) */
    color: #B05A30; /* var(--secondary) */
    font-weight: 600;
    margin-bottom: 16px; /* var(--space-sm) */
    letter-spacing: 0.5px;
}

.cta-section .subtitle {
    font-size: 1.125rem; /* var(--text-base) */
    color: #6B6B6B; /* var(--neutral-mid) */
    margin-bottom: 48px; /* var(--space-xl) */
    line-height: 1.6;
}

.form-card {
    background: #FFFFFF; /* var(--neutral-light) */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.15);
    padding: 48px; /* var(--space-xl) */
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B7355 0%, #B05A30 100%);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; /* var(--space-md) */
}

.form-group {
    position: relative;
    margin-bottom: 24px; /* var(--space-md) */
}

.form-group.full-width {
    grid-column: 1 / -1;
}

input, textarea {
    width: 100%;
    padding: 16px 20px; /* var(--space-sm) var(--space-md) */
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: 12px;
    font-size: 1rem; /* var(--text-sm) */
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
    background-color: #FAF8F5; /* var(--neutral-bg) */
    color: #2C2C2C; /* var(--neutral-dark) */
}

input::placeholder, textarea::placeholder {
    color: #6B6B6B; /* var(--neutral-mid) */
    opacity: 0.7;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #8B7355; /* var(--primary) */
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Source Sans Pro', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #8B7355 0%, #B05A30 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem; /* var(--text-base) */
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
    position: relative;
    overflow: hidden;
    margin-top: 32px; /* var(--space-lg) */
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 115, 85, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading {
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.success-message, .error-message {
    padding: 16px 24px; /* var(--space-sm) var(--space-md) */
    border-radius: 12px;
    margin-top: 24px; /* var(--space-md) */
    text-align: center;
    display: none;
    animation: slideIn 0.4s cubic-bezier(.25, .8, .25, 1);
    font-size: 1rem; /* var(--text-sm) */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background-color: rgba(95, 138, 78, 0.1);
    color: #5F8A4E;
    border: 1px solid rgba(95, 138, 78, 0.3);
}

.error-message {
    background-color: rgba(176, 90, 48, 0.1);
    color: #B05A30;
    border: 1px solid rgba(176, 90, 48, 0.3);
}

.form-note {
    text-align: center;
    color: #6B6B6B; /* var(--neutral-mid) */
    font-size: 0.875rem; /* var(--text-xs) */
    margin-top: 32px; /* var(--space-lg) */
    line-height: 1.6;
}

.form-note a {
    color: #8B7355; /* var(--primary) */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-note a:hover {
    color: #B05A30; /* var(--secondary) */
    text-decoration: underline;
}

/* Decorative elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: #8B7355;
    opacity: 0.05;
    animation: float-random 20s ease-in-out infinite;
    pointer-events: none;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 8%;
    animation-delay: 7s;
}

.floating-element:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 10%;
    animation-delay: 14s;
}

@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 64px 0; /* var(--space-2xl) */
    }

    .cta-section h2 {
        font-size: 2.25rem; /* var(--text-2xl) */
    }

    .cta-section .lead {
        font-size: 1.125rem; /* var(--text-base) */
    }

    .form-card {
        padding: 32px 24px; /* var(--space-lg) var(--space-md) */
        margin: 0 16px; /* var(--space-sm) */
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px; /* var(--space-sm) */
    }

    .floating-element {
        display: none;
    }
}

/* Additional hover effects for inputs */
input:hover:not(:focus), textarea:hover:not(:focus) {
    border-color: rgba(139, 115, 85, 0.4);
}

/* Validation states */
input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: rgba(95, 138, 78, 0.5);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(176, 90, 48, 0.5);
}

/* Footer */
footer {
    background-color: var(--neutral-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Utility Classes */
.mb-5 {
    margin-bottom: var(--space-xl) !important;
}

.mt-3 {
    margin-top: var(--space-lg) !important;
}

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

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

.included-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.included-item {
    grid-column: auto !important;
}
