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

        :root {
            --verde-palma: #2D5016;
            --verde-medio: #4A7C2F;
            --verde-claro: #7FB356;
            --verde-agua: #A8C88A;
            --crema: #F5EDD8;
            --crema-calida: #EEE0C0;
            --cafe-oscuro: #3A2010;
            --cafe-medio: #6B3F1E;
            --cafe-claro: #B07040;
            --cafe-dorado: #C9922A;
            --terracota: #C45A2A;
            --amarillo-sol: #E8C240;
            --blanco-hueso: #FDFAF3;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lora', Georgia, serif;
            background: var(--crema);
            color: var(--cafe-oscuro);
            overflow-x: hidden;
        }

        /* ---- GRAIN OVERLAY ---- */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.35;
        }

        /* ---- NAV ---- */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 4rem;
            background: rgba(245, 237, 216, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1.5px solid rgba(58, 32, 16, 0.1);
        }

        .nav-logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-logo-leaf {
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            font-style: italic;
            letter-spacing: 0.04em;
            color: var(--cafe-medio);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .nav-btn {
            font-family: 'Lora', serif;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--verde-palma);
            color: var(--crema);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.25s, transform 0.15s;
        }

        .nav-btn:hover {
            background: var(--verde-medio);
            transform: translateY(-1px);
        }

        /* ---- HERO ---- */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }


        /* ---- HERO VIDEO BACKGROUND ---- */
        .hero-video-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, #1C3A0A 0%, #2D5016 40%, #3D6B20 70%, #4A7C2F 100%);
        }

        /* Wax-print textile pattern */
        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.12;
            background-image:
                radial-gradient(circle at 20% 30%, #E8C240 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, #C45A2A 0%, transparent 35%),
                radial-gradient(circle at 50% 50%, #A8C88A 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 4vw;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            animation: fadeUp 1s ease both;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(232, 194, 64, 0.2);
            border: 1px solid rgba(232, 194, 64, 0.4);
            border-radius: 40px;
            padding: 0.4rem 1rem;
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--amarillo-sol);
            margin-bottom: 1.8rem;
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--amarillo-sol);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .hero-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(3.5rem, 7vw, 6rem);
            line-height: 1;
            color: var(--crema);
            margin-bottom: 0.2rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.5);
        }

        .hero-title-italic {
            font-style: italic;
            color: var(--amarillo-sol);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(245, 237, 216, 0.95);
            font-style: italic;
            line-height: 1.7;
            margin: 1.5rem 0 2.5rem;
            max-width: 480px;
            text-shadow: 0 1px 12px rgba(0,0,0,0.75);
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-primary {
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: var(--amarillo-sol);
            color: var(--cafe-oscuro);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 40px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: #D4AE2E;
            transform: translateY(-2px);
        }

        .btn-outline {
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            font-style: italic;
            color: rgba(245, 237, 216, 0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(245, 237, 216, 0.3);
            padding-bottom: 2px;
            transition: color 0.2s, border-color 0.2s;
        }

        .btn-outline:hover {
            color: var(--amarillo-sol);
            border-color: var(--amarillo-sol);
        }

        /* Decorative plant illustration in hero */
        

        /* Scrolling info bar */
        .info-bar {
            background: var(--cafe-oscuro);
            padding: 0.9rem 4rem;
            display: flex;
            gap: 3rem;
            align-items: center;
            overflow: hidden;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            white-space: nowrap;
            color: rgba(245, 237, 216, 0.7);
            font-size: 0.82rem;
            font-style: italic;
        }

        .info-icon {
            font-size: 1rem;
        }

        .info-separator {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--cafe-dorado);
            opacity: 0.5;
            flex-shrink: 0;
        }

        /* ---- ABOUT STRIP ---- */
        .about-strip {
            padding: 6rem 5rem;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 5rem;
            align-items: center;
            background: var(--blanco-hueso);
            position: relative;
            overflow: hidden;
        }

        .about-strip::before {
            content: 'SALENTO';
            position: absolute;
            right: -2rem;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-family: 'Abril Fatface', serif;
            font-size: 8rem;
            color: rgba(45, 80, 22, 0.04);
            letter-spacing: 0.1em;
            white-space: nowrap;
            pointer-events: none;
        }

        .about-tag {
            font-size: 0.7rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--verde-medio);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .about-tag::before {
            content: '';
            display: block;
            width: 28px;
            height: 1.5px;
            background: var(--verde-medio);
        }

        .about-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.2rem, 3.5vw, 3rem);
            line-height: 1.15;
            color: var(--cafe-oscuro);
            margin-bottom: 1.5rem;
        }

        .about-title em {
            font-style: italic;
            color: var(--verde-medio);
        }

        .about-body {
            font-size: 1.05rem;
            color: #5A4030;
            line-height: 1.85;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: flex;
            gap: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(58, 32, 16, 0.1);
        }

        .stat-num {
            font-family: 'Abril Fatface', serif;
            font-size: 2rem;
            color: var(--verde-palma);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.78rem;
            color: #8A6A50;
            font-style: italic;
            margin-top: 0.3rem;
        }

        .about-visual {
            position: relative;
            height: 500px;
            border-radius: 8px;
            overflow: hidden;
        }

        .about-visual-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4A7C2F, #2D5016);
            position: relative;
            overflow: hidden;
        }

        /* ---- MENU SECTION ---- */
        .menu-section {
            padding: 8rem 5rem;
            background: var(--crema);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-eyebrow {
            font-size: 0.72rem;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--terracota);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            line-height: 1.1;
            color: var(--cafe-oscuro);
        }

        .section-title em {
            font-style: italic;
            color: var(--verde-palma);
        }

        .section-desc {
            font-size: 1rem;
            color: #7A6050;
            font-style: italic;
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3.5rem;
        }

        .menu-tab {
            font-family: 'Lora', serif;
            font-size: 0.8rem;
            font-style: italic;
            letter-spacing: 0.08em;
            padding: 0.55rem 1.5rem;
            border-radius: 40px;
            border: 1px solid rgba(58, 32, 16, 0.2);
            background: transparent;
            color: var(--cafe-medio);
            cursor: pointer;
            transition: all 0.25s;
        }

        .menu-tab.active,
        .menu-tab:hover {
            background: var(--verde-palma);
            color: var(--crema);
            border-color: var(--verde-palma);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .menu-card {
            background: var(--blanco-hueso);
            border: 1px solid rgba(58, 32, 16, 0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .menu-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(45, 80, 22, 0.12);
        }

        .menu-card-visual {
            height: 180px;
            position: relative;
            overflow: hidden;
        }

        .menu-card-body {
            padding: 1.5rem;
        }

        .menu-card-tag {
            font-size: 0.65rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--cafe-dorado);
            margin-bottom: 0.6rem;
        }

        .menu-card-name {
            font-family: 'DM Serif Display', serif;
            font-size: 1.3rem;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            color: var(--cafe-oscuro);
        }

        .menu-card-desc {
            font-size: 0.88rem;
            color: #8A7060;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

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

        .menu-card-price {
            font-family: 'Abril Fatface', serif;
            font-size: 1.2rem;
            color: var(--verde-palma);
        }

        .menu-card-badge {
            font-size: 0.65rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(45, 80, 22, 0.1);
            color: var(--verde-palma);
            padding: 0.3rem 0.75rem;
            border-radius: 40px;
        }

        /* ---- GALLERY ---- */
        .gallery-section {
            padding: 0 0 8rem;
        }

        .gallery-header {
            padding: 0 5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            grid-template-rows: 280px 280px;
            gap: 4px;
            padding: 0 5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            cursor: pointer;
        }

        .gallery-item:first-child {
            grid-row: span 2;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(45, 80, 22, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-overlay-text {
            font-family: 'DM Serif Display', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: white;
            text-align: center;
        }

        /* ---- RESERVA SECTION ---- */
        .reserva-section {
            padding: 8rem 5rem;
            background: var(--verde-palma);
            position: relative;
            overflow: hidden;
        }

        .reserva-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(74, 124, 47, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(196, 90, 42, 0.15) 0%, transparent 50%);
        }

        .reserva-inner {
            position: relative;
            z-index: 2;
            max-width: 750px;
            margin: 0 auto;
            text-align: center;
        }

        .reserva-inner .section-eyebrow {
            color: rgba(232, 194, 64, 0.8);
        }

        .reserva-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--crema);
            line-height: 1.1;
            margin: 1rem 0 0.5rem;
        }

        .reserva-title em {
            font-style: italic;
            color: var(--amarillo-sol);
        }

        .reserva-sub {
            font-size: 1.05rem;
            color: rgba(245, 237, 216, 0.6);
            font-style: italic;
            margin-bottom: 3.5rem;
            line-height: 1.6;
        }

        .reserva-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-field.full {
            grid-column: span 2;
        }

        .form-label {
            font-size: 0.7rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(245, 237, 216, 0.5);
        }

        .form-input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--crema);
            padding: 0.85rem 1.2rem;
            font-family: 'Lora', serif;
            font-size: 0.95rem;
            font-style: italic;
            border-radius: 6px;
            outline: none;
            transition: border-color 0.2s;
            width: 100%;
        }

        .form-input::placeholder {
            color: rgba(245, 237, 216, 0.3);
        }

        .form-input:focus {
            border-color: var(--amarillo-sol);
        }

        .form-submit {
            grid-column: span 2;
            font-family: 'Lora', serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--amarillo-sol);
            color: var(--cafe-oscuro);
            border: none;
            padding: 1.1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.25s;
        }

        .form-submit:hover {
            background: #D4AE2E;
            transform: translateY(-2px);
        }

        /* ---- TESTIMONIOS ---- */
        .testimonios-section {
            padding: 7rem 5rem;
            background: var(--crema-calida);
        }

        .testimonios-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonio-card {
            background: var(--blanco-hueso);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid rgba(58, 32, 16, 0.07);
            position: relative;
        }

        .testimonio-quote {
            font-family: 'DM Serif Display', serif;
            font-size: 3rem;
            color: var(--verde-claro);
            line-height: 1;
            margin-bottom: 0.5rem;
            opacity: 0.4;
        }

        .testimonio-text {
            font-size: 0.95rem;
            line-height: 1.8;
            font-style: italic;
            color: #5A4030;
            margin-bottom: 1.5rem;
        }

        .testimonio-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .testimonio-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Abril Fatface', serif;
            font-size: 0.9rem;
            color: var(--crema);
        }

        .testimonio-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--cafe-oscuro);
        }

        .testimonio-origin {
            font-size: 0.75rem;
            color: #9A8070;
            font-style: italic;
        }

        .stars {
            color: var(--amarillo-sol);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        /* ---- FOOTER ---- */
        footer {
            background: var(--cafe-oscuro);
            padding: 4rem 5rem 2.5rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(245, 237, 216, 0.1);
            margin-bottom: 2rem;
        }

        .footer-brand {}

        .footer-logo-big {
            font-family: 'Abril Fatface', serif;
            font-size: 1.8rem;
            color: var(--crema);
            margin-bottom: 0.3rem;
        }

        .footer-logo-sub {
            font-size: 0.78rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--cafe-claro);
            margin-bottom: 1rem;
        }

        .footer-brand-desc {
            font-size: 0.88rem;
            color: rgba(245, 237, 216, 0.45);
            font-style: italic;
            line-height: 1.7;
            max-width: 260px;
        }

        .footer-col-title {
            font-size: 0.7rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--cafe-claro);
            margin-bottom: 1.2rem;
        }

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

        .footer-col-links li {
            margin-bottom: 0.7rem;
        }

        .footer-col-links a {
            font-size: 0.88rem;
            color: rgba(245, 237, 216, 0.5);
            text-decoration: none;
            font-style: italic;
            transition: color 0.2s;
        }

        .footer-col-links a:hover {
            color: var(--amarillo-sol);
        }

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

        .footer-copy {
            font-size: 0.78rem;
            color: rgba(245, 237, 216, 0.25);
            font-style: italic;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .social-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(245, 237, 216, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(245, 237, 216, 0.4);
            font-size: 0.78rem;
            text-decoration: none;
            transition: all 0.2s;
            font-style: normal;
        }

        .social-btn:hover {
            border-color: var(--amarillo-sol);
            color: var(--amarillo-sol);
        }

        /* ---- ANIMATIONS ---- */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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