/*=========================================
   RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#f5f3f3;
    overflow-x:hidden;
}


/* =========================================
   VARIABLES
========================================= */

:root{

    --gold:#c7b23d;
    --gold-soft:#d6b85a;

    --white:#fff;
    --light:#f4f4f4;

    --dark:#111;
    --dark2:#1a1a1a;

    --transition:.35s ease;

}


/* =========================================
   CONTENEDOR GENERAL
========================================= */

section{
    padding:120px 10%;
}


/* =========================================
   NAVBAR
========================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:12px 5%;
    z-index:9999;
    background:transparent;
    transition:.4s;
}

.header.sticky{
    background:rgba(10,10,10,.68);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 5px 25px rgba(0,0,0,.4);
}

.navbar{
    max-width:1700px;
    width:100%;
    padding:10px 30px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:var(--gold-soft);
    transition:.35s ease;
}

.logo-main{
    font-family:'Cormorant Garamond',serif;
    font-size:38px;
    line-height:1;
    font-weight:700;
    letter-spacing:2px;
    color:var(--gold-soft);
}

.logo-line{
    width:100%;
    height:1px;
    margin:6px 0 5px;
    background:var(--gold-soft);
}

.logo-sub{
    font-family:'Cormorant Garamond',serif;
    font-size:16px;
    letter-spacing:3px;
    font-weight:500;
    color:var(--gold-soft);
}

.logo:hover{
    transform:scale(1.03);
}


/* =========================================
   MENÚ
========================================= */

.menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:42px;
    margin-left:auto;
    margin-right:35px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:var(--transition);
    letter-spacing:1.5px;
}

.menu a:hover{
    color:var(--gold-soft);
}


/* =========================================
   IDIOMA
========================================= */

.language-switch{
    display:flex;
    align-items:center;
    gap:8px;
}

.lang-btn{
    background:transparent;
    border:none;
    padding:0;
    color:rgba(255,255,255,.85);
    font-family:inherit;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:color .3s ease;
}

.lang-btn:hover,
.lang-btn.active{
    color:var(--gold-soft);
}

.language-switch span{
    color:rgba(255,255,255,.35);
    font-size:15px;
}


/* =========================================
   HERO
========================================= */

.hero{
    position:relative;
    min-height:100vh;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-content{
    max-width:950px;
    position:relative;
    z-index:2;
    text-align:center;
    margin:auto;
    padding:70px 20px 0;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:105px;
    margin:5px 0 8px;
    line-height:.95;
    letter-spacing:4px;
    text-shadow:0 8px 35px rgba(0,0,0,.55);
}

.hero h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    max-width:900px;
    margin:0 auto 20px;
    line-height:1.15;
    font-weight:600;
}

.hero-highlight{
    margin:0 auto 32px;
    color:rgba(255,255,255,.72);
    font-size:14px;
    letter-spacing:1.5px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75),
            rgba(0,0,0,.42),
            rgba(0,0,0,.72)
        );
    z-index:-1;
}


/* =========================================
   BOTONES
========================================= */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    padding:15px 30px;

    border:1px solid rgba(255,255,255,.8);
    border-radius:50px;

    background:rgba(255,255,255,.025);
    color:white;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

    text-decoration:none;

    transition:all .3s ease;
}

.btn-primary:hover{
    background:rgba(214,184,90,.18);
    border-color:var(--gold-soft);
    color:white;

    box-shadow:
        0 0 15px rgba(255,255,255,.1),
        0 0 25px rgba(255,215,0,.08);

    transform:translateY(-2px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    padding:15px 30px;

    border:1px solid rgba(214,184,90,.75);
    border-radius:50px;

    background:rgba(214,184,90,.1);
    color:var(--gold-soft);

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

    text-decoration:none;

    transition:all .3s ease;
}

.btn-secondary:hover{
    background:var(--gold-soft);
    color:#111;

    transform:translateY(-2px);

    box-shadow:0 10px 30px rgba(214,184,90,.18);
}


/* =========================================
   BUFFETS
========================================= */

.buffet-section{
    background:#0b0b0b;
    padding-top:110px;
    padding-bottom:110px;
}

.buffet-section > h2{
    text-align:center;
    color:var(--gold);
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    letter-spacing:6px;
    margin-bottom:15px;
}

.buffet-title{
    text-align:center;
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    color:white;
    margin:0 0 20px;
}

.buffet-description{
    text-align:center;
    max-width:850px;
    margin:0 auto;
    font-size:18px;
    line-height:1.7;
    color:#ddd;
}

.buffet-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1300px;
    margin:60px auto 0;
}

.buffet-item{
    background:
        linear-gradient(
            180deg,
            rgba(18,20,25,.96),
            rgba(8,9,10,.98)
        );

    border:1px solid rgba(199,178,61,.18);
    border-radius:24px;

    padding:32px;

    transition:.45s;

    min-height:270px;

    backdrop-filter:blur(12px);
}

.buffet-item:hover{
    transform:translateY(-10px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.4),
        0 0 30px rgba(199,178,61,.1);

    border-color:rgba(214,184,90,.6);
}

.buffet-item h3{
    font-size:34px;
    font-family:'Cormorant Garamond',serif;
    color:white;
    margin-bottom:30px;
}

.buffet-item p{
    font-family:'Cormorant Garamond',serif;
    font-size:27px;
    font-weight:600;
    color:#ddd;
}

.price{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:42px;
    color:var(--gold-soft);
    font-weight:700;
    margin:8px 0 28px;
}

.buffet-item small{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    display:block;
    margin-top:20px;
    color:#999;
}


/* =========================================
   MENÚ
========================================= */

.menu-section{
    padding:110px 8%;
    text-align:center;
    background:#0b0b0b;
}

.menu-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.menu-label {
    display: block;
    color: var(--gold-soft);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 22px;
}

.menu-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 38px;
}

.menu-content h2 em {
    display: inline-block;
    color: var(--gold-soft);
    font-style: italic;
    font-weight: 500;
    margin-top: 6px;
}

.btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 350px);
    min-width: 0;
    padding: 17px 30px;
    border: 1px solid var(--gold-soft);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-menu:hover {
    background: var(--gold-soft);
    color: #111;
    transform: translateY(-2px);
}

@media (max-width: 600px) {

    .menu-content {
        padding: 0 10px;
    }

    .menu-label {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .menu-content h2 {
        font-size: 46px;
        line-height: 0.98;
        margin-bottom: 32px;
    }

    .menu-content h2 em {
        margin-top: 5px;
    }

    .btn-menu {
        width: 40%;
        min-width: 280px;
        padding: 16px 25px;
    }
}

#menu{
    scroll-margin-top:70px;
}


/* =========================================
   DESCUBRE ASIA TOKAI
========================================= */

.restaurant-photo-gallery{
    background:#0b0b0b;
    width:100%;
    max-width:1500px;
    margin:0 auto;
    padding:115px 5% 100px;
}

.restaurant-gallery-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.restaurant-gallery-label{
    display:block;
    color:var(--gold);
    font-size:16px;
    font-weight:600;
    letter-spacing:5px;
    margin-bottom:15px;
}

.restaurant-gallery-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:#f5f3f3;
    margin-bottom:20px;
}

.restaurant-gallery-header p{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}


/* =========================================
   GRID FOTOS
========================================= */

.restaurant-photo-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    grid-auto-rows:220px;
    gap:12px;
}

.restaurant-photo{
    position:relative;
    overflow:hidden;
    min-width:0;
    min-height:0;

    border:1px solid rgba(212,168,75,.55);
    border-radius:14px;

    background:#111;
}

.restaurant-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;

    transition:
        transform .6s ease,
        filter .6s ease;
}

.restaurant-photo:hover img{
    transform:scale(1.035);
    filter:brightness(1.04);
}


/* PRIMERA ZONA */

.restaurant-photo:nth-child(1){
    grid-column:1 / 3;
    grid-row:1 / 3;
}

.restaurant-photo:nth-child(2){
    grid-column:3;
    grid-row:1;
}

.restaurant-photo:nth-child(3){
    grid-column:3;
    grid-row:2;
}


/* CENTRO */

.restaurant-photo:nth-child(4){
    grid-column:1;
    grid-row:3;
}

.restaurant-photo:nth-child(5){
    grid-column:2;
    grid-row:3;
}

.restaurant-photo:nth-child(6){
    grid-column:3;
    grid-row:3;
}

.restaurant-photo:nth-child(7){
    grid-column:1;
    grid-row:4;
}

.restaurant-photo:nth-child(8){
    grid-column:2;
    grid-row:4;
}

.restaurant-photo:nth-child(9){
    grid-column:3;
    grid-row:4;
}


/* FINAL */

.restaurant-photo:nth-child(10){
    grid-column:1;
    grid-row:5;
}

.restaurant-photo:nth-child(11){
    grid-column:1;
    grid-row:6;
}

.restaurant-photo:nth-child(12){
    grid-column:2 / 4;
    grid-row:5 / 7;
}

#asia-tokai{
    scroll-margin-top:60px;
}


/* =========================================
   NUESTRA COCINA
========================================= */

.gallery{
    background:#0b0b0b;
    padding:120px 10%;
}

.gallery-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 65px;
}

.gallery-subtitle{
    display:block;
    color:var(--gold);
    font-size:17px;
    font-weight:600;
    letter-spacing:6px;
    margin-bottom:15px;
}

.gallery-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:#f5f3f3;
    margin-bottom:20px;
}

.gallery-header p{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

.gallery-grid{
    max-width:1500px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:300px;
    gap:22px;
}

.gallery-item{
    position:relative;
    overflow:hidden;

    border-radius:18px;
    border:1px solid rgba(199,178,61,.25);

    background:#111;
    cursor:pointer;
}

.gallery-item.gallery-large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.05) 65%
        );

    opacity:.8;
    transition:.4s;
}

.gallery-overlay{
    position:absolute;
    left:30px;
    bottom:25px;
    z-index:2;

    transform:translateY(15px);
    opacity:.85;

    transition:.4s;
}

.gallery-overlay h3{
    font-family:'Cormorant Garamond',serif;
    color:white;
    font-size:30px;
    margin-bottom:4px;
}

.gallery-overlay span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    border-color:rgba(214,184,90,.65);

    box-shadow:
        0 15px 40px rgba(0,0,0,.5),
        0 0 30px rgba(199,178,61,.12);
}

.gallery-item:hover .gallery-overlay{
    transform:translateY(0);
    opacity:1;
}

.gallery-item:hover::after{
    opacity:1;
}


/* =========================================
   CONTACTO
========================================= */

.contact-section{
    padding:120px 10%;
    background:#0b0b0b;
}

.contact-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.contact-subtitle{
    display:block;
    color:#4bc5dc;
    font-size:16px;
    font-weight:600;
    letter-spacing:5px;
    margin-bottom:12px;
}

.contact-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    color:var(--gold);
    margin-bottom:20px;
}

.contact-header p{
    font-size:20px;
    color:#d8d8d8;
    line-height:1.7;
}

.contact-line{
    display:block;
    width:180px;
    height:1px;
    margin:25px auto 0;
    background:#4bc5dc;
}

.contact-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.3fr;

    gap:50px;
    align-items:stretch;
}

.contact-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:30px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:25px;

    border:1px solid rgba(75,197,220,.15);
    border-radius:18px;

    background:rgba(255,255,255,.025);

    transition:.35s;
}

.contact-item:hover{
    transform:translateY(-5px);

    border-color:rgba(75,197,220,.5);

    box-shadow:0 10px 30px rgba(75,197,220,.12);
}

.contact-icon{
    font-size:28px;
    min-width:35px;
}

.contact-item h3{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    color:white;
    margin-bottom:6px;
}

.contact-item p{
    color:#bbb;
    font-size:17px;
    line-height:1.6;
}

.contact-whatsapp{
    display:inline-block;
    text-align:center;
    text-decoration:none;

    color:white;

    border:1px solid white;

    padding:17px 25px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;
    letter-spacing:1px;

    transition:.35s;
}

.contact-whatsapp:hover{
    background:#4bc5dc;
    color:#111;
    border-color:#4bc5dc;
    transform:translateY(-4px);
}

.contact-map{
    min-height:400px;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(75,197,220,.25);

    box-shadow:0 15px 45px rgba(0,0,0,.35);
}

.contact-map iframe{
    width:100%;
    height:100%;
    display:block;
    border:0;
}

#contact{
    scroll-margin-top:60px;
}


/* =========================================
   REDES SOCIALES
========================================= */

.social-section{
    padding:90px 10% 70px;
    text-align:center;

    background:#0b0b0b;

    border-top:3px solid rgba(214,184,90,.30);
}

.social-content{
    max-width:900px;
    margin:0 auto;
}

.social-label{
    display:block;
    margin-bottom:15px;

    color:var(--gold-soft);

    font-size:16px;
    font-weight:600;
    letter-spacing:5px;
}

.social-content h2{
    margin:0 0 30px;

    color:#f5f2e9;

    font-family:'Cormorant Garamond',serif;

    font-size:34px;
    line-height:1.25;
}

.social-links{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.social-link{
    min-width:170px;

    padding:14px 25px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border:1px solid rgba(255,255,255,.35);
    border-radius:50px;

    color:white;
    text-decoration:none;

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;

    background:rgba(255,255,255,.025);

    transition:.35s ease;
}

.social-link:hover{
    transform:translateY(-4px);

    border-color:var(--gold-soft);

    color:var(--gold-soft);

    background:rgba(214,184,90,.08);

    box-shadow:0 8px 25px rgba(214,184,90,.12);
}

.social-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:24px;
    height:24px;

    font-size:21px;
    font-weight:700;
}


/* =========================================
   FOOTER
========================================= */

.footer{
    padding:45px 20px 35px;

    background:#0b0b0b;

    border-top:3px solid rgba(214, 184, 90, .20);

    text-align:center;
}

.footer-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;

    text-align:center;
}

.footer-logo{
    font-family:'Cormorant Garamond',serif;

    color:var(--gold-soft);

    font-size:25px;
    font-weight:700;

    letter-spacing:3px;
}

.footer-line{
    width:70px;
    height:3px;

    background:var(--gold-soft);

    opacity:.7;
}

.footer p{
    color:#aaa;

    font-family:'Cormorant Garamond',serif;

    font-size:17px;

    letter-spacing:1px;
}

.footer small{
    margin-top:8px;

    color:#666;

    font-size:12px;

    letter-spacing:.5px;
}


/* =========================================
   BOTONES FLOTANTES
========================================= */

.floating-buttons{
    position:fixed;

    bottom:30px;
    left:30px;
    right:30px;

    display:flex;
    justify-content:space-between;

    z-index:9999;

    pointer-events:none;
}

.floating-button{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.55);
    border-radius:50%;

    background:rgba(8,9,10,.55);

    backdrop-filter:blur(10px);

    color:white;
    text-decoration:none;

    transition:.35s;

    pointer-events:auto;
}

.floating-button:hover{
    transform:scale(1.1);

    border-color:var(--gold);

    box-shadow:
        0 0 20px rgba(255,215,0,.25);
}

.floating-button svg{
    width:28px;
    height:28px;

    fill:none;
    stroke:rgba(255,255,255,.9);

    stroke-width:1.6;

    stroke-linecap:round;
    stroke-linejoin:round;
}


/* =========================================
   MENÚ MÓVIL
========================================= */

.mobile-menu-btn{
    display:none;
}

.mobile-menu{
    display:none;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:900px){

    .menu{
        gap:22px;
        margin-right:20px;
    }

    .menu a{
        font-size:14px;
    }

    .hero h1{
        font-size:82px;
    }

    .hero h2{
        font-size:48px;
    }

    .buffet-container{
        grid-template-columns:1fr;
        max-width:650px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:260px;
    }

    .restaurant-photo-gallery{
        padding:80px 4%;
    }

    .restaurant-photo-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        grid-auto-rows:210px;
        gap:10px;
    }

    .restaurant-photo:nth-child(1){
        grid-column:1 / 3;
        grid-row:span 2;
    }

    .restaurant-photo:nth-child(2),
    .restaurant-photo:nth-child(3),
    .restaurant-photo:nth-child(4),
    .restaurant-photo:nth-child(5),
    .restaurant-photo:nth-child(6),
    .restaurant-photo:nth-child(7),
    .restaurant-photo:nth-child(8),
    .restaurant-photo:nth-child(9),
    .restaurant-photo:nth-child(10),
    .restaurant-photo:nth-child(11){
        grid-column:span 1;
        grid-row:span 1;
    }

    .restaurant-photo:nth-child(12){
        grid-column:1 / 3;
        grid-row:span 2;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-map{
        min-height:400px;
    }

}


/* =========================================
   MÓVIL
========================================= */

@media(max-width:600px){

    section{
        padding-left:6%;
        padding-right:6%;
    }


    /* HEADER */

    .header{
        padding:10px 4%;
    }

    .navbar{
        padding:8px 5px;
    }

    .logo-main{
        font-size:28px;
        letter-spacing:1px;
    }

    .logo-sub{
        font-size:11px;
        letter-spacing:2px;
    }

    .logo-line{
        margin:4px 0;
    }

    .menu,
    .language-switch{
        display:none;
    }


    /* HAMBURGUESA */

    .mobile-menu-btn{
        display:flex;

        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:5px;

        width:42px;
        height:42px;

        padding:0;
        margin-left:auto;

        background:transparent;
        border:none;

        cursor:pointer;

        z-index:10001;
    }

    .mobile-menu-btn span{
        display:block;

        width:27px;
        height:2px;

        background:white;
        border-radius:2px;

        transition:.35s ease;
    }


    /* MENÚ */

    .mobile-menu{
        display:block;

        position:fixed;

        top:0;
        left:0;

        width:100%;
        height:100vh;
        height:100dvh;

        background:rgba(10,15,22,.78);

        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);

        z-index:9998;

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transition:
            opacity .35s ease,
            visibility .35s ease;
    }

    .mobile-menu.open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .mobile-menu-content{
        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:120px 30px 40px;

        gap:25px;
    }

    .mobile-menu-content > a{
        color:white;

        text-decoration:none;

        font-size:24px;
        font-weight:400;

        letter-spacing:.5px;

        transition:.3s ease;
    }

    .mobile-menu-content > a:hover{
        color:var(--gold-soft);
        transform:translateX(5px);
    }

    .mobile-language{
        display:flex;
        align-items:center;
        gap:8px;
        margin-top:10px;
    }

    .mobile-lang-btn{
        background:transparent;
        border:none;

        padding:0;

        color:rgba(255,255,255,.8);

        font-family:'Poppins',sans-serif;

        font-size:20px;

        cursor:pointer;
    }

    .mobile-lang-btn.active{
        color:var(--gold-soft);
        font-weight:600;
    }

    .mobile-language span{
        color:rgba(255,255,255,.35);
    }


    /* HAMBURGUESA ABIERTA */

    .mobile-menu-btn.active span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2){
        opacity:0;
    }

    .mobile-menu-btn.active span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }


    /* HERO */

    .hero{
        width:100%;
        min-height:100svh;
        overflow:hidden;
    }

    .hero-content{
        width:92%;
        max-width:100%;
        padding:35px 10px 0;
    }

    .hero-eyebrow{
        font-size:10px;
        letter-spacing:2.5px;
        margin-bottom:15px;
    }

    .hero h1{
        font-size:52px;
        margin:8px 0;
        line-height:1;
        letter-spacing:2px;
    }

    .hero h2{
        font-size:30px;
        line-height:1.15;
        margin:15px auto 20px;
        max-width:100%;
    }

    .hero-highlight{
        font-size:12px;
        letter-spacing:.8px;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:10px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:260px;
        min-width:0;
        padding:14px 22px;
        font-size:13px;
    }


    /* BUFFETS */

    .buffet-section{
        padding-top:90px;
        padding-bottom:90px;
    }

    .buffet-section > h2{
        font-size:14px;
        letter-spacing:4px;
    }

    .buffet-title{
        font-size:44px;
        line-height:1.1;
    }

    .buffet-description{
        font-size:16px;
        line-height:1.7;
    }

    .buffet-container{
        grid-template-columns:1fr;
        gap:22px;
        margin-top:45px;
    }

    .buffet-item{
        min-height:auto;
        padding:28px 24px;
    }

    .buffet-item h3{
        font-size:31px;
        margin-bottom:25px;
    }

    .buffet-item p{
        font-size:25px;
    }

    .price{
        font-size:40px;
    }


    /* MENÚ */

    .menu-section{
        padding-top:90px;
        padding-bottom:90px;
    }

    .menu-section .section-label{
        font-size:14px;
        letter-spacing:4px;
    }

    .menu-section h2{
        font-size:44px;
    }

    .menu-section p{
        font-size:16px;
    }


    /* DESCUBRE ASIA TOKAI */

    .restaurant-photo-gallery{
        padding:90px 6% 70px;
    }

    .restaurant-gallery-header{
        margin-bottom:45px;
    }

    .restaurant-gallery-label{
        font-size:14px;
        letter-spacing:4px;
    }

    .restaurant-gallery-header h2{
        font-size:43px;
        line-height:1.1;
    }

    .restaurant-gallery-header p{
        font-size:16px;
    }

    .restaurant-photo-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        grid-auto-rows:180px;
        gap:8px;
    }

    .restaurant-photo:nth-child(1){
        grid-column:1 / 3;
        grid-row:span 2;
    }

    .restaurant-photo:nth-child(2),
    .restaurant-photo:nth-child(3),
    .restaurant-photo:nth-child(4),
    .restaurant-photo:nth-child(5),
    .restaurant-photo:nth-child(6),
    .restaurant-photo:nth-child(7),
    .restaurant-photo:nth-child(8),
    .restaurant-photo:nth-child(9),
    .restaurant-photo:nth-child(10),
    .restaurant-photo:nth-child(11){
        grid-column:span 1;
        grid-row:span 1;
    }

    .restaurant-photo:nth-child(12){
        grid-column:1 / 3;
        grid-row:span 2;
    }


    /* COCINA */

    .gallery{
        padding:90px 6%;
    }

    .gallery-header{
        margin-bottom:45px;
    }

    .gallery-header h2{
        font-size:42px;
    }

    .gallery-header p{
        font-size:16px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:280px;
    }

    .gallery-item.gallery-large{
        grid-row:span 1;
    }


    /* CONTACTO */

    .contact-section{
        padding:90px 6%;
    }

    .contact-header h2{
        font-size:48px;
    }

    .contact-header p{
        font-size:17px;
    }

    .contact-item{
        padding:20px;
    }

    .contact-item h3{
        font-size:25px;
    }

    .contact-map{
        min-height:350px;
    }


    /* REDES */

    .social-section{
        padding:75px 6% 55px;
    }

    .social-label{
        font-size:15px;
        letter-spacing:4px;
    }

    .social-content h2{
        font-size:29px;
    }

    .social-links{
        flex-direction:column;
        gap:14px;
    }

    .social-link{
        width:100%;
        max-width:280px;
    }


    /* FLOTANTES */

    .floating-buttons{
        bottom:20px;
        left:18px;
        right:18px;
    }

    .floating-button{
        width:46px;
        height:46px;
    }

    .floating-button svg{
        width:24px;
        height:24px;
    }


    /* FOOTER */

    .footer{
        padding:40px 20px 30px;
    }

    .footer-logo{
        font-size:23px;
    }

}


/* =========================================
   MÓVILES PEQUEÑOS
========================================= */

@media(max-width:520px){

    .restaurant-photo-gallery{
        padding:80px 14px 60px;
    }

    .restaurant-photo-grid{
        gap:7px;
    }

    .restaurant-photo{
        border-radius:11px;
    }

}

/* CONTACTO EN HERO — SOLO MÓVIL */

.hero-contact-btn {
    display: none;
}

@media (max-width: 600px) {

    .hero-contact-btn {
        display: inline-flex;
    }

}