@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D4A574;
    --primary-dark: #B8956A;
    --secondary: #2C3E50;
    --accent: #E8DDD4;
    --bg-light: #FDF9F6;
    --bg-warm: #F5EDE6;
    --text-dark: #2C3E50;
    --text-light: #6B7B8C;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 62, 80, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.header.visible {
    transform: translateY(0);
}

.header-inner {
    background: var(--white);
    margin: 10px 15px;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.menu-toggle {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile ul {
    text-align: center;
}

.nav-mobile li {
    margin: 15px 0;
}

.nav-mobile a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-mobile a:hover {
    color: var(--primary);
}

.nav-mobile .mobile-cta {
    margin-top: 25px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-image {
    margin-top: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-light);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.workshops {
    background: var(--bg-warm);
}

.workshops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.workshop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workshop-image {
    height: 180px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.05);
}

.workshop-content {
    padding: 20px;
}

.workshop-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.workshop-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.workshop-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--accent);
}

.workshop-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg-warm) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.product-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonials {
    background: linear-gradient(135deg, var(--secondary) 0%, #3D5166 100%);
    color: var(--white);
}

.testimonials .section-tag {
    color: var(--primary);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.cta {
    background: var(--bg-warm);
    text-align: center;
}

.cta-content {
    max-width: 550px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.cta p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-contact p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.6;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.policy-links a {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
}

.policy-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.page-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.page-hero p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.75rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.about-intro {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #3D5166 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.75rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 15px 50px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.status-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 15px 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}

.status-content {
    max-width: 450px;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.status-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.status-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.error-icon {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.policy-page {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.policy-content h3 {
    font-size: 1.1rem;
    margin: 25px 0 12px;
    color: var(--secondary);
}

.policy-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0 20px 20px;
}

.policy-content ul li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.last-updated {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.workshop-detail {
    background: var(--white);
}

.workshop-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.workshop-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.workshop-detail-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.workshop-detail-text h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.workshop-detail-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.workshop-highlights {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
}

.workshop-highlights h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.workshop-highlights ul li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.workshop-highlights ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.75rem;
}

.workshop-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.workshop-pricing .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.curriculum {
    background: var(--bg-warm);
}

.curriculum-list {
    max-width: 700px;
    margin: 0 auto;
}

.curriculum-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.curriculum-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    flex-shrink: 0;
}

.curriculum-text h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.curriculum-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.faq {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--accent);
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 12px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.team {
    background: var(--bg-warm);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.team-role {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 852px) {
    html {
        font-size: 15px;
    }

    .header-inner {
        padding: 12px 30px;
    }

    .nav-desktop {
        display: block;
    }

    .header-cta {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-image img {
        height: 350px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image img {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .workshop-detail-content {
        grid-template-columns: 1fr 1fr;
    }

    .workshop-detail-image img {
        height: 300px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-image img {
        height: 420px;
    }

    .map-container {
        height: 400px;
        margin: 0 auto 60px;
        max-width: 1140px;
    }
}
