@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D4A574;
    --primary-dark: #B8956A;
    --secondary: #2C3E50;
    --accent: #E8D5C4;
    --bg-light: #FBF8F5;
    --bg-cream: #F5EDE4;
    --text-dark: #2C3E50;
    --text-muted: #6B7B8C;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    --shadow-hover: 0 8px 30px rgba(44, 62, 80, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
}

.btn-light:hover {
    background: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-header p {
    max-width: 550px;
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 14px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    background: linear-gradient(180deg, rgba(251, 248, 245, 0.98) 0%, rgba(251, 248, 245, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 25px;
    }
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.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;
}

@media (min-width: 992px) {
    .header-cta {
        display: block;
    }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    gap: 5px;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    z-index: 999;
    padding: 80px 20px 30px;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px;
    border-bottom: 1px solid var(--accent);
}

.mobile-nav .btn {
    margin-top: 15px;
}

main {
    padding-top: 65px;
}

.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--accent) 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.hero-text span {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-text h1 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    font-size: 20px;
    color: var(--primary);
}

.hero-badge div strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
}

.hero-badge div span {
    font-size: 11px;
    color: var(--text-muted);
}

.features {
    padding: 50px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.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: 18px;
}

.feature-card h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.feature-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.about-section {
    padding: 50px 0;
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 13px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-dark);
}

.about-list i {
    color: var(--primary);
    font-size: 14px;
}

.workshops {
    padding: 50px 0;
    background: var(--white);
}

.workshops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .workshops-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.workshop-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.workshop-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 600;
}

.workshop-content {
    padding: 18px;
}

.workshop-content h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.workshop-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--accent);
}

.workshop-meta span {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.workshop-meta i {
    color: var(--primary);
}

.products-section {
    padding: 50px 0;
    background: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg-cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary-dark);
}

.product-card h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.product-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.product-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.testimonials {
    padding: 50px 0;
    background: var(--secondary);
    color: var(--white);
}

.testimonials .section-header span {
    color: var(--primary);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-info strong {
    display: block;
    font-size: 13px;
    color: var(--white);
}

.testimonial-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.page-hero {
    padding: 40px 0 30px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-hero span {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.page-hero h1 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.content-section {
    padding: 50px 0;
    background: var(--white);
}

.content-section p {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-dark);
}

.content-section h2,
.content-section h3 {
    margin: 25px 0 15px;
    color: var(--secondary);
}

.contact-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #3D5166 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-content strong {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}

.contact-item-content span,
.contact-item-content a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-schedule {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-schedule h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-card .btn {
    width: 100%;
}

.map-section {
    padding: 50px 0;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media (min-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

.page-fullheight {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
    padding: 40px 20px;
}

.status-content {
    max-width: 450px;
    margin: 0 auto;
}

.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: 32px;
    color: var(--white);
}

.status-icon.error {
    background: linear-gradient(135deg, var(--secondary) 0%, #3D5166 100%);
}

.status-content h1 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.status-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.status-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

footer {
    background: var(--secondary);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary);
}

.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;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.privacy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-links a:hover {
    color: var(--primary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 18px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.cookie-text a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 12px;
}

.policy-content {
    padding: 50px 0;
    background: var(--white);
}

.policy-content .container {
    max-width: 800px;
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.policy-content h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.policy-content p {
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.last-updated {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
}

.info-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--primary);
}

.info-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.info-card ul {
    padding-left: 0;
}

.info-card li {
    font-size: 13px;
    color: var(--text-dark);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card li i {
    color: var(--primary);
    font-size: 12px;
}

.gallery-section {
    padding: 50px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.process-section {
    padding: 50px 0;
    background: var(--bg-cream);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.process-step h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.process-step p {
    font-size: 12px;
    color: var(--text-muted);
}

.stats-section {
    padding: 40px 0;
    background: var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.team-section {
    padding: 50px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.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 12px;
    font-size: 24px;
    color: var(--white);
}

.team-member h4 {
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 14px;
}

.team-member span {
    font-size: 11px;
    color: var(--text-muted);
}

.values-section {
    padding: 50px 0;
    background: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h4 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.value-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.faq-section {
    padding: 50px 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
}

.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 {
    padding: 0 18px 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .feature-card,
    .workshop-content,
    .product-card,
    .testimonial-card,
    .contact-info-card,
    .contact-form-card {
        padding: 18px;
    }
}
