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

html {
    scroll-behavior: smooth
}

body {
    background: #BF8C80;
    color: #2d211b;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden
}

img {
    width: 100%;
    display: block
}

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

:root {
    --cream: #f8f5f0;
    --cream-dark: #eee7dc;
    --brown: #2d211b;
    --gold: #b99a6b
}

.container {
    width: min(1180px, 90%);
    margin: auto
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: .7s
}

.loader.hide {
    opacity: 0;
    visibility: hidden
}

.loader-content {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: pulse 1.5s infinite
}

.loader-content span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: var(--cream)
}

@keyframes pulse {
    50% {
        transform: scale(1.12);
        opacity: .6
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: .4s
}

header.scrolled {
    background: rgba(248, 245, 240, .96);
    backdrop-filter: blur(15px);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px
}

.logo small {
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 5px
}

.nav {
    display: flex;
    gap: 35px
}

.nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative
}

.nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--gold);
    bottom: -6px;
    left: 0;
    transition: .3s
}

.nav a:hover:after {
    width: 100%
}

.nav-button {
    background: var(--brown);
    color: white;
    padding: 13px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s
}

.nav-button:hover {
    background: var(--brown);
    transform: translateY(-2px)
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 25px;
    cursor: pointer
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: .5s
}

.mobile-menu.active {
    right: 0
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px
}

.hero {
    min-height: 100vh;
    background: url("images/fondo.png") center/cover;
    position: relative;
    display: flex;
    align-items: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 25, 20, .78), rgba(35, 25, 20, .25))
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 850px
}

.subtitle,
.section-tag {
    font-size: 10px;
    letter-spacing: 3px;
    color: var();
    margin-bottom: 20px
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .9;
    font-weight: 500
}

.hero h1 span {
    display: block;
    font-style: italic
}

.hero-description {
    max-width: 560px;
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8)
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: .35s
}

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

.btn-primary:hover,
.btn-dark:hover,
.btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2)
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .6)
}

.btn-outline:hover {
    background: rgba(138, 81, 81, 0.589);
    color: var(--brown)
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    right: 5%;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    letter-spacing: 2px;
    writing-mode: vertical-rl
}

.scroll-indicator div {
    height: 55px;
    width: 1px;
    background: var(--gold)
}

section {
    padding: 120px 0
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 90px
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 65px;
    font-weight: 500;
    margin-bottom: 20px
}

.section-header p {
    line-height: 1.8;
    color: #070707
}

.intro {
    background: var(--cream-dark);
    text-align: center
}

.intro-content {
    max-width: 800px
}

.intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(45px, 6vw, 75px);
    font-weight: 500;
    line-height: 1
}

.intro h2 span {
    display: block;
    font-style: italic;
    color: var(--gold)
}

.intro p:last-child {
    max-width: 650px;
    margin: 30px auto 0;
    line-height: 1.9;
    color: #66574f
}

.menu-category {
    margin-bottom: 140px
}

.category-title {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 55px
}

.category-title>span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold)
}

.category-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 500
}

.category-title p {
    color: #070707;
    font-size: 13px;
    margin-top: 5px
}

.featured-product {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 550px
}

.featured-image {
    overflow: hidden
}

.featured-image img {
    height: 100%;
    object-fit: cover;
    transition: .8s
}

.featured-product:hover img {
    transform: scale(1.05)
}

.featured-info {
    background: var(--brown);
    color: white;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.featured-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 25px
}

.featured-info>p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
    margin-bottom: 30px
}

.text-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brown)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.product-card {
    background: white;
    transition: .4s
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08)
}

.product-image {
    height: 330px;
    overflow: hidden;
    position: relative
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.product-card:hover img {
    transform: scale(1.08)
}

.product-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 8px 11px;
    font-size: 10px
}

.product-content {
    padding: 25px
}

.product-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 12px
}

.product-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #78685f;
    margin-bottom: 20px
}

.product-content a {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold)
}

.tequenos-layout,
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.tequenos-image,
.about-image {
    height: 650px;
    overflow: hidden
}

.tequenos-image img,
.about-image img {
    height: 100%;
    object-fit: cover
}

.tequenos-content h3,
.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    line-height: .95;
    font-weight: 500;
    margin-bottom: 25px
}

.tequenos-content h3 span,
.about-content h2 span {
    display: block;
    font-style: italic;
    color: var( --cream)
}

.tequenos-content>p,
.about-content>p {
    line-height: 1.9;
    color: #0c0c0c
}

.options {
    margin: 35px 0
}

.option {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd3c8
}

.option span {
    color: var(#000000);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px
}

.option h4 {
    font-size: 14px;
    margin-bottom: 7px
}

.option p {
    font-size: 12px;
    color: #000000
}

.btn-dark {
    background: var(--brown);
    color: white
}

.about {
    background: var(--cream-dark)
}

.about-grid {
    gap: 100px
}

.about-content h2 {
    font-size: 65px;
    line-height: 1
}

.about-content>p {
    margin-bottom: 18px
}

.about-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px
}

.about-signature .line {
    width: 60px;
    height: 1px;
    background: var(--gold)
}

.about-signature span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-style: italic
}

.cta {
    background: var(--brown);
    color: white;
    text-align: center
}

.cta .container {
    max-width: 850px
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 500;
    line-height: .95;
    margin-bottom: 40px
}

.cta h2 span {
    display: block;
    font-style: italic;
    color: var(--gold)
}

.btn-light {
    background: var(--cream);
    color: var(--brown)
}

.btn-light:hover {
    background: var(--gold);
    color: white
}

.contact-grid {
    gap: 60px
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 65px;
    font-weight: 500;
    margin-bottom: 20px
}

.contact-info>p {
    color: #76665d;
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 40px
}

.contact-link {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #d9cfc4;
    transition: .3s
}

.contact-link:hover {
    padding-left: 10px;
    color: var(--gold)
}

.contact-link span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact-link strong {
    font-size: 12px;
    font-weight: 500
}

.contact-message {
    background: var(--cream-dark);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px
}

.contact-message p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-style: italic;
    line-height: 1.1
}

footer {
    background: #211813;
    color: white;
    padding: 45px 0
}

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

.footer-logo {
    display: flex;
    flex-direction: column
}

.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    letter-spacing: 4px
}

.footer-logo small {
    font-size: 7px;
    letter-spacing: 3px;
    margin-top: 4px
}

.footer-content p {
    font-size: 10px;
    color: rgba(255, 255, 255, .5)
}

.footer-content>a {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold)
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .9s, transform .9s
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1000px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .featured-product {
        grid-template-columns: 1fr
    }

    .featured-image {
        height: 450px
    }

    .tequenos-layout {
        gap: 40px
    }
}

@media(max-width:768px) {
    header {
        padding: 15px 0
    }

    .nav,
    .nav-button {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .hero {
        min-height: 100svh
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(35, 25, 20, .8), rgba(35, 25, 20, .45))
    }

    .hero h1 {
        font-size: 58px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start
    }

    section {
        padding: 85px 0
    }

    .section-header {
        margin-bottom: 60px
    }

    .section-header h2 {
        font-size: 52px
    }

    .featured-info {
        padding: 45px 30px
    }

    .featured-info h3 {
        font-size: 45px
    }

    .tequenos-layout,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .tequenos-image,
    .about-image {
        height: 500px
    }

    .about-grid {
        gap: 50px
    }

    .contact-message {
        min-height: 300px
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center
    }
}

@media(max-width:550px) {
    .products-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 50px
    }

    .hero-description {
        font-size: 13px
    }

    .scroll-indicator {
        display: none
    }

    .category-title h3 {
        font-size: 38px
    }

    .tequenos-content h3 {
        font-size: 48px
    }

    .about-content h2 {
        font-size: 52px
    }

    .contact-info h2 {
        font-size: 55px
    }
}

.cart-button {
    border: 1px solid var(--brown);
    background: transparent;
    padding: 11px 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    transition: .3s
}

.cart-button:hover {
    background: var(--brown);
    color: white
}

.cart-button span {
    background: var(--gold);
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    margin-left: 4px
}

.add-product {
    border: none;
    background: none;
    color: var(#000);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 0;
    transition: .3s
}

.add-product:hover {
    transform: translateX(5px)
}

.dark-add {
    color: var(--gold);
    text-align: left
}

.small-add {
    font-size: 9px
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 2000
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible
}

.cart {
    position: fixed;
    right: -520px;
    top: 0;
    width: min(500px, 100%);
    height: 100vh;
    background: #f8f5f0;
    z-index: 2001;
    padding: 35px;
    overflow-y: auto;
    transition: right .5s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15)
}

.cart.active {
    right: 0
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #d9cfc4;
    padding-bottom: 25px
}

.cart-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500
}

.close-cart {
    border: none;
    background: none;
    font-size: 40px;
    cursor: pointer;
    color: var(--brown)
}

.cart-items {
    padding: 20px 0;
    min-height: 130px
}

.empty-cart {
    color: #806f65;
    font-size: 13px;
    padding: 25px 0
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #ddd3c8
}

.cart-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 12px
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #b99a6b;
    background: white;
    cursor: pointer
}

.quantity-controls span {
    min-width: 20px;
    text-align: center
}

.remove-item {
    border: none;
    background: none;
    color: #9b5d50;
    font-size: 11px;
    cursor: pointer;
    align-self: start
}

.customer-form {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid #d9cfc4
}

.customer-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px
}

.customer-form input,
.customer-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid #d9cfc4;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    outline: none
}

.customer-form input:focus,
.customer-form textarea:focus {
    border-color: var(--gold)
}

.customer-form textarea {
    height: 85px;
    resize: vertical
}

.send-order {
    width: 100%;
    padding: 18px;
    background: #2d211b;
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.3px;
    margin-top: 15px;
    transition: .3s
}

.send-order:hover {
    background: #dbd8d4
}

.whatsapp-note {
    text-align: center;
    font-size: 10px;
    color: #806f65;
    line-height: 1.5;
    margin-top: 12px
}

@media(max-width:768px) {
    .cart-button {
        margin-left: auto;
        margin-right: 12px
    }

    .cart {
        padding: 25px 20px
    }

    .hero-buttons .btn {
        width: auto
    }

    .cart-header h2 {
        font-size: 42px
    }
}