*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    background:#050505;

    color:#f5e6c8;

    font-family:

    "Hiragino Mincho ProN",

    serif;

    overflow-x:hidden;

    background-image:

    radial-gradient(

        rgba(255,255,255,0.02) 1px,

        transparent 1px

    );

    background-size:4px 4px;

}

/* =========================
   HEADER
========================= */

.page-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#050505;
    border-bottom:1px solid rgba(216,180,123,.15);
    padding:20px 0;
}

.hero-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
}

.hero-nav a{
    color:#f5e6c8;
    font-size:13px;
    letter-spacing:3px;
    transition:.3s;
    position:relative;
}

.hero-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:1px;
    background:#d8b47b;
    transition:.3s;
}

.hero-nav a:hover{
    color:#d8b47b;
}

.hero-nav a:hover::after{
    width:100%;
}


/* =========================

   PREMIUM MENU

========================= */

.premium-menu{

    width:100%;

    max-width:1400px;

    margin:auto;

    padding:120px 70px;

}

/* =========================

   TITLE

========================= */

.premium-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:40px;

    margin-bottom:110px;

}

.line{

    flex:1;

    height:1px;

    background:

    rgba(200,164,106,0.25);

}

.title-center{

    text-align:center;

}

.title-center h2{

    font-size:82px;

    font-weight:400;

    letter-spacing:10px;

    color:#d8b47b;

}

.title-center p{

    margin-top:18px;

    color:#aaa;

    letter-spacing:3px;

    font-size:13px;

}

/* =========================

   CATEGORY TITLE

========================= */

.category-title{

    margin-bottom:45px;

    font-size:56px;

    color:#d8b47b;

    letter-spacing:5px;

    font-weight:400;

}

.category-title span{

    margin-left:16px;

    font-size:15px;

    color:#888;

}

/* =========================

   GRID

========================= */

.premium-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

}

/* =========================

   CARD

========================= */

.premium-card{

    display:flex;

    height:320px;

    border:1px solid

    rgba(200,164,106,0.22);

    background:

    linear-gradient(

        to bottom,

        rgba(255,255,255,0.015),

        rgba(0,0,0,0.25)

    );

    overflow:hidden;

    transition:0.4s;

}

.premium-card:hover{

    transform:translateY(-5px);

    border-color:#d8b47b;

    box-shadow:

    0 0 20px rgba(216,180,123,0.08);

}

/* =========================

   IMAGE

========================= */

.premium-card img{

    width:48%;

    height:100%;

    object-fit:contain;

    display:block;

    filter:

    brightness(0.82)

    contrast(1.05);

}

/* =========================

   TEXT

========================= */

.card-text{

    flex:1;

    padding:34px;

    display:flex;

    flex-direction:column;

}

.card-text h3{

    font-size:26px;

    font-weight:400;

    margin-bottom:22px;

    line-height:1.4;

    white-space:nowrap;

}

.card-text p{

    color:#bdbdbd;

    line-height:2.1;

    font-size:14px;

    letter-spacing:1px;

}

.card-text span{

    display:block;

    margin-top:auto;

    font-size:42px;

    color:#d8b47b;

    letter-spacing:2px;

    padding-top:20px;

}

/* =========================

   NOTE

========================= */

.tax-note{

    text-align:center;

    margin:60px 0 100px;

    color:#777;

    font-size:12px;

    letter-spacing:2px;

}

/* =========================

   BOTTOM GRID

========================= */

.bottom-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

}

/* =========================

   BOX

========================= */

.bottom-box{

    border:1px solid

    rgba(200,164,106,0.22);

    padding:45px;

    background:

    linear-gradient(

        to bottom,

        rgba(255,255,255,0.01),

        rgba(0,0,0,0.2)

    );

}

/* =========================

   SMALL TITLE

========================= */

.small-title{

    margin-bottom:35px;

    font-size:42px;

    color:#d8b47b;

    letter-spacing:4px;

    font-weight:400;

}

.small-title span{

    margin-left:14px;

    font-size:14px;

    color:#888;

}

/* =========================

   LIST

========================= */

.bottom-box ul{

    list-style:none;

}

.bottom-box li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:

    1px dotted

    rgba(255,255,255,0.15);

    color:#ddd;

    font-size:15px;

    letter-spacing:1px;

}

.bottom-box li span{

    color:#d8b47b;

}

/* =========================

   LIMITED

========================= */

.limited-title{

    margin-top:110px;

    margin-bottom:40px;

    font-size:52px;

    color:#d8b47b;

    letter-spacing:5px;

}

.limited-card{

    display:flex;

    height:260px;

    border:1px solid

    rgba(200,164,106,0.22);

    overflow:hidden;

    background:

    linear-gradient(

        to bottom,

        rgba(255,255,255,0.015),

        rgba(0,0,0,0.25)

    );

}

.limited-card img{

    width:48%;

    height:100%;

    object-fit:cover;

    filter:

    brightness(0.82)

    contrast(1.05);

}

.limited-text{

    padding:34px;

    flex:1;

}

.limited-text h3{

    font-size:34px;

    margin-bottom:20px;

    font-weight:400;

}

.limited-text p{

    color:#bbb;

    line-height:2;

}

.limited-text span{

    display:block;

    margin-top:24px;

    font-size:40px;

    color:#d8b47b;

}

/* =========================

   TAKEOUT

========================= */

.takeout{

    margin-top:50px;

    border:1px solid

    rgba(200,164,106,0.22);

    padding:55px;

    text-align:center;

    background:

    linear-gradient(

        to bottom,

        rgba(255,255,255,0.01),

        rgba(0,0,0,0.2)

    );

}

.takeout h2{

    font-size:42px;

    color:#d8b47b;

    margin-bottom:20px;

    font-weight:400;

}

.takeout p{

    color:#bbb;

    line-height:2;

}

.page-header{
    width:100%;
    padding:30px 0;
    background:#050505;
}

.hero-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
}

.hero-nav a{
    color:#f5e6c8;
    text-decoration:none;
    font-size:18px;
    letter-spacing:2px;
    transition:.3s;
}

.hero-nav a:hover{
    color:#d8b47b;
}

/* =========================

   RESPONSIVE

========================= */

@media screen and (max-width:768px){

.page-header{
    padding:15px 0;
}

.hero-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px 20px;
    width:90%;
    margin:0 auto;
}

.hero-nav a{
    text-align:center;
    font-size:12px;
    letter-spacing:1px;
}

    .premium-card{
    flex-direction:column;
    height:auto;
}

.large-img{
    height:340px !important;
    object-fit:contain;
transform:scale(1.2);
}

.premium-card img{
    width:100%;
    height:240px;
    object-fit:contain;
}

.card-text{
    padding:22px;
}

.card-text h3{
    font-size:22px;
    line-height:1.5;
    white-space:normal;
    margin-bottom:14px;
}

.card-text p{
    font-size:14px;
    line-height:1.9;
}

.card-text span{
    font-size:34px;
    padding-top:18px;
}

.bottom-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.bottom-box{
    width:100%;
}

.premium-menu{
    padding:70px 18px;
}

.premium-title{
    gap:18px;
    margin-bottom:60px;
}

.title-center h2{
    font-size:46px;
    letter-spacing:3px;
}

.title-center p{
    font-size:13px;
}

.category-title{
    font-size:34px;
    margin-bottom:28px;
}

.category-title span{
    display:block;
    margin:8px 0 0;
    font-size:13px;
}

.premium-grid{
    grid-template-columns:1fr;
    gap:24px;
}

.takeout{
    padding:70px 20px;
}

.takeout h2{
    font-size:52px;
    line-height:1.4;
}

.takeout p{
    font-size:15px;
    line-height:2;
    max-width:100%;
    word-break:keep-all;
    overflow-wrap:normal;
}

.page-header{
    padding:15px 0;
    background:#050505;
}

.hero-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px 20px;
    width:90%;
    margin:0 auto;
}

.hero-nav a{
    display:block;
    text-align:center;
    color:#f5e6c8;
    text-decoration:none;
    font-size:14px;
    letter-spacing:2px;
    font-family:serif;
}

}