@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

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

:root {
    --primary-green: #5a8a5a;
    --soft-green: #6ba86b;
    --text-charcoal: #1a1a1a;
    --text-gray: #4a4a4a;
    --warm-beige: #d4c4b0;
    --light-cream: #f5f0e8;
    --pastel-pink: #e8c4c4;
    --soft-lavender: #d4c4d8;
    --white: #ffffff;
    --border-color: #d0c8c0;
    --shadow-subtle: rgba(0, 0, 0, 0.12);
    --shadow-soft: rgba(0, 0, 0, 0.18);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    background-color: var(--white);
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 8px var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-charcoal);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.4s ease;
    letter-spacing: 0.01em;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-charcoal);
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

.hero {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-beige) 50%, var(--soft-lavender) 100%);
    color: var(--text-charcoal);
    padding: 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 138, 90, 0.4) 0%, rgba(74, 106, 74, 0.5) 100%);
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-green);
}

.btn:hover {
    background-color: var(--soft-green);
    border-color: var(--soft-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--shadow-soft);
}

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

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 4rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow-subtle);
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-soft);
    border-color: var(--primary-green);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-content {
    padding: 2rem;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.about-content p {
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.services-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.services-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--light-cream);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-green);
}

.services-list li:hover {
    background-color: var(--warm-beige);
    transform: translateX(5px);
    box-shadow: 0 4px 16px var(--shadow-subtle);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--light-cream);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.contact-item:hover {
    background-color: var(--warm-beige);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-subtle);
    border-color: var(--primary-green);
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-cream);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 6px 24px var(--shadow-subtle);
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-charcoal);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-charcoal);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(90, 138, 90, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.35rem;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    cursor: pointer;
}

.map-container {
    width: 100%;
    height: 400px;
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow-subtle);
    border: 2px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a6a4a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 3px solid var(--soft-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.copyright p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.privacy-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.privacy-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.privacy-popup {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 520px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.privacy-popup.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-popup p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.privacy-popup button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.privacy-popup .btn-accept {
    background-color: var(--primary-green);
    color: var(--white);
}

.privacy-popup .btn-accept:hover {
    background-color: var(--soft-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-soft);
}

.privacy-popup .btn-decline {
    background-color: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-color);
}

.privacy-popup .btn-decline:hover {
    background-color: var(--light-cream);
    border-color: var(--text-gray);
    box-shadow: 0 4px 12px var(--shadow-subtle);
}

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

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 2rem;
    margin-top: 3rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.page-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.page-content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 6px 24px var(--shadow-subtle);
}

.split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.split-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow-subtle);
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-soft);
    border-color: var(--primary-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    line-height: 1;
    display: inline-block;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 24px var(--shadow-subtle);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-soft);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-green);
}

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

.testimonial-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    color: var(--text-charcoal);
    font-weight: 500;
    margin-top: 1rem;
}

.service-item,
.collection-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-item:last-child,
.collection-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse,
.collection-item.reverse {
    direction: rtl;
}

.service-item.reverse > *,
.collection-item.reverse > * {
    direction: ltr;
}

.service-image img,
.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 6px 24px var(--shadow-subtle);
}

.service-content h2,
.collection-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.service-content p,
.collection-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tip-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow-subtle);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-soft);
    border-color: var(--primary-green);
}

.tip-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tip-card:hover .tip-image img {
    transform: scale(1.1);
}

.tip-content {
    padding: 2rem;
}

.tip-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.tip-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}


@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow-subtle);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero-image {
        height: 400px;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-section,
    .service-item,
    .collection-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item.reverse,
    .collection-item.reverse {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .privacy-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 1.5rem;
    }

    .page-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 16px;
    }

    nav {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-image {
        height: 300px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 2rem;
    }

    .split-section,
    .service-item,
    .collection-item {
        gap: 1.5rem;
    }

    .split-content h2,
    .service-content h2,
    .collection-content h2 {
        font-size: 1.75rem;
    }

    .tip-content h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .privacy-popup {
        padding: 1.25rem;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .privacy-popup-buttons {
        flex-direction: column;
    }

    .privacy-popup button {
        width: 100%;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .success-page h1 {
        font-size: 2rem;
    }

    .success-page p {
        font-size: 1.1rem;
    }
}

