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

:root {
    --primary: #2c2c2c;
    --accent: #d4c1b1;
    --accent-dark: #2f3e4e;
    --text: #4a4a4a;
    --text-light: #6a6a6a;
    --bg: #faf8f7;
    --bg-light: #ffffff;
    --cream: #f0ece9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 247, 0.98);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    display: flex;
    align-items: center;
}

.logo-small img {
    height: 40px;
    width: auto;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.lang-toggle {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.lang-toggle a {
    text-decoration: none;
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.lang-toggle a.active {
    color: var(--primary);
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--cream);
}

.hero.hero-small {
    min-height: 50vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--primary);
    padding: 2rem;
}

.hero-content .logo-big {
    max-width: 500px;
    width: 100%;
    margin-bottom: 2rem;
}

.hero-content .logo-big img {
    width: 100%;
    height: auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.btn:hover,
.btn:active,
.btn:focus {
    background: var(--accent-dark);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

/* Services Row - Core Services (4 in a row) */
.services-core {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.services-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #f0f0f0;
    align-items: stretch;
}

/* Packages Carousel - Desktop (769px+) */
@media (min-width: 769px) {
    .packages-carousel {
        display: block;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .packages-carousel .services-packages {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
        padding-top: 4rem;
        border-top: 1px solid #f0f0f0;
    }

    .packages-carousel .service-item {
        flex: none;
        margin: 0;
        max-width: none;
    }

    .packages-carousel .service-image {
        max-width: none;
    }

    .packages-carousel .service-info {
        max-width: none;
    }
}

.services-row-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.service-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.service-info h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    margin-top: auto;
}

.service-link:hover {
    color: var(--accent);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--accent-dark);
    text-align: center;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 50px;
    min-height: 200px;
}

.carousel-track {
    position: relative;
    display: block;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.carousel-slide.current-slide {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.carousel-slide blockquote {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    line-height: 1.7;
}

.carousel-slide cite {
    color: var(--accent);
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 3rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    color: #fff;
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--accent);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.contact-item p, .contact-item a {
    color: var(--text);
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--cream);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-dark);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-core {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .services-core .service-info {
        font-size: 0.85rem;
    }
    
    .services-core .service-info h3 {
        font-size: 1rem;
    }
    
    .services-core .service-info p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .services-packages {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        flex-wrap: wrap;
    }
    
    .logo-small {
        flex: 0 0 auto;
    }
    
    .logo-small img {
        height: 38px;
    }
    
    .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        margin-left: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
    }

    .services-core {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 0.5rem 0;
    }
    
    .service-image {
        max-width: 280px;
        margin: 0 auto 0.75rem;
    }
    
    .service-info {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .service-info h3 {
        font-size: 1.1rem;
    }
    
    .service-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .services-packages {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .services-row-title {
        margin-top: 2rem;
    }

    /* Packages Carousel */
    .packages-carousel {
        display: flex;
        align-items: center;
        position: relative;
        margin: 0 -24px;
        padding: 0 12vw 0 12vw;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .packages-carousel::-webkit-scrollbar {
        display: none;
    }

    .packages-carousel .services-packages {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 0;
        margin: 0;
        padding: 0;
        border: none;
        background: transparent;
    }

    .packages-carousel .service-item {
        flex: 0 0 calc(85vw - 48px);
        scroll-snap-align: center;
        margin-right: 16px;
        max-width: none;
        width: calc(85vw - 48px);
        max-height: 1350px;
    }

    .packages-carousel .service-image {
        max-width: 100%;
        max-height: 750px;
        margin: 0 auto 0.75rem;
        overflow: hidden;
    }

    .packages-carousel .service-image img {
        width: 100%;
        max-width: none;
        height: 100%;
        object-fit: cover;
    }

    .packages-carousel .service-info {
        max-width: 100%;
        margin: 0;
        padding: 0.75rem 0.5rem;
    }

    .packages-carousel .service-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .packages-carousel .service-info p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

.packages-carousel .service-link {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.65rem;
    }

    .hero-content .logo-big {
        max-width: 280px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-light);
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--bg);
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0.75rem 0 1rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active,
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-light);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--cream);
    color: var(--primary);
}

.modal-body {
    padding: 2.5rem;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.modal-description {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.modal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.6;
}

.modal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.modal-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid var(--cream);
}

body.modal-open {
    overflow: hidden;
}