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

:root {
    --primary-color: #5B4A3E;
    /* Urban Espresso */
    --secondary-color: #8A8077;
    /* Pavement Shadow */
    --accent-color: #CBBFAF;
    /* Luxe Oat */
    --accent-dark: #8A8077;
    --text-color: #5B4A3E;
    --text-muted: #8A8077;
    --bg-light: #F6F2EB;
    /* Sunlit Veil */
    --bg-secondary: #E8DED4;
    /* Ivory Silk */
    --white: #ffffff;
    --elegant-gradient: linear-gradient(135deg, #CBBFAF 0%, #E8DED4 100%);
    --marble-bg: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url('https://www.transparenttextures.com/patterns/marble-similar.png');
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
.script-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    position: relative;
}

.reveal-text span {
    display: inline-block;
    animation: revealUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    transform: translateY(100%);
}

@keyframes revealUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Flying Bokeh Bubbles Effect */
.bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg-light);
}

.bokeh-orb {
    position: absolute;
    bottom: -20%;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    animation: fly-bubbles 25s infinite linear;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    left: 10%;
    animation-duration: 20s;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: var(--bg-secondary);
    left: 45%;
    animation-duration: 35s;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    left: 75%;
    animation-duration: 28s;
    animation-delay: -14s;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: #D4C9BC;
    left: 25%;
    animation-duration: 40s;
    animation-delay: -21s;
}

.orb-5 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    left: 60%;
    animation-duration: 32s;
    animation-delay: -5s;
}

@keyframes fly-bubbles {
    0% {
        transform: translateY(0) translateX(0) scale(1.0);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    50% {
        transform: translateY(-60vh) translateX(50px) scale(1.2);
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-120vh) translateX(-20px) scale(1.0);
        opacity: 0;
    }
}

.shimmer-text {
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-premium 4s linear infinite;
}

@keyframes shimmer-premium {
    to {
        background-position: 200% center;
    }
}

@keyframes blur-in {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mask-reveal-side {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.reveal-mask {
    animation: mask-reveal-side 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.blur-reveal {
    animation: blur-in 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(91, 74, 62, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(91, 74, 62, 0.2);
}

.btn-elegant {
    background: var(--elegant-gradient);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(203, 191, 175, 0.2);
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(203, 191, 175, 0.3);
}

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

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

/* Top Bar */
.top-bar {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar-text {
        font-size: 0.65rem;
    }

    .top-bar-link {
        font-size: 0.65rem;
        margin-left: 10px !important;
    }
}

.top-bar a {
    color: inherit;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-links a.btn-primary {
    color: var(--white) !important;
}

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

.nav-links a.btn-primary:hover {
    color: var(--white) !important;
    opacity: 0.9;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.location-image {
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1.5s ease-in-out;
}

.location-image img.slide-1 {
    animation: fade-base 12s infinite;
}

.location-image img.slide-2 {
    animation: fade-alt 12s infinite;
}

@keyframes fade-base {

    0%,
    40% {
        opacity: 1;
        z-index: 2;
    }

    50%,
    90% {
        opacity: 0;
        z-index: 1;
    }

    100% {
        opacity: 1;
        z-index: 2;
    }
}

@keyframes fade-alt {

    0%,
    40% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    90% {
        opacity: 1;
        z-index: 2;
    }

    100% {
        opacity: 0;
        z-index: 1;
    }
}

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

.location-info h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.location-info i {
    width: 20px;
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

.opening-hours {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.opening-hours strong {
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.opening-hours p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.opening-hours p span {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .location-image {
        height: 300px;
    }
}

.hero {
    padding: 140px 0 120px;
    background: radial-gradient(circle at top right, var(--bg-secondary) 0%, var(--bg-light) 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    text-align: left;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-img {
    position: absolute;
    background: white;
    padding: 12px 12px 40px 12px;
    /* Printed effect */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    border-radius: 2px;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
}

.img-1 {
    width: 330px;
    height: 420px;
    z-index: 2;
    top: -20px;
    left: -20px;
    transform: rotate(5deg);
    animation: float-soft-1 8s ease-in-out infinite;
}

.img-2 {
    width: 310px;
    height: 390px;
    z-index: 1;
    bottom: -20px;
    right: -20px;
    transform: rotate(-8deg);
    animation: float-soft-2 10s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    z-index: 10;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 2px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.badge-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

@keyframes float-soft-1 {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(7deg);
    }
}

@keyframes float-soft-2 {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }
}

/* Hero Decoration Sparkles */
.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.decor-1 {
    top: 15%;
    left: 5%;
    animation: float-slow 12s infinite ease-in-out;
    color: var(--accent-color);
    font-size: 1.5rem;
    opacity: 0.4;
}

.decor-2 {
    bottom: 25%;
    left: 40%;
    animation: float-slow 15s infinite ease-in-out reverse;
    color: var(--secondary-color);
    font-size: 1rem;
    opacity: 0.3;
}

.decor-3 {
    top: 20%;
    right: 15%;
    animation: float-slow 10s infinite ease-in-out;
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0.4;
}

.decor-4 {
    bottom: 15%;
    right: 45%;
    animation: float-slow 18s infinite ease-in-out;
    color: var(--secondary-color);
    font-size: 0.8rem;
    opacity: 0.3;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(15deg);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image-wrapper {
        height: 450px;
        order: 2;
    }

    .hero-main-title {
        font-size: 3.2rem;
    }

    .hero-sub-title {
        font-size: 2.5rem;
        z-index: 10;
        position: relative;
    }

    .img-1 {
        width: 260px;
        height: 320px;
        left: 10%;
    }

    .img-2 {
        width: 240px;
        height: 300px;
        right: 10%;
    }
}

.hero-main-title {
    display: block;
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-sub-title {
    display: block;
    font-size: 4.8rem;
    line-height: 1.1;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 5s infinite linear;
    position: relative;
    z-index: 10;
}

@keyframes shimmer-text {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}


/* About Section */
.about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.about-grid::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: translateY(-10px);
}

.owner-image {
    width: 100%;
    border-radius: 4px;
}

.image-host-label {
    display: block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.script-font-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
    margin-right: 5px;
    vertical-align: middle;
}

.owner-title {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.owner-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.owner-greeting {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.owner-name-italic {
    font-style: italic;
    color: var(--secondary-color);
}

.owner-text-wrapper p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Services / Accordion */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.locations {
    padding: 120px 0;
}

.service-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.accordion-header {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.accordion-content {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 40px 40px 40px;
    max-height: 2000px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
}

/* Gallery */
.gallery {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
}

.gallery-item:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 4;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
}

.gallery-item:nth-child(4) {
    grid-column: span 3;
}

.gallery-item:nth-child(5) {
    grid-column: span 5;
}

.gallery-item:nth-child(6) {
    grid-column: span 4;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-rows: repeat(3, 250px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 6;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 6;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 6;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 6;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 6;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 300px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: zoom-in;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2D2520;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-links h4 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #A89D93;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-block a {
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #8A8077;
}

/* Responsive Utilities */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        text-align: center;
    }

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

    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* WhatsApp Float */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(91, 74, 62, 0.3);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-main-btn:hover {
    transform: scale(1.1);
}