@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&family=Jost:wght@200;300;400&display=swap');

:root {
    --wine: #4A171E;
    --wine-2: #541B23;
    --rose: #D9A192;
    --rose-2: #E8BFB2;
    --rose-soft: #F6DFD5;
    --white: #F1EDE2;
    --wine-ink: #4E1B22;
    --rose-deep: #B07A67;
    --line: rgba(232,191,178,.28);
    --line-wine: rgba(94,33,41,.22);
    
    --logo: "Cinzel", Georgia, serif;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Jost", system-ui, sans-serif;
    
    --ease: cubic-bezier(.22,1,.36,1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    background: var(--wine);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* TOPBAR / HEADER */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 900;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .5s var(--ease), border-color .5s var(--ease);
}

.topbar.scrolled {
    background: var(--wine);
    border-bottom: 1px solid var(--line);
}

.topbar .brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.topbar .brand .wm {
    font-family: var(--logo);
    letter-spacing: .4em;
    text-indent: .4em;
    font-size: 28px;
    color: var(--white);
    display: block;
    text-align: center;
}

.topbar .brand .brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.topbar .brand .wm-sub {
    font-family: var(--sans);
    font-size: 15px;
    letter-spacing: .3em;
    text-indent: .3em;
    color: var(--rose-soft);
    margin-top: 2px;
    text-align: center;
}

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

.topbar .links a {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--white);
    text-decoration: none;
    transition: .3s;
}

.topbar .links a:hover {
    color: var(--rose);
}

.topbar .book {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #3A1016;
    background: var(--rose);
    padding: 14px 28px;
    border-radius: 24px;
    text-decoration: none;
    transition: .3s;
}

.topbar .book:hover {
    background: var(--white);
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.mobile-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: .3s;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(74, 23, 30, 0.4), var(--wine));
    z-index: -1;
}

.hero .brand .wm {
    font-family: var(--logo);
    font-weight: 400;
    color: var(--white);
    font-size: clamp(38px, 5.4vw, 72px);
    letter-spacing: .5em;
    text-indent: .5em;
    margin-top: 26px;
    text-shadow: 0 2px 24px rgba(0,0,0,.8);
    display: block;
}

.hero .subtitle {
    font-family: var(--serif);
    font-size: clamp(20px, 2.5vw, 32px);
    font-style: italic;
    color: var(--rose-soft);
    margin-top: 20px;
}

.hero-tagline {
    font-family: var(--serif);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-top: -80px;
    letter-spacing: 2px;
}

.hero-tagline-large {
    font-size: clamp(34px, 4.5vw, 64px);
    display: inline-block;
    margin-bottom: 10px;
}

/* SECTIONS */
.section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--white);
    background: var(--wine);
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
    border: 1px solid var(--wine);
}

.btn-primary:hover {
    background: transparent;
    color: var(--wine);
}

.section-logo {
    display: block;
    height: 200px;
    width: auto;
    margin: -60px auto -40px auto;
    object-fit: contain;
}

.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.05;
    color: var(--rose);
    text-align: center;
    margin-bottom: 50px;
}

.section-light-wrapper {
    background-color: var(--white);
    color: var(--wine-ink);
    width: 100%;
}
.section-light-wrapper p {
    color: var(--wine-ink);
    font-weight: 400;
}

/* SPACES */
.spaces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.spaces-image {
    position: relative;
    min-height: 400px;
}

.spaces-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (min-width: 901px) {
    .spaces-image img {
        position: absolute;
        right: 0;
        top: 0;
        width: calc(50vw - 25px);
        max-width: none;
        border-radius: 0 4px 4px 0;
    }
}

.spaces-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* MENUS */
.menus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 840px;
    margin: 0 auto;
}

/* Ensure each menu card has fixed width */
.menus-grid a {
    flex: 0 0 260px;
    display: block;
}

.menu-card { 
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(163, 129, 72, 0.4);
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 23, 30, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.menu-overlay::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(163, 129, 72, 0.3);
    border-radius: 2px;
    pointer-events: none;
    transition: border-color .3s;
}

.menu-card:hover .menu-overlay::before {
    border-color: rgba(163, 129, 72, 0.8);
}

.menu-card:hover img {
    transform: scale(1.05);
}
.menu-card:hover .menu-overlay {
    background: rgba(74, 23, 30, 0.2);
}

.menu-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
    transition: transform .3s;
}

.view-menu-btn {
    margin-top: 15px;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 28px;
    border-radius: 30px;
    transition: .4s var(--ease);
    opacity: 0;
    transform: translateY(15px);
}

.menu-card:hover .view-menu-btn {
    opacity: 1;
    transform: translateY(0);
    background: var(--white);
    color: var(--wine-ink);
    border-color: var(--white);
}

/* PARALLAX BANNER */
.parallax-banner {
    width: 100%;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

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

/* MODAL */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--rose);
    text-decoration: none;
    cursor: pointer;
}

/* FOOTER & JOIN US */
.fin {
    padding: 80px 40px 40px;
    background: var(--wine-2);
}

.rwrap {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.rinfo {
    flex: 1 1 300px;
}

.rinfo h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 30px;
}

.rinfo h2 em {
    font-style: italic;
    color: var(--rose-soft);
}

.rfacts {
    list-style: none;
    padding: 0;
}

.rfacts li {
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--white);
}

.rfacts li span {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--rose);
    margin-bottom: 5px;
}

.rfacts li a {
    color: inherit;
    text-decoration: none;
    transition: .3s;
}

.rfacts li a:hover {
    color: var(--white);
}

.rmap {
    flex: 1 1 400px;
}

.rmap iframe {
    filter: invert(95%) hue-rotate(180deg) brightness(85%) contrast(105%);
}

.fin .foot {
    padding: 40px 0 0;
    margin-top: 60px;
    border-top: 1px solid var(--line-wine);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
}

.fin .foot .wm {
    font-family: var(--logo);
    letter-spacing: .3em;
    text-indent: .3em;
    font-size: 14px;
    color: var(--rose-soft);
}

.fin .foot .addr {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 12px;
    color: var(--rose-soft);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fin .foot .addr .fl {
    white-space: nowrap;
}

.fin .foot .legallinks {
    display: flex;
    gap: 16px;
}

.fin .foot .legallinks a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 12px;
    color: var(--rose-soft);
    text-decoration: none;
    transition: .3s;
}

.fin .foot .legallinks a:hover {
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .parallax-banner {
        background-attachment: scroll;
        background-position: center;
    }

    .topbar {
        padding: 0;
    }
    
    .topbar .brand {
        margin-left: -15px;
    }

    .mobile-toggle {
        margin-right: 20px;
    }
    
    .topbar .brand .wm {
        font-size: 20px;
    }
    
    .topbar .brand .wm-sub {
        font-size: 11px;
    }
    
    .topbar .links {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--wine);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        opacity: 0;
        transition: .4s var(--ease);
        z-index: 800;
        pointer-events: none;
    }
    
    .topbar .links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .topbar .links a {
        font-size: 18px;
    }
    
    .topbar .book {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .menus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
}
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .fin .foot {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}
