:root {
    --wine: #a8202c;
    --gold: #ecb42c;
    --ink: #282626;
    --muted: #6c6865;
    --paper: #f7f4ef;
    --line: #d6c7ba;
    --white: #fff;
    --shadow: 0 20px 50px rgba(35, 24, 16, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white)
}

body.menu-open {
    overflow: hidden
}

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

a {
    text-decoration: none;
    color: inherit
}

.section-pad {
    padding: 110px clamp(24px, 7vw, 110px)
}

.eyebrow {
    letter-spacing: .12em;
    font-size: .82rem;
    font-weight: 700;
    color: var(--wine);
    margin-bottom: 14px
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;

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

    padding: 18px clamp(24px, 6vw, 92px);

    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;

    transform: translateY(0);

    transition:
        transform 0.5s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    will-change: transform, background-color;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.has-background {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(168, 32, 44, 0.08);
    box-shadow: 0 10px 30px rgba(35, 24, 16, 0.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.solid {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eee;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.brand {
    font-weight: 700;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    color: var(--wine);
    letter-spacing: -.02em
}

.menu-toggle {
    width: 46px;
    height: 42px;
    border: 0;
    background: transparent;
    display: grid;
    align-content: center;
    gap: 7px
}

.menu-toggle span {
    height: 3px;
    background: var(--wine);
    display: block;
    border-radius: 9px
}

.menu-panel {
    position: fixed;
    z-index: 80;
    right: 0;
    top: 0;
    width: min(430px, 88vw);
    height: 100vh;
    background: var(--paper);
    padding: 80px 50px;
    transform: translateX(105%);
    transition: .35s ease;
    box-shadow: var(--shadow)
}

.menu-panel.open {
    transform: none
}

.menu-panel nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 45px
}

.menu-panel nav a {
    font: 600 2rem 'Playfair Display', serif;
    color: var(--wine)
}

.menu-close {
    position: absolute;
    right: 28px;
    top: 18px;
    font-size: 2.6rem;
    border: 0;
    background: none;
    color: var(--wine)
}

.menu-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px
}

.menu-backdrop {
    position: fixed;
    z-index: 70;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.menu-backdrop.show {
    opacity: 1;
    visibility: visible
}

.btn {
    border-radius: 0;
    padding: 17px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em
}

.btn-gold {
    background: var(--gold);
    color: white;
    border: 2px solid var(--gold)
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: #c38e0b;
    background: white
}

.hero {
    height: 100vh;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;

    padding: 0;
    overflow: hidden;
}

/* .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 4vw 70px;
    position: relative
} */

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 4vw 70px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* .hero-copy:before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border: 22px solid #ddd2c7;
    border-radius: 50%;
    left: -130px;
    top: 150px;
    z-index: -1;
    opacity: .75
} */

.hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("/assets/images/hero-background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.hero h1,
.about-content h2,
.section-heading h2,
.gallery-intro h2,
.review-card h2,
.menu-main h1 {
    font-family: 'Playfair Display', serif;
    color: var(--wine);
    font-size: clamp(2.6rem, 5vw, 5.3rem);
    line-height: 1.03
}

.hero-offer {
    font-size: clamp(1.15rem, 2.1vw, 1.8rem);
    color: var(--wine);
    font-weight: 600;
    margin: 18px 0 34px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.hero-media {
    position: relative;
    display: block;
    min-height: 760px;
    overflow: hidden;

    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hero-slider {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;

    width: 100%;
    height: 100%;

    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;

    width: 100%;
    height: 100%;
}

.hero-slide-link {
    display: block;

    width: 100%;
    height: 100%;
}

.hero-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

/* 
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
} */

.hero-mark {
    position: absolute;
    right: 20px;
    bottom: 30px;
    z-index: 5;

    color: rgba(255, 255, 255, 0.8);
    writing-mode: vertical-rl;

    font-size: clamp(48px, 6vw, 90px);
    font-weight: 700;
    line-height: 1;
}

/* .hero-mark {
    position: absolute;
    right: -15px;
    bottom: 40px;
    writing-mode: vertical-rl;
    font-weight: 800;
    font-size: 6rem;
    color: rgba(255, 255, 255, .7)
} */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 760px
}

.about-content {
    background: #fafafa;

    display: flex;
    flex-direction: column;

    min-height: 760px;
    padding: 0;
}

.about-content-inner {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 8vw;
}

.about-content h2 {
    font-size: clamp(2.4rem, 4vw, 4rem)
}

.about-content>p:not(.eyebrow) {
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.7
}

.about-content-inner .btn {
    align-self: flex-start;
    margin-top: 18px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 100%;
    margin: 0;
    margin-top: auto;
}

.stats div {
    padding: 34px 18px;
    text-align: center;
    color: white
}

.stats div:nth-child(1) {
    background: #c7b6a8
}

.stats div:nth-child(2) {
    background: var(--gold)
}

.stats div:nth-child(3) {
    background: var(--wine)
}

.stats strong {
    display: block;
    font-size: 2.4rem
}

.stats span {
    font-weight: 600
}

.offers-section {
    background: var(--paper)
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4rem)
}

.section-heading p:last-child {
    color: var(--muted);
    font-size: 1.1rem
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.offer-card {
    background: white;
    padding: 42px;
    border: 1px solid var(--line);
    min-height: 290px
}

.offer-card>span {
    color: var(--gold);
    font-weight: 800
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--wine);
    font-size: 1.8rem;
    margin-top: 35px
}

.offer-card p {
    color: var(--muted)
}

.text-link {
    color: var(--wine);
    font-weight: 700
}

.gallery-section {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));

    width: 100%;
    height: 165px;

    padding: 0 clamp(24px, 4vw, 70px);
    margin: 20px 0;

    overflow: hidden;
    background: var(--white);
}

.gallery-intro {
    grid-column: 1 / 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-right: 22px;
}

.gallery-intro .eyebrow {
    margin: 0 0 8px;
}

.gallery-intro h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    line-height: 1.05;
    color: var(--wine);
}

.gallery-slider {
    grid-column: 2 / 6;

    width: 100%;
    height: 165px;

    overflow: hidden;
}

.gallery-track {
    display: flex;

    width: 100%;
    height: 100%;

    transition: transform 0.65s ease-in-out;
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 25%;

    width: 25%;
    height: 165px;

    margin: 0;
    overflow: hidden;
}

.gallery-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.gallery-controls {
    grid-column: 6 / 7;

    justify-content: center;
}

.slider-arrow-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-arrow-controls button {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;
    padding: 0;

    border: 2px solid var(--gold);
    border-radius: 50%;

    background: var(--white);
    color: var(--ink);

    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.slider-arrow-controls button:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

.slider-arrow-controls button:focus-visible {
    outline: 3px solid rgba(236, 180, 44, 0.35);
    outline-offset: 3px;
}

.reviews-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0
}

.review-controls {
    margin-top: 28px;
    justify-content: flex-start;
}

.review-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 60px
}

.review-visual img {
    max-height: 650px;
    object-fit: contain
}

.review-card {
    background: #e9e5e1;
    padding: 90px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.review-card h2 {
    font-size: clamp(2.5rem, 4vw, 4.5rem)
}

.review-slider blockquote {
    display: none;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #5f5b58;
    margin-top: 30px
}

.review-slider blockquote.active {
    display: block
}

.review-slider cite {
    display: block;
    color: var(--wine);
    font-style: normal;
    font-weight: 700;
    margin-top: 24px
}

.contact-section iframe {
    width: 100%;
    height: 450px;
    border: 0
}

.footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-top: 70px;
    padding-bottom: 70px
}

.footer h3,
.footer h4 {
    color: var(--wine)
}

.footer a {
    color: var(--wine)
}

.whatsapp-float {
    position: fixed;
    z-index: 45;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow)
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.back-home {
    color: var(--wine);
    font-weight: 700
}

.sticky-actions {
    position: static;

    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;

    background: var(--white);
    padding: 18px;
    margin: 0 auto 30px;
}

.menu-main {
    padding-top: 100px;
    padding-left: clamp(16px, 3vw, 48px);
    padding-right: clamp(16px, 3vw, 48px);
}

.menu-image-link {
    display: block;
    cursor: zoom-in;
}

.menu-image-link:focus-visible {
    outline: 3px solid rgba(236, 180, 44, 0.45);
    outline-offset: 4px;
}

.menu-images {
    display: grid;
    gap: 35px;

    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}

.menu-image {
    display: block;

    width: 100%;
    height: auto;

    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.announcement-popup {
    position: fixed;
    z-index: 999;

    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.announcement-popup.show {
    display: flex;
}

.announcement-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.announcement-dialog {
    position: relative;
    z-index: 1;

    width: min(92vw, 760px);
    max-height: 88vh;

    animation: announcementFadeIn 0.28s ease;
}

.announcement-dialog img {
    display: block;

    width: 100%;
    max-height: 88vh;

    object-fit: contain;

    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.announcement-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 2;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: var(--white);
    color: var(--wine);

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;
    box-shadow: var(--shadow);
}

@keyframes announcementFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

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

body.announcement-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .announcement-popup {
        padding: 14px;
    }

    .announcement-dialog {
        width: 96vw;
        max-height: 86vh;
    }

    .announcement-dialog img {
        max-height: 86vh;
        border-radius: 8px;
    }

    .announcement-close {
        top: -12px;
        right: -8px;

        width: 38px;
        height: 38px;

        font-size: 1.8rem;
    }
}

@media(max-width:980px) {

    .hero {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        min-height: 0;

        grid-template-columns: 1fr;
        grid-template-rows: 58% 42%;

        overflow: hidden;
    }

    .hero-copy {
        min-width: 0;
        min-height: 0;

        justify-content: center;

        padding: 82px 32px 28px;
        overflow: hidden;
    }

    .hero-media {
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .about-grid,
    .reviews-section {
        grid-template-columns: 1fr;
    }

    .about-content {
        min-height: auto;
    }

    .about-content-inner {
        padding: 75px 7vw;
    }

    .stats {
        margin: 0;
    }

    .offer-grid {
        grid-template-columns: 1fr
    }

    .gallery-section {
        grid-template-columns: 1fr repeat(3, minmax(0, 1fr)) 1fr;
        height: 165px;
        padding: 0 24px;
    }

    .gallery-intro {
        grid-column: 1 / 2;
    }

    .gallery-slider {
        grid-column: 2 / 5;
    }

    .gallery-controls {
        grid-column: 5 / 6;
    }

    .gallery-slide {
        flex-basis: calc(100% / 3);
        width: calc(100% / 3);
    }

    .footer {
        grid-template-columns: 1fr 1fr
    }

    .review-visual {
        min-height: 420px
    }

    .site-header {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.has-background {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

@media(max-width:640px) {
    .section-pad {
        padding: 80px 22px
    }

    .hero {
        height: auto;
        min-height: 100dvh;

        grid-template-columns: 1fr;
        grid-template-rows: auto 55dvh;

        padding: 0;
        overflow: visible;
    }

    .hero-copy {
        min-height: 100dvh;

        justify-content: center;

        padding:
            100px 22px 48px;

        overflow: hidden;
    }

    .hero h1 {
        margin: 18px 0 0;

        font-size: clamp(2.65rem, 13vw, 4rem);
        line-height: 1;
    }

    .hero .eyebrow {
        margin-bottom: 10px;
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .hero-offer {
        margin: 22px 0 28px;
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .hero-copy::before {
        inset: 0;
        width: 100%;
        height: 100%;

        background-size: cover;
        background-position: center;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 14px 18px;
        text-align: center;
    }

    .hero-media {
        width: 100%;
        height: 55dvh;
        min-height: 360px;
    }

    .about-content {
        padding: 0;
    }

    .about-content-inner {
        padding: 70px 24px;
    }

    .stats {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .gallery-section {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto 165px;

        width: 100%;
        height: auto;

        padding: 28px 20px;
        gap: 20px 0;

        overflow: hidden;
    }

    .gallery-intro {
        grid-column: 1 / 2;
        grid-row: 1;

        padding: 0;
        justify-content: center;
    }

    .gallery-intro h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .gallery-controls {
        grid-column: 3 / 4;
        grid-row: 1;

        justify-content: flex-end;
        align-self: center;
    }

    .gallery-slider {
        grid-column: 1 / 4;
        grid-row: 2;

        width: 100%;
        height: 165px;
    }

    .gallery-slide {
        flex: 0 0 calc(100% / 3);
        width: calc(100% / 3);
        height: 165px;
    }

    .slider-arrow-controls {
        gap: 10px;
    }

    .slider-arrow-controls button {
        width: 42px;
        height: 42px;
        font-size: 1.45rem;
    }

    .footer {
        grid-template-columns: 1fr
    }

    .menu-images {
        gap: 20px;
    }

    .menu-image {
        width: 100%;
    }

    .menu-panel {
        padding: 70px 28px
    }

    .menu-panel nav a {
        font-size: 1.7rem
    }

    .sticky-actions {
        top: 82px
    }

    .sticky-actions .btn {
        width: 100%;
        text-align: center
    }
}