@charset "UTF-8";

:root {
    --matcha: #809671;
    --almond: #E5E0D8;
    --pistache: #B3B792;
    --chai: #D2AB80;
    --carob: #725C3A;
    --vanilla: #E5D2B8;
    --font-primary: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    background-color: var(--almond);
    color: var(--carob);
    overflow-x: hidden;
}

.social-sidebar {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 100;
}

.social-sidebar a {
    text-decoration: none;
    color: var(--matcha);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    left: 0;
}

.social-sidebar a:hover {
    left: 5px;
    color: var(--carob);
}

.social-sidebar svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.main-layout { display: flex; min-height: 100vh; isolation: auto !important;}

.content-side {
    flex: 1.3;
    padding: 0 5% 40px 150px;
    display: flex;
    flex-direction: column;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 1001;
}

.brand-container {
    display: flex;
    justify-content: flex-start;
    margin: 0;
}

.brand-container a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-wrapper {
    animation: fadeIn 1.5s ease-out forwards, logoFloat 4s ease-in-out infinite alternate;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(59%) sepia(10%) saturate(1030%) hue-rotate(54deg) brightness(92%) contrast(85%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.brand-container a:hover .brand-logo {
    transform: rotate(15deg) scale(1.1);
}

.brand-main {
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -12px;
    color: var(--carob);
    animation: fadeIn 1.5s ease-out 0.3s forwards;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.brand-main::before, .brand-main::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.brand-main::before { margin-right: 15px; }
.brand-main::after { margin-left: 15px; }

.brand-container a:hover .brand-main::before { transform: translateX(-10px); }
.brand-container a:hover .brand-main::after { transform: translateX(10px); }

.brand-tagline {
    font-weight: 600;
    font-size: 0.6rem;
    color: var(--chai);
    margin-top: 7px;
    animation: fadeIn 1.5s ease-out 0.6s forwards;
    opacity: 0;
    transition: 0.4s ease-in-out;
    text-transform: uppercase;
}

.top-nav ul {
    display: flex;
    list-style: none;
    gap: 38px;
    margin-top: 20px;
}

.top-nav ul li {
    position: relative;
}

.top-nav ul a {
    text-decoration: none;
    color: var(--carob);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    padding-top: 18px;
}

.top-nav ul a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    width: 6px;
    height: 6px;
    background-color: var(--matcha);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.top-nav ul a:hover {
    transform: translateY(5px);
    color: var(--matcha);
}

.top-nav ul a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-text-wrapper { margin: auto 0; max-width: 510px; }
.hero-text-wrapper strong {
    color: var(--matcha);
    letter-spacing: 0.4px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-text-wrapper strong::after {
    content: "";
    width: 70px;
    height: 3px;
    background-color: var(--chai);
    border-radius: 10px;
}
.hero-text-wrapper h1 { font-size: 5.6rem; font-weight: 400; letter-spacing: -2px; line-height: 1.05; margin-bottom: 25px;}
.highlight { color: var(--chai); }
.highlight2 { color: var(--matcha); font-weight: 600; }
.hero-text-wrapper p { font-size: 1rem; line-height: 1.7; margin-bottom: 40px; color: var(--carob); }
.hero-text-wrapper a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 26px 60px;
    background: var(--vanilla);
    color: var(--carob);
    text-decoration: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s;
}
.hero-text-wrapper a::before {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--matcha);
    border-radius: 10px;
    transition: 0.3s;
}

.image-side {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-color: var(--bg-color);
}

.image-container {
    position: relative;
    display: inline-block;
    line-height: 0;
    height: 100vh;
    overflow: hidden;
}

.main-img {
    height: 100vh;
    width: auto;
    object-fit: contain;
    display: block;
    position: relative;
}

.image-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vertical-axis {
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 8px;
    background-color: white;
    z-index: 11;
    transform: translateX(-50%);
}

.logo-circle {
    position: absolute;
    left: 0; top: 50%; width: 280px; height: 280px;
    background-color: white;
    border-radius: 50%;
    z-index: 12;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transform: translate(-50%, -50%);
    animation: floatVertical 6s ease-in-out infinite;
}

.logo-circle img {
    width: 80%;
    filter: brightness(0) saturate(100%) invert(59%) sepia(10%) saturate(1030%) hue-rotate(54deg) brightness(92%) contrast(85%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    animation: slowRotate 8s ease-in-out infinite;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 9999;
    position: fixed;
    right: 30px;
    top: -10px;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--carob);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--carob);
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.menu-toggle.active .hamburger { background-color: transparent; }
.menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.menu-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }

@media (max-width: 992px) {
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--almond) !important;
        
        display: block !important;
        text-align: center;
        
        padding-top: 50px !important;
        margin: 0 !important;

        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000000 !important;
        overflow-y: auto;
    }

    .nav-links li {
        list-style: none;
        margin-bottom: 40px !important;
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .menu-toggle {
        display: block;
        position: fixed;
        right: 30px;
        top: 0;
        z-index: 1000001 !important;
    }

    .content-side {
        z-index: 99999 !important;
        position: relative;
    }

    .image-side {
        z-index: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    body.menu-open .image-side {
        display: none !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes logoFloat {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

@keyframes floatVertical {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -55%); }
}

@keyframes slowRotate {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-wrapper strong {
    opacity: 0;
    animation: revealUp 1s ease-out 0.8s forwards;
}

.hero-text-wrapper h1 {
    opacity: 0;
    animation: revealUp 1s ease-out 1s forwards;
}

.hero-text-wrapper p {
    opacity: 0;
    animation: revealUp 1s ease-out 1.2s forwards;
}

.hero-text-wrapper a {
    opacity: 0;
    animation: revealUp 1s ease-out 1.4s forwards;
}

.content-side {
    animation: slideInLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.image-side {
    animation: slideInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-text-wrapper a::before {
    content: "";
    width: 20px;
    height: 3px;
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-text-wrapper a:hover::before {
    width: 45px;
}

.hero-text-wrapper a:hover {
    padding-left: 50px;
}

.social-sidebar a {
    opacity: 0;
    animation: dropIcon 0.8s ease-out forwards;
}

.social-sidebar a:nth-child(1) { animation-delay: 1.6s; }
.social-sidebar a:nth-child(2) { animation-delay: 1.8s; }
.social-sidebar a:nth-child(3) { animation-delay: 2s; }

@keyframes dropIcon {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.brand-logo {
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-container a:hover .brand-logo {
    transform: rotate(39deg) scale(1.15);
}

.brand-container a:hover .brand-tagline {
    color: var(--carob);
}





.about-section {
    padding: 160px 26%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1300px;
}

.about-content {
    flex: 1.2;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 80px;
}

.label-line {
    display: block;
    width: 90px;
    height: 5px;
    background-color: var(--matcha);
    border-radius: 10px;
}

.label-text {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 400;
    color: var(--matcha);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.sub-heading {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--chai);
    margin-bottom: 15px;
    margin-top: 10px;
}

.about-content h2 {
    font-size: 3rem;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--carob);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--carob);
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    flex: 1;
}

.feature-num {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--chai);
    display: block;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--matcha);
}

@media (max-width: 1024px) {
    .about-section { padding: 80px 5%; }
    .about-container { flex-direction: column; gap: 60px; }
    .about-image { order: 2; width: 80%; margin: 0 auto; }
    .about-content { order: 1; text-align: center; }
    .about-features { justify-content: center; }
}





.services-section {
    padding: 120px 5% 120px 150px;
    background-color: var(--vanilla);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 80px;
}

.services-header {
    flex: 1;
}

.services-section .label-text {
    color: var(--carob);
}

.services-section .label-line {
    background-color: var(--carob);
}

.services-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--carob);
    margin-bottom: 50px;
    margin-top: -30px;
    max-width: 700px;
}

.pricing-overview {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border: 1px solid rgba(114, 92, 58, 0.1);
}

.price-item {
    text-align: left;
}

.location-tag {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--matcha);
    font-weight: 700;
    margin-bottom: 4px;
}

.location-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--carob);
    margin: 0 !important;
}

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--carob);
    border-bottom: 1px solid var(--chai);
    display: inline-block;
    margin-top: 5px;
}

.price-divider {
    width: 1px;
    height: 50px;
    background: rgba(114, 92, 58, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: var(--matcha);
    padding: 50px 40px;
    border: 1px solid rgba(210, 171, 128, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-radius: 10px;
}

.service-card:hover {
    background-color: var(--carob);
    transform: translateY(-10px);
    border-color: var(--chai);
}

.service-icon {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--chai);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--almond);
    margin-top: 10px;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-svg-icon {
    width: 40px;
    height: 40px;
    color: var(--chai);
    transition: all 0.4s ease;
    margin-top: -5px;
}

.card-svg-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .card-svg-icon {
    transform: rotate(15deg) scale(1.1);
    color: #fff;
}

.service-icon {
    margin: 0;
    line-height: 1;
}

@media (max-width: 1200px) {
    .services-section {
        padding: 100px 5%;
    }
    .services-top-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-overview {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
    }
    .price-divider {
        width: 50px;
        height: 1px;
    }
}

.services-header a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 26px 60px;
    background: var(--chai);
    color: var(--carob);
    text-decoration: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s;
}

.services-header a::before {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--carob);
    border-radius: 10px;
    transition: 0.3s;
}

.services-header a::before {
    content: "";
    width: 20px;
    height: 3px;
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.services-header a:hover::before {
    width: 45px;
}

.services-header a:hover {
    padding-left: 50px;
}

.header-main-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}





.pricing-section {
    padding: 120px 5% 120px 150px;
    background-color: #fff;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 90px;
}

.price-card {
    background: var(--almond);
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    transform: scale(0.95);
}

.price-card:hover {
    transform: scale(1);
}

.price-card.featured {
    background: var(--carob);
    color: var(--almond);
    transform: scale(1.1);
}

.price-card.featured:hover {
    transform: scale(1.15);
}

.price-card.featured h3,
.price-card.featured .price-amount .value,
.price-card.featured .price-header p {
    color: #fff;
}

.price-header {
    margin-bottom: 30px;
}

.price-tag {
    display: inline-block;
    padding: 12px 20px;
    background: var(--chai);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 10px;
    margin-bottom: 15px;
}

.price-header h3 {
    font-size: 1.8rem;
    font-family: var(--font-primary);
    margin-bottom: 10px;
}

.price-amount {
    margin-bottom: 30px;
}

.price-amount .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--carob);
}

.price-amount .currency {
    font-size: 1.3rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.price-amount .duration {
    font-size: 0.8rem;
    opacity: 0.7;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(114, 92, 58, 0.1);
    font-size: 0.8rem;
}

.price-card.featured .price-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-btn {
    display: block;
    text-align: center;
    padding: 18px;
    background: var(--matcha);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.price-btn:hover {
    background: var(--chai);
    transform: translateY(-3px);
}

.price-card.featured .price-btn {
    background: var(--chai);
}

.price-card.featured .price-btn:hover {
    background: #fff;
    color: var(--carob);
}

@media (max-width: 1024px) {
    .pricing-section { padding: 80px 5%; }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .price-card.featured { transform: scale(1); }
}






.contact-section {
    padding: 120px 0 0 0;
    background-color: var(--almond);
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 9% 80px 9%;
}

.contact-header-centered {
    margin-bottom: 60px;
}

.contact-header-centered .section-label {
    justify-content: center;
    margin-bottom: 30px;
}

.contact-header-centered h2 {
    font-size: 3.5rem;
    color: var(--carob);
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--carob);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-item-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 50px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(114, 92, 58, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.info-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(114, 92, 58, 0.12);
}

.info-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--matcha);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.contact-svg {
    width: 30px;
    height: 30px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-item-card:hover .info-icon-wrapper {
    background-color: var(--matcha);
    color: #fff;
    transform: scale(1.15);
}

.info-text span {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--chai);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-text p,
.info-text a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--carob);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--matcha);
}

.contact-map-full {
    width: 100%;
    height: 600px;
    line-height: 0;
    filter: grayscale(0.1) contrast(1.05);
    overflow: hidden;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-section { padding-top: 80px; }
    .contact-info-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .info-item-card { width: 100%; }
    .contact-header-centered h2 { font-size: 2.5rem; }
}






.gallery-section {
    padding: 120px 5%;
    background-color: #fff;
}

.gallery-grid {
    columns: 3 300px;
    column-gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    margin-bottom: 24px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #f8f8f8;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(10%);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(114, 92, 58, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid { columns: 2; }
}

@media (max-width: 600px) {
    .gallery-grid { columns: 1; }
}








.zen-footer {
    background-color: #fff;
    color: var(--almond);
    padding: 100px 5% 50px 5%;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand-hero {
    margin-bottom: 60px;
}

.footer-brand-hero .brand-logo {
    height: 220px;
    width: auto;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}

.footer-brand-hero a {
    text-decoration: none;
    display: inline-block;
}

.footer-brand-hero .brand-main {
    display: block;
    font-size: 2.2rem;
    color: var(--carob);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: -50px;
}

.footer-brand-hero .brand-tagline {
    display: block;
    color: var(--chai);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-contact-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    margin-bottom: 180px;
    flex-wrap: wrap;
}

.footer-contact-minimal .dot {
    width: 4px;
    height: 4px;
    background-color: var(--matcha);
    border-radius: 50%;
}

.footer-contact-minimal span {
    color: var(--carob);
}

.footer-bottom-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
}

.footer-bottom-simple p {
    color: var(--carob);
}

.footer-bottom-simple p a {
    color: var(--matcha);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom-simple p a:hover {
    color: var(--carob);
}

.zen-footer .brand-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-brand-hero .brand-main { font-size: 1.6rem; letter-spacing: 4px; }
    .footer-contact-minimal { flex-direction: column; gap: 15px; }
    .footer-contact-minimal .dot { display: none; }
    .footer-bottom-simple { flex-direction: column; gap: 15px; }
}





.faq-section {
    padding: 120px 5% 120px 150px;
    background-color: var(--vanilla);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

details {
    background: var(--almond);
    border-radius: 15px;
    padding: 20px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

details[open] {
    background: var(--almond);
}

summary {
    list-style: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--carob);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--matcha);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 15px;
    line-height: 1.6;
    color: var(--carob);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .faq-section { padding: 80px 5%; }
}





.vouchers-section {
    padding: 120px 5% 120px 150px;
    background-color: var(--almond);
}

.vouchers-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.vouchers-content {
    flex: 1;
}

.vouchers-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--carob);
}

.vouchers-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--carob);
}

.voucher-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.voucher-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--carob);
}

.voucher-benefits li span {
    color: var(--matcha);
    font-weight: 700;
}

.voucher-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-note {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--matcha);
}

.vouchers-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.voucher-card-mockup {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1.6 / 1;
    background: white;
    padding: 20px;
    box-shadow: 20px 20px 60px rgba(114, 92, 58, 0.1);
    border-radius: 5px;
    position: relative;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.voucher-card-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.mockup-inner {
    width: 100%;
    height: 100%;
    border: 1px solid var(--vanilla);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.mockup-logo {
    width: 80px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(10%) saturate(1030%) hue-rotate(54deg) brightness(92%) contrast(85%);
    margin-bottom: 20px;
}

.mockup-text strong {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--carob);
    margin-bottom: 10px;
}

.mockup-text span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--chai);
}

@media (max-width: 1024px) {
    .vouchers-section { padding: 80px 5%; }
    .vouchers-container { flex-direction: column; }
    .vouchers-content h2 { font-size: 2.5rem; }
    .services-section .section-label {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .services-section .header-main-row {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin-top: 5px;
        box-sizing: border-box;
    }
    .services-header .label-line { display: none; }
    .voucher-card-mockup { transform: rotate(0); }
}






.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--vanilla);
  padding: 1em 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-content {
  max-width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-content p {float:left;width:65%;font-size:13px;line-height:20px;color:var(--carob);}
.cookie-buttons button {
  background: var(--carob);
  color: var(--vanilla);
  border: 2px solid var(--carob);
  padding: 0.8em 2.2em;
  margin-left: 0.5em;
  cursor: pointer;
  font-size: 12px;
  border-radius: 30px;
}
.cookie-buttons button:hover {transform:scale(1.1);}

@media only screen and
    (min-width: 240px) and
    (max-width: 1185px) {

    .cookie-content {max-width:90%;}
    .cookie-content p {width:100%;margin-bottom:10px;}
    
}







@media (max-width: 1600px) {
    .content-side {
        padding: 0 5%;
    }
    .social-sidebar {
        left: 20px;
    }
}

@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
        min-height: auto;
    }

    .content-side {
        width: 100%;
        padding: 0 5%;
        order: 1;
        min-height: auto;
    }

    .image-side {
        width: 100%;
        height: 400px;
        order: 2;
        justify-content: center;
        align-items: center;
    }

    .image-container, .main-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) !important;
        animation: none;
    }

    .vertical-axis {
        display: none;
    }
    
    .brand-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .top-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 0 30px 0;
    }

    .top-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .top-nav ul a {
        font-size: 1.75rem;
    }

    .hero-text-wrapper {
        margin: 60px auto;
        text-align: center;
    }

    .hero-text-wrapper h1 {
        font-size: 3.2rem;
        margin-top: 20px;
    }

    .hero-text-wrapper strong {
        justify-content: center;
    }
    
    .social-sidebar {
        position: relative;
        left: 0;
        top: 0;
        flex-direction: row;
        justify-content: center;
        padding: 40px 0;
        transform: none;
        order: 3;
    }
}

@media (max-width: 1200px) {
    .services-section,
    .pricing-section,
    .faq-section,
    .vouchers-section {
        padding: 80px 5% 80px 100px;
    }
}

@media (max-width: 992px) {
    .services-section,
    .pricing-section,
    .faq-section,
    .vouchers-section {
        padding: 80px 5%;
    }
    
    .services-top-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-map-full {
        height: 350px;
    }
    .info-item-card {
        padding: 30px 20px;
    }
    .contact-header-centered h2 {
        font-size: 2.2rem;
    }
}