:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-brand {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-brand h2 {
    color: var(--bg-white);
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.nav-links {
    list-style: none;
    padding: 2rem 0;
    flex: 1;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--bg-white);
    background: rgba(255,255,255,0.1);
    padding-left: 2.5rem;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--accent-color);
}

.nav-footer {
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-footer a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.nav-footer a:hover {
    color: var(--bg-white);
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn-cookie.accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie.accept:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie.reject:hover {
    border-color: var(--bg-white);
}

.hero-card {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.95) 0%, rgba(44,62,80,0.7) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-text-block {
    max-width: 700px;
    text-align: center;
}

.hero-text-block h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary,
.cta-secondary,
.cta-button-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover,
.cta-button-large:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.intro-cards {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.intro-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.intro-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.story-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.services-grid {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-card.featured .service-image {
    flex: 1;
}

.service-card.featured .service-content {
    flex: 1.2;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonials-section h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 320px;
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-weight: 600;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(139,115,85,0.1);
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.process-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.process-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1 1 240px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.process-card h3 {
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.gallery-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 calc(25% - 1.2rem);
    min-width: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.values-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.values-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.page-header {
    padding: 6rem 2rem 3rem;
    background: var(--bg-white);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.service-detail-card {
    padding: 4rem 2rem;
    background: var(--bg-white);
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-content {
    flex: 1.3;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-faq {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.services-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.about-story {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-large {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-text-block {
    flex: 1.2;
}

.story-text-block h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.story-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-cards {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-cards h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-card {
    flex: 1 1 320px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    padding: 1.5rem 2rem 0.5rem;
    margin-bottom: 0.3rem;
}

.team-role {
    padding: 0 2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.workshop-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.workshop-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.workshop-text {
    flex: 1.2;
}

.workshop-text h2 {
    margin-bottom: 2rem;
}

.workshop-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.workshop-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.philosophy-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.sustainability-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.sustainability-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.sustainability-text {
    flex: 1.3;
}

.sustainability-text h2 {
    margin-bottom: 2rem;
}

.sustainability-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.sustainability-text ul {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.sustainability-text ul li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.sustainability-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.recognition-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.recognition-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.recognition-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.recognition-item {
    flex: 1 1 300px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.recognition-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.recognition-source {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0;
}

.cta-visit {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.cta-visit h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-visit p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1 1 320px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    margin-bottom: 1.2rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 1rem;
}

.map-section {
    padding: 0;
    background: var(--bg-light);
}

.map-container {
    max-width: 100%;
}

.map-placeholder {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem 2rem;
}

.map-overlay p {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.visit-info {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.visit-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.visit-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.visit-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.access-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.access-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.access-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.access-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.access-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.access-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.faq-contact {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.faq-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.newsletter-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.thanks-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.thanks-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.thanks-info h3 {
    margin-bottom: 1rem;
}

.thanks-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.social-follow {
    margin-top: 4rem;
}

.social-follow h3 {
    margin-bottom: 1rem;
}

.social-follow p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--secondary-color);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.legal-page h1 {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.legal-date {
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table thead th {
    background: var(--bg-light);
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.cookies-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-sidebar {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .story-content,
    .story-layout,
    .workshop-content,
    .sustainability-layout {
        flex-direction: column;
    }

    .service-card.featured {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-card {
        height: 70vh;
        min-height: 500px;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .card-grid,
    .services-cards,
    .testimonials-grid,
    .process-cards,
    .gallery-grid {
        flex-direction: column;
    }

    .intro-card,
    .service-card,
    .testimonial-card,
    .process-card,
    .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .form-container {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
