/*
 * Workshop Platform - Main Stylesheet
 */

:root {
    --color-bg: #faf9f7;
    --color-bg-dark: #1a1a1a;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-text-inverse: #f5f5f5;
    --color-accent: #8b7355;
    --color-accent-light: #c4a882;
    --color-accent-dark: #5d4e3a;
    --color-border: #e0ddd8;
    --color-overlay: rgba(26, 26, 26, 0.85);
    --color-success: #4a7c59;
    --color-error: #9c4146;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

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

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--space-lg); }
.container--narrow { max-width: 900px; }
.container--wide { max-width: 1800px; }

/* Homepage Hero */
.homepage { position: relative; display: flex; flex-direction: column; }

.hero {
    position: relative;
    min-height: 60vh; /* Default fallback, overridden by inline style from hero_height setting */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2a3f4f; /* Fallback color while image loads */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-text-inverse);
    padding: var(--space-xl);
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero--title-header .hero__content { position: absolute; top: 120px; left: 50%; transform: translateX(-50%); }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-lg);
    transition: all var(--transition-base);
}

.nav--transparent { background: transparent; }
.nav--solid { background: var(--color-bg); box-shadow: var(--shadow-sm); }

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav--transparent .nav__logo { color: var(--color-text-inverse); }
.nav--solid .nav__logo { color: var(--color-text); }

/* Hero title mode: hide nav logo when transparent, show when solid (scrolled) */
.nav--hero-title.nav--transparent .nav__logo {
    opacity: 0;
    pointer-events: none;
}
.nav--hero-title.nav--solid .nav__logo {
    opacity: 1;
    pointer-events: auto;
}

.nav__menu { display: flex; list-style: none; gap: var(--space-xl); }

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav--transparent .nav__link { color: var(--color-text-inverse); }
.nav--solid .nav__link { color: var(--color-text); }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition-base);
}

.nav__link:hover::after { width: 100%; }

.nav__item { position: relative; }

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-bg);
    min-width: 220px;
    padding: var(--space-sm) 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    margin-top: var(--space-sm);
    list-style: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Arrow/pointer at top of dropdown */
.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-bg);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.nav__item:hover .nav__dropdown { 
    opacity: 1; 
    visibility: visible; 
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 12px var(--space-lg);
    color: var(--color-text);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    position: relative;
}

.nav__dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform var(--transition-fast);
}

.nav__dropdown-link:hover { 
    background: linear-gradient(90deg, rgba(139, 115, 85, 0.08) 0%, rgba(139, 115, 85, 0.03) 100%);
    color: var(--color-accent-dark);
    padding-left: calc(var(--space-lg) + 5px);
}

.nav__dropdown-link:hover::before {
    transform: scaleY(1);
}

/* Subtle separator between items */
.nav__dropdown li:not(:last-child) .nav__dropdown-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--space-sm); }
.nav__toggle-bar { width: 24px; height: 2px; background: currentColor; transition: all var(--transition-fast); }
.nav--transparent .nav__toggle { color: var(--color-text-inverse); }
.nav--solid .nav__toggle { color: var(--color-text); }

/* Sections */
.section { padding: var(--space-xl) 0; }
.section--alt { background: #f5f4f2; }
.section__title { text-align: center; margin-bottom: var(--space-xl); }

/* Workshop Grid */
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-lg); }
.workshop-grid--featured { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.workshop-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: block;
    text-decoration: none;
    color: inherit;
}
.workshop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); color: inherit; }
.workshop-card--upcoming { border: 2px solid var(--color-accent); }

.workshop-card__poster { position: relative; overflow: hidden; background: #f0f0f0; }
.workshop-card__poster img { width: 100%; height: auto; display: block; transition: transform var(--transition-slow); }
.workshop-card:hover .workshop-card__poster img { transform: scale(1.05); }
.workshop-card__placeholder { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; color: var(--color-text-light); font-size: 0.9rem; }

.workshop-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}
.workshop-card__badge--upcoming { background: var(--color-accent); color: white; }
.workshop-card__badge--sold-out { background: var(--color-error); color: white; }

.workshop-card__play-icon {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.workshop-card__info { padding: var(--space-md); }
.workshop-card__title { font-size: 1.25rem; margin-bottom: var(--space-xs); line-height: 1.3; color: var(--color-text); }
.workshop-card__date { font-size: 0.85rem; color: var(--color-accent); margin-bottom: var(--space-xs); }
.workshop-card__meta { font-size: 0.85rem; color: var(--color-text-light); }
.workshop-card__spots { font-size: 0.85rem; color: var(--color-success); font-weight: 600; margin-top: var(--space-xs); }

/* Featured Workshop (homepage) */
.workshop-featured__link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-base);
}
.workshop-featured__link:hover { box-shadow: var(--shadow-xl); color: inherit; }
.workshop-featured__poster { position: relative; overflow: hidden; display: flex; align-items: center; background: #f0f0f0; }
.workshop-featured__poster img { width: 100%; height: auto; display: block; }
.workshop-featured__info { padding: var(--space-xl); }
.workshop-featured__title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: var(--space-md); }
.workshop-featured__date { font-size: 1.1rem; color: var(--color-accent); margin-bottom: var(--space-sm); }
.workshop-featured__meta { font-size: 1rem; color: var(--color-text-light); margin-bottom: var(--space-sm); }
.workshop-featured__venue { font-size: 0.95rem; color: var(--color-text-light); }
.workshop-featured__spots { font-size: 1rem; color: var(--color-success); font-weight: 600; margin-top: var(--space-md); }

/* Workshop Detail */
.workshop-detail { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.workshop-detail__poster { margin-bottom: var(--space-lg); }
.workshop-detail__poster img { width: 100%; border-radius: 8px; }
.workshop-detail__description { line-height: 1.8; margin-bottom: var(--space-lg); }
.workshop-detail__description img { max-width: 100%; height: auto; }

.workshop-info-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
    position: sticky;
    top: 90px;
}
.workshop-info-card h3 { margin-bottom: var(--space-md); font-size: 1.25rem; }
.workshop-info-card__item { padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border); }
.workshop-info-card__item:last-child { border-bottom: none; }
.workshop-info-card__item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-light); margin-bottom: 4px; }

.spots-counter { font-weight: 600; color: var(--color-success); }
.spots-counter--low { color: var(--color-error); }

/* Status Badges */
.status-badge { display: inline-block; padding: 4px 12px; font-size: 0.8rem; font-weight: 600; border-radius: 4px; letter-spacing: 0.05em; }
.status-badge--sold-out { background: var(--color-error); color: white; }
.status-badge--completed { background: var(--color-text-light); color: white; }

/* Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-lg); }
.video-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.video-item img { width: 100%; height: 100%; object-fit: cover; }
.video-item__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background var(--transition-fast);
}
.video-item:hover .video-item__play { background: var(--color-accent); }
.video-item__title { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: rgba(0,0,0,0.7); color: white; font-size: 0.85rem; }

/* Video Overlay / Lightbox */
.video-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-overlay__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}
.video-overlay__container { width: 90%; max-width: 900px; aspect-ratio: 16/9; }
.video-overlay__container iframe { width: 100%; height: 100%; }
.video-overlay__container img { max-width: 100%; max-height: 90vh; object-fit: contain; }

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--space-md); }
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

/* Booking Section */
.booking-section { margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--color-border); }
.booking-section h2 { margin-bottom: var(--space-lg); }

.child-entry { padding: var(--space-md); background: #f8f8f8; border-radius: 8px; margin-bottom: var(--space-md); }
.child-entry__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-sm); }

.card { background: white; border-radius: 8px; box-shadow: var(--shadow-sm); margin-bottom: var(--space-md); }
.card__header { padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.card__title { font-size: 1.1rem; margin: 0; }
.card__body { padding: var(--space-lg); }

.form__checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; cursor: pointer; line-height: 1.5; }
.form__checkbox input[type="checkbox"] { margin-top: 4px; }

/* Alerts */
.alert { padding: var(--space-md) var(--space-lg); border-radius: 8px; margin-bottom: var(--space-md); }
.alert--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert--error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.alert--info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

/* About Page */
.about-intro { max-width: 900px; margin: 0 auto; }
.about-intro--with-image { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; max-width: 1200px; }
.about-intro__image img { width: 100%; border-radius: 8px; }
.about-intro__content { font-size: 1.1rem; line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--space-xl); }
.team-member { text-align: center; }
.team-member__photo { width: 180px; height: 180px; margin: 0 auto var(--space-md); border-radius: 50%; overflow: hidden; }
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member__name { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.team-member__bio { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.6; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: var(--space-xl); padding: var(--space-2xl) 0; }

.blog-card { background: white; box-shadow: var(--shadow-sm); transition: all var(--transition-base); display: block; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card__image-wrapper { position: relative; overflow: hidden; }
.blog-card__image-wrapper::before { content: ''; display: block; padding-top: 60%; }
.blog-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card__image { transform: scale(1.05); }

.blog-card__content { padding: var(--space-lg); }
.blog-card__date { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--space-sm); display: block; }
.blog-card__title { font-size: 1.5rem; margin-bottom: var(--space-sm); line-height: 1.3; color: var(--color-text); }
.blog-card__title a:hover { color: var(--color-accent); }
.blog-card__excerpt { color: var(--color-text-light); font-size: 0.95rem; }

.blog-post { max-width: 800px; margin: 0 auto; padding: var(--space-2xl) var(--space-lg); }
.blog-post__header { text-align: center; margin-bottom: var(--space-xl); }
.blog-post__title { margin-bottom: var(--space-md); }
.blog-post__meta { color: var(--color-text-light); font-size: 0.9rem; }
.blog-post__featured-image { width: 100%; margin-bottom: var(--space-xl); }
.blog-post__content { font-size: 1.1rem; line-height: 1.8; }
.blog-post__content h1 { font-size: 2.4rem; font-weight: 700; margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.blog-post__content h2 { font-size: 1.9rem; font-weight: 700; margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.blog-post__content h3 { font-size: 1.5rem; font-weight: 600; margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.blog-post__content h4 { font-size: 1.2rem; font-weight: 600; margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.blog-post__content img { max-width: 100%; height: auto; margin: var(--space-lg) 0; }

/* Contact */
.contact-modal { position: fixed; bottom: var(--space-lg); right: var(--space-lg); z-index: 1500; }

.contact-trigger {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
}

.contact-trigger:hover { background: var(--color-accent-dark); transform: translateY(-2px); }

.contact-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 380px;
    background: white;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    border-radius: 12px;
    overflow: hidden;
}

.contact-panel.active { opacity: 1; visibility: visible; transform: translateY(0); }

.contact-panel__header { background: var(--color-accent); color: white; padding: var(--space-md); display: flex; justify-content: space-between; align-items: center; }
.contact-panel__title { font-size: 1.1rem; font-family: var(--font-display); }
.contact-panel__close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; opacity: 0.8; transition: opacity var(--transition-fast); }
.contact-panel__close:hover { opacity: 1; }
.contact-panel__body { padding: var(--space-md); }
.contact-panel__body p { font-size: 0.9rem; margin-bottom: var(--space-sm); }

/* Contact form specific */
.contact-form .form__textarea { min-height: 60px; }

/* Forms */
.form__group { margin-bottom: var(--space-sm); }
.form__label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 4px; color: var(--color-text); }

.form__input, .form__textarea, .form__select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--color-border);
    background: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
}

.form__input:focus, .form__textarea:focus, .form__select:focus { outline: none; border-color: var(--color-accent); }
.form__textarea { resize: vertical; min-height: 80px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form__radio-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: 4px; }
.form__radio-label { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; cursor: pointer; }

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn--primary { background: var(--color-accent); color: white; }
.btn--primary:hover { background: var(--color-accent-dark); }
.btn--secondary { background: transparent; border: 1px solid var(--color-accent); color: var(--color-accent); }
.btn--secondary:hover { background: var(--color-accent); color: white; }
.btn--full { width: 100%; }

/* Footer */
.footer { background: var(--color-bg-dark); color: var(--color-text-inverse); padding: var(--space-xl) var(--space-lg); text-align: center; }
.footer__copyright { font-size: 0.85rem; opacity: 0.7; }

/* Page Header */
.page-header { padding: calc(var(--space-xl) + 70px) var(--space-lg) var(--space-lg); text-align: center; background: var(--color-bg); border-bottom: 1px solid var(--color-border); }
.page-header__title { margin-bottom: var(--space-xs); font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-header__subtitle { font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--color-accent); margin-bottom: var(--space-sm); font-style: italic; }
.page-header__description { max-width: 600px; margin: 0 auto; color: var(--color-text-light); font-size: 0.95rem; }

/* Utilities */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Extra button sizes */
.btn--large { padding: var(--space-md) var(--space-xl); font-size: 1rem; }
.btn--small { padding: 6px 12px; font-size: 0.8rem; }
.btn--danger { background: var(--color-error); color: white; }
.btn--danger:hover { background: #7c2e32; }

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.workshop-card { opacity: 0; animation: slideUp 0.6s ease forwards; }
.workshop-card:nth-child(1) { animation-delay: 0.1s; }
.workshop-card:nth-child(2) { animation-delay: 0.2s; }
.workshop-card:nth-child(3) { animation-delay: 0.3s; }
.workshop-card:nth-child(4) { animation-delay: 0.4s; }
.workshop-card:nth-child(5) { animation-delay: 0.5s; }
.workshop-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .nav__container {
        position: relative;
    }
    
    .nav__toggle { 
        display: flex; 
        z-index: 1001;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    .nav-overlay.active {
        display: block;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 80px var(--space-lg) var(--space-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav__menu.active { transform: translateX(0); }
    
    .nav__menu .nav__item {
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav__menu .nav__link { 
        color: var(--color-text); 
        font-size: 1.1rem;
        padding: var(--space-md) 0;
        display: block;
    }
    
    .nav__dropdown { 
        position: static !important; 
        transform: none !important;
        left: 0 !important;
        top: auto !important;
        box-shadow: none; 
        background: rgba(139, 115, 85, 0.05);
        padding: var(--space-sm) 0;
        margin: var(--space-sm) 0;
        min-width: auto;
        width: 100%;
        display: none;
        border-radius: 8px;
        border: none;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav__dropdown::before {
        display: none;
    }
    
    .nav__item.dropdown-open .nav__dropdown {
        display: block;
    }
    
    .nav__dropdown li:not(:last-child) .nav__dropdown-link {
        border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    }
    
    .nav__dropdown-link {
        padding: 12px var(--space-md);
        font-size: 1rem;
    }
    
    .nav__dropdown-link:hover,
    .nav__dropdown-link:active {
        background: rgba(139, 115, 85, 0.1);
        padding-left: var(--space-md);
    }
    
    .nav__dropdown-link::before {
        display: none;
    }
    
    .form__row { grid-template-columns: 1fr; }

    .workshop-grid { grid-template-columns: 1fr; }
    .workshop-featured__link { grid-template-columns: 1fr; }
    .workshop-detail { grid-template-columns: 1fr; }
    .workshop-info-card { position: static; }
    .about-intro--with-image { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

    /* Contact panel - full screen on mobile */
    .contact-modal {
        bottom: 0;
        right: 0;
        left: 0;
    }
    
    .contact-trigger {
        position: fixed;
        bottom: var(--space-md);
        right: var(--space-md);
        left: auto;
        width: auto;
    }
    
    .contact-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .contact-panel.active {
        transform: translateY(0);
    }
    
    .contact-panel__header {
        flex-shrink: 0;
    }
    
    .contact-panel__body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
    }
    
    .blog-grid { grid-template-columns: 1fr; }
}

/* Page header back link */
.page-header__back {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-decoration: none;
    margin-bottom: var(--space-sm);
}
.page-header__back:hover { color: var(--color-accent); }
