:root {
    --black: #111214;
    --dark: #181a1d;
    --dark2: #202225;

    --white: #ffffff;
    --cream: #f7f4ef;

    --gold: #b88b4a;
    --gold-light: #d8b57a;

    --text: #222222;
    --gray: #777777;

    --line: #e5e1db;

    --max-width: 1280px;
}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "Noto Sans KR",
        sans-serif;

    background: #fff;

    color: var(--text);

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    padding-bottom:4px;
    cursor: pointer;
}


img {
    display: block;

    width: 100%;
}


/* =========================
COMMON
========================= */

.section {
    padding:
        140px 30px;
}


.section-title {
    text-align: center;

    margin-bottom: 55px;
}


.section-eyebrow {
    display: block;

    margin-bottom: 15px;

    font-size: 12px;

    letter-spacing: 2px;

    color: var(--gold);

    font-weight: 700;
}


.section-title h2,
.brand h2,
.store h2,
.location h2,
.reservation h2 {
    font-family:
        "Playfair Display",
        "Noto Sans KR",
        sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    font-weight: 600;

    letter-spacing: -1.5px;
}


.section-title p {
    margin-top: 14px;

    color: var(--gray);

    font-size: 15px;
}


.line-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 170px;

    height: 52px;

    padding: 0 25px;

    border:
        1px solid var(--gold);

    background: transparent;

    color: var(--gold);

    transition: .3s;
}


.line-button:hover {
    background: var(--gold);

    color: #fff;
}


.center-button {
    display: flex;

    width: max-content;

    margin:
        35px auto 0;
}


/* =========================
HEADER
========================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 88px;

    z-index: 1000;

    color: #fff;

    transition:
        background .35s,
        box-shadow .35s,
        height .35s;
}


.header.scrolled {
    height: 72px;

    background:
        rgba(10, 10, 10, .96);

    box-shadow:
        0 8px 30px rgba(0,0,0,.25);
}


.header-inner {
    width: 100%;
    max-width: 1500px;

    height: 100%;

    margin: auto;

    padding: 0 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 17px;

    font-weight: 700;

    white-space: nowrap;
}


.logo-icon {
    color: var(--gold);

    font-size: 26px;
}


.gnb {
    display: flex;

    align-items: center;

    gap: 36px;
}


.gnb a {
    position: relative;

    font-size: 14px;

    color:
        rgba(255,255,255,.75);

    transition: .25s;
}


.gnb a:hover,
.gnb a.active {
    color: #fff;
}


.gnb a.active::after {
    content: "";

    position: absolute;

    bottom: -30px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 4px;
    height: 4px;

    background: var(--gold);

    border-radius: 50%;
}


.header-reservation {
    width: 105px;
    height: 45px;

    border:
        1px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 13px;

    transition: .3s;
}


.header-reservation:hover {
    background: var(--gold);
    color: #fff;
}


.mobile-menu-btn {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    gap: 6px;
}


.mobile-menu-btn span {
    display: block;

    width: 24px;
    height: 2px;

    background: #fff;
}


/* =========================
MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;

    top: 0;
    right: -100%;

    width: min(420px, 90%);

    height: 100vh;

    z-index: 2000;

    padding: 30px;

    background: #111;

    color: #fff;

    transition: right .4s ease;
}


.mobile-menu.active {
    right: 0;
}


.mobile-menu-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 30px;

    border-bottom:
        1px solid rgba(255,255,255,.1);
}


.mobile-menu-top button {
    border: 0;

    background: none;

    color: #fff;

    font-size: 36px;
}


.mobile-menu nav {
    display: flex;

    flex-direction: column;

    padding: 25px 0;
}


.mobile-menu nav a {
    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    font-size: 17px;
}


.mobile-reservation {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 55px;

    border:
        1px solid var(--gold);

    color: var(--gold);
}


/* =========================
HERO
========================= */

.hero {
    position: relative;

    height: min(900px, 100vh);

    min-height: 700px;

    background: #111;

    overflow: hidden;
}


.hero-slides,
.hero-slide {
    width: 100%;
    height: 100%;
}


.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .8s ease,
        transform .8s ease;

    transform:
        scale(1.04);
}


.hero-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.5) 35%,
            rgba(0,0,0,.08) 75%
        );
}


.hero-content {
    position: absolute;

    top: 50%;
    left: max(7vw, 50px);

    transform:
        translateY(-40%);

    z-index: 3;

    color: #fff;
}


.hero-content h1 {
    margin:
        15px 0 22px;

    font-size:
        clamp(45px, 5vw, 76px);

    line-height: 1.25;

    font-weight: 500;

    letter-spacing: -4px;
}


.hero-content p {
    color:
        rgba(255,255,255,.72);

    line-height: 1.9;

    font-size: 16px;
}


.hero-button {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 35px;

    padding: 16px 22px;

    border:
        1px solid var(--gold);

    color: var(--gold);

    transition: .3s;
}


.hero-button:hover {
    background: var(--gold);
    color: #fff;
}


.hero-arrow {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 10;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.35);

    background:
        rgba(0,0,0,.2);

    color: #fff;

    font-size: 36px;
}


.hero-prev {
    left: 35px;
}


.hero-next {
    right: 35px;
}


.hero-pagination {
    position: absolute;

    left: max(7vw, 50px);
    bottom: 65px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 16px;

    color: #fff;
}


.hero-dot {
    border: 0;

    background: none;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;
}


.hero-dot.active {
    color: #fff;
}


.hero-progress {
    position: relative;

    width: 130px;
    height: 2px;

    background:
        rgba(255,255,255,.25);

    overflow: hidden;
}


.hero-progress span {
    position: absolute;

    top: 0;
    left: 0;

    width: 0%;
    height: 100%;

    background: #fff;
}


/* =========================
BRAND
========================= */

.brand {
    background:
        linear-gradient(
            135deg,
            #faf9f7,
            #f1ede6
        );
}


.brand-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}


.brand-content p {
    margin-top: 18px;

    max-width: 520px;

    color: #777;

    line-height: 1.9;
}


.brand-features {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin: 45px 0;
}


.brand-features div {
    text-align: center;
}


.brand-features span {
    display: block;

    margin-bottom: 10px;

    font-size: 30px;

    color: var(--gold);
}


.brand-features strong {
    font-size: 12px;

    color: #666;
}


.brand-image {
    overflow: hidden;
}


.brand-image img {
    height: 500px;

    object-fit: cover;

    transition: transform .8s;
}


.brand-image:hover img {
    transform: scale(1.05);
}


/* =========================
RECOMMEND
========================= */

.recommend {
    background: #fff;
}


.recommend-wrap,
.menu-slider-wrap,
.review-wrap,
.event-slider {
    position: relative;

    max-width: 1400px;

    margin: auto;

    padding:
        0 70px;
}


.recommend-slider,
.menu-slider {
    overflow: hidden;
}


.recommend-track,
.menu-track {
    display: flex;

    gap: 20px;

    transition: transform .5s ease;
}


.food-card {
    flex:
        0 0 calc(25% - 15px);

    padding-bottom: 22px;

    border:
        1px solid #eee;

    background: #fff;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);

    transition: .3s;
}


.food-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);
}


.food-image {
    position: relative;

    overflow: hidden;
}


.food-image img {
    aspect-ratio: 1.3 / 1;

    object-fit: cover;
}


.best-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 6px 9px;

    background: var(--gold);

    color: #fff;

    font-size: 10px;
}


.food-card h3 {
    margin-top: 18px;

    font-size: 15px;
}


.food-card strong {
    display: block;

    margin-top: 8px;

    color: var(--gold);

    font-size: 14px;
}


/* =========================
ARROW
========================= */

.circle-arrow {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 20;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border:
        1px solid #ddd;

    background: #fff;

    color: #777;

    font-size: 28px;

    transition: .3s;
}


.circle-arrow:hover {
    background: var(--gold);

    color: #fff;

    border-color: var(--gold);
}


.recommend-prev,
.menu-prev,
.event-prev,
.review-prev {
    left: 0;
}


.recommend-next,
.menu-next,
.event-next,
.review-next {
    right: 0;
}


/* =========================
GENERAL MENU
========================= */

.menu-section {
    padding:
        130px 30px;

    background:
        radial-gradient(
            circle at top,
            #292b2e,
            #111214 65%
        );

    color: #fff;
}


.light h2 {
    color: #fff;
}


.light p {
    color:
        rgba(255,255,255,.55);
}


.menu-tabs {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}


.menu-tabs button {
    padding:
        12px 20px;

    border: 0;

    background: transparent;

    color:
        rgba(255,255,255,.55);

    font-size: 14px;

    transition: .25s;
}


.menu-tabs button.active,
.menu-tabs button:hover {
    background: var(--gold);

    color: #fff;
}


.menu-card {
    flex:
        0 0 calc(25% - 15px);

    padding-bottom: 25px;

    border-radius: 3px;

    background:
        rgba(255,255,255,.04);

    overflow: hidden;

    cursor: pointer;

    transition: .3s;
}


.menu-card:hover {
    transform:
        translateY(-8px);

    background:
        rgba(255,255,255,.08);
}


.menu-card img {
    height: 220px;

    object-fit: cover;
}


.menu-card h3 {
    padding:
        20px 20px 0;

    font-size: 16px;
}


.menu-card strong {
    display: block;

    padding:
        8px 20px 0;

    color: var(--gold);

    font-size: 14px;
}


.menu-all-button {
    display: block;

    margin:
        45px auto 0;

    background: transparent;
}


/* =========================
STORE
========================= */

.store {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #f6f4f0;
}


.store-image img {
    width: 100%;
    height: 100%;

    min-height: 550px;

    object-fit: cover;
}


.store-content {
    padding:
        100px clamp(40px, 8vw, 130px);

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.store-content p {
    margin-top: 20px;

    color: #777;

    line-height: 1.8;
}


.store-icons {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

    margin:
        50px 0;
}


.store-icons div {
    display: flex;

    flex-direction: column;

    gap: 10px;

    text-align: center;
}


.store-icons span {
    font-size: 28px;

    color: var(--gold);
}


.store-icons small {
    font-size: 12px;

    color: #777;
}


/* =========================
EVENT
========================= */

.event-section {
    padding:
        130px 30px;

    background: #161719;

    color: #fff;
}


.event-track {
    display: flex;

    gap: 20px;

    overflow: hidden;
}


.event-card {
    flex:
        0 0 calc(33.333% - 14px);

    min-height: 220px;

    padding: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            #28201b,
            #151515
        );

    border:
        1px solid rgba(184,139,74,.35);

    overflow: hidden;
}


.event-card h3 {
    font-size: 17px;
}


.event-card p {
    margin:
        12px 0 20px;

    color:
        rgba(255,255,255,.6);

    font-size: 13px;
}


.event-card button {
    padding:
        10px 16px;

    border:
        1px solid var(--gold);

    background: transparent;

    color: var(--gold);
}


.event-card img {
    width: 45%;
    height: 150px;

    object-fit: cover;
}


/* =========================
REVIEW
========================= */

.customer {
    background: #f8f7f4;
}


.review-slider {
    display: flex;

    gap: 20px;

    overflow: hidden;
}


.review-card {
    flex:
        0 0 calc(33.333% - 14px);

    padding: 42px 30px;

    border:
        1px solid #e5e1da;

    background: #fff;

    text-align: center;
}


.stars {
    color: var(--gold);

    letter-spacing: 3px;
}


.review-card p {
    margin: 20px 0;

    color: #666;

    line-height: 1.8;

    font-size: 14px;
}


.review-card strong {
    font-size: 13px;

    color: #888;
}


/* =========================
RESERVATION
========================= */

.reservation {
    padding:
        100px 30px;

    background:
        linear-gradient(
            135deg,
            #c5a06c,
            #8f6639
        );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 100px;
}


.reservation .section-eyebrow {
    color:
        rgba(255,255,255,.7);
}


.reservation-form {
    width: 520px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}


.reservation-form input,
.reservation-form select {
    height: 52px;

    padding: 0 15px;

    border: 0;

    background:
        rgba(255,255,255,.95);
}


.reservation-form button {
    grid-column:
        1 / -1;

    height: 55px;

    border: 0;

    background: #181818;

    color: #fff;

    font-weight: 700;
}


/* =========================
LOCATION
========================= */

.location {
    display: grid;

    grid-template-columns:
        1fr 1fr;
}


.map img {
    width: 100%;
    height: 500px;

    object-fit: cover;
}


.location-info {
    padding:
        80px clamp(40px, 8vw, 130px);

    background: #191a1c;

    color: #fff;
}


.location-info p {
    margin-top: 15px;

    color:
        rgba(255,255,255,.65);

    line-height: 1.8;

    font-size: 14px;
}


.sns {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}


.sns a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.2);

    color: var(--gold);
}


/* =========================
FOOTER
========================= */

.footer {
    padding:
        70px 30px 25px;

    background: #111214;

    color: #fff;
}


.footer-inner {
    max-width: var(--max-width);

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 80px;
}


.footer-brand p {
    margin-top: 12px;

    color:
        rgba(255,255,255,.4);

    font-size: 13px;
}


.footer-links {
    display: flex;

    gap: 80px;
}


.footer-links div {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-links strong {
    margin-bottom: 8px;

    font-size: 14px;
}


.footer-links a {
    color:
        rgba(255,255,255,.45);

    font-size: 12px;
}


.copyright {
    max-width: var(--max-width);

    margin:
        55px auto 0;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.3);

    font-size: 11px;
}


/* =========================
TOP
========================= */

.top-button {
    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    border:
        1px solid rgba(184,139,74,.6);

    background: #171717;

    color: var(--gold);

    z-index: 500;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px);

    transition: .3s;
}


.top-button.show {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* =========================
MODAL
========================= */

.modal,
.simple-modal {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}


.modal.active,
.simple-modal.active {
    opacity: 1;

    visibility: visible;
}


.modal-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.82);
}


.modal-box {
    position: relative;

    z-index: 2;

    width: min(1000px, 92vw);

    background: #18191b;

    color: #fff;

    padding: 30px;
}


.modal-content {
    display: grid;

    grid-template-columns:
        1.2fr 1fr;

    gap: 45px;

    align-items: center;
}


.modal-image img {
    height: 480px;

    object-fit: cover;
}


.modal-info span {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;
}


.modal-info h2 {
    margin-top: 15px;

    font-size: 38px;
}


.modal-info strong {
    display: block;

    margin: 20px 0;

    color: var(--gold);

    font-size: 22px;
}


.modal-info p {
    color:
        rgba(255,255,255,.6);

    line-height: 1.9;
}


.modal-order {
    margin-top: 35px;

    padding: 15px 25px;

    border:
        1px solid var(--gold);

    background: transparent;

    color: var(--gold);
}


.modal-close {
    position: absolute;

    top: 10px;
    right: 18px;

    z-index: 5;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 35px;
}


.modal-nav {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 4;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.3);

    background:
        rgba(0,0,0,.4);

    color: #fff;

    font-size: 28px;
}


.modal-prev {
    left: 15px;
}


.modal-next {
    right: 15px;
}


.simple-modal {
    background:
        rgba(0,0,0,.7);
}


.simple-modal-box {
    position: relative;

    width: min(550px, 90vw);

    padding: 55px;

    background: #fff;

    color: #222;
}


.simple-modal-box p {
    margin:
        20px 0;

    color: #777;

    line-height: 1.8;
}


.simple-modal-box ul {
    padding-left: 20px;

    line-height: 2;
}


.simple-close {
    position: absolute;

    top: 15px;
    right: 20px;

    border: 0;

    background: transparent;

    font-size: 30px;
}


/* =========================
ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity .8s,
        transform .8s;
}


.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================
RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .gnb {
        gap: 18px;
    }

    .header-inner {
        padding: 0 25px;
    }

    .brand-grid {
        gap: 40px;
    }

    .food-card,
    .menu-card {
        flex:
            0 0 calc(33.333% - 14px);
    }

}


@media (max-width: 850px) {

    .header {
        height: 70px;
    }

    .gnb,
    .header-reservation {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        left: 30px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;

        font-size: 28px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-pagination {
        left: 30px;
        bottom: 40px;
    }

    .brand-grid,
    .store,
    .location {
        grid-template-columns: 1fr;
    }

    .brand-image {
        order: -1;
    }

    .brand-image img {
        height: 400px;
    }

    .brand-features {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .food-card,
    .menu-card {
        flex:
            0 0 calc(50% - 10px);
    }

    .event-card {
        flex:
            0 0 100%;
    }

    .review-card {
        flex:
            0 0 100%;
    }

    .reservation {
        flex-direction: column;

        align-items: stretch;

        gap: 50px;
    }

    .reservation-form {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .section {
        padding:
            85px 20px;
    }

    .menu-section,
    .event-section {
        padding:
            85px 20px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        top: 48%;

        left: 25px;
        right: 25px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-arrow {
        top: auto;
        bottom: 105px;

        transform: none;
    }

    .hero-prev {
        left: 25px;
    }

    .hero-next {
        left: 80px;
    }

    .hero-pagination {
        bottom: 35px;
    }

    .hero-progress {
        width: 80px;
    }

    .recommend-wrap,
    .menu-slider-wrap,
    .review-wrap,
    .event-slider {
        padding: 0;
    }

    .circle-arrow {
        display: none;
    }

    .food-card,
    .menu-card {
        flex:
            0 0 82%;
    }

    .recommend-slider,
    .menu-slider,
    .review-slider {
        overflow: visible;
    }

    .recommend-track,
    .menu-track {
        overflow-x: auto;

        scroll-snap-type: x mandatory;

        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .recommend-track::-webkit-scrollbar,
    .menu-track::-webkit-scrollbar {
        display: none;
    }

    .food-card,
    .menu-card {
        scroll-snap-align: start;
    }

    .menu-tabs {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 10px;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tabs button {
        flex: 0 0 auto;
    }

    .store-image img {
        min-height: 350px;
    }

    .store-content {
        padding: 70px 25px;
    }

    .store-icons {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .event-slider {
        overflow: hidden;
    }

    .event-track {
        overflow-x: auto;

        scroll-snap-type: x mandatory;
    }

    .event-card {
        scroll-snap-align: start;
    }

    .review-slider {
        overflow-x: auto;

        scroll-snap-type: x mandatory;
    }

    .review-card {
        scroll-snap-align: start;
    }

    .reservation {
        padding:
            75px 20px;
    }

    .reservation-form {
        grid-template-columns: 1fr;
    }

    .reservation-form button {
        grid-column: auto;
    }

    .location-info {
        padding: 65px 25px;
    }

    .footer {
        padding:
            60px 25px 25px;
    }

    .footer-links {
        gap: 30px;

        flex-wrap: wrap;
    }

    .modal-box {
        padding: 20px;
    }

    .modal-content {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .modal-image img {
        height: 280px;
    }

    .modal-info h2 {
        font-size: 28px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
    }

}

/* 이벤트 자세히보기 모달창*/
/* =====================================
   EVENT MODAL
===================================== */

.event-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


/* 모달 활성화 */

.event-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* 배경 */

.event-modal-dim {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* 모달 박스 */

.event-modal-box {
    position: relative;

    width: min(900px, 100%);
    min-height: 480px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #fff;

    overflow: hidden;

    border-radius: 4px;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.45);

    transform:
        translateY(30px)
        scale(0.96);

    opacity: 0;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;

    z-index: 2;
}


/* 활성화 애니메이션 */

.event-modal.active .event-modal-box {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}


/* =====================================
   CLOSE BUTTON
===================================== */

.event-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(0, 0, 0, 0.35);

    color: #fff;

    font-size: 32px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    border-radius: 50%;

    z-index: 5;

    transition: 0.3s;
}


.event-modal-close:hover {
    background: #b08a50;

    transform: rotate(90deg);
}


/* =====================================
   IMAGE
===================================== */

.event-modal-image {
    position: relative;

    min-height: 480px;

    overflow: hidden;

    background: #111;
}


.event-modal-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.35)
        );
}


.event-modal-image img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.event-modal.active .event-modal-image img {
    transform: scale(1.03);
}


/* =====================================
   CONTENT
===================================== */

.event-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        70px
        55px
        55px;

    color: #222;
}


.event-modal-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #b08a50;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.event-modal-content h2 {
    margin: 0 0 18px;

    font-size: 34px;
    font-weight: 700;

    line-height: 1.35;

    word-break: keep-all;
}


.event-modal-content strong {
    display: block;

    margin-bottom: 25px;

    color: #b08a50;

    font-size: 22px;
    font-weight: 600;
}


.event-modal-content p {
    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.9;

    word-break: keep-all;
}


/* 혜택 박스 */

.event-modal-info {
    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid #e5e5e5;
}


.event-modal-info span {
    display: block;

    margin-bottom: 8px;

    color: #999;

    font-size: 11px;

    letter-spacing: 1.5px;
}


.event-modal-info b {
    color: #222;

    font-size: 18px;
}


/* 확인 버튼 */

.event-modal-confirm {
    width: 100%;

    margin-top: 35px;

    padding: 17px 20px;

    border: 1px solid #b08a50;

    background: #b08a50;

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.event-modal-confirm:hover {
    background: #222;
    border-color: #222;
}

/* 이벤트 자세히보기 mobile css */
@media screen and (max-width: 768px) {

    .event-modal {
        align-items: flex-end;

        padding: 0;
    }


    .event-modal-box {
        width: 100%;

        max-height: 92vh;

        display: block;

        overflow-y: auto;

        border-radius:
            20px
            20px
            0
            0;

        transform:
            translateY(100%);
    }


    .event-modal.active .event-modal-box {
        transform:
            translateY(0);
    }


    .event-modal-image {
        width: 100%;
        min-height: 260px;
        height: 260px;
    }


    .event-modal-content {
        padding:
            40px
            25px
            35px;
    }


    .event-modal-content h2 {
        font-size: 28px;
    }


    .event-modal-content strong {
        font-size: 19px;
    }


    .event-modal-content p {
        font-size: 15px;
    }


    .event-modal-close {
        display:none;
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;
    }

}

/* new footer css */
/* ==========================================
   FOOTER
========================================== */

.footer {
    position: relative;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #171b20 0%,
            #111419 100%
        );

    color: #fff;

    overflow: hidden;
}


/* 상단 영역 */

.footer-inner {
    width: min(1200px, calc(100% - 80px));

    margin: 0 auto;

    min-height: 190px;

    display: grid;

    grid-template-columns:
        1.3fr
        2fr
        1fr;

    align-items: center;

    gap: 70px;

    padding: 40px 0 35px;
}


/* ==========================================
   BRAND
========================================== */

.footer-brand {
    min-width: 0;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: inherit;

    text-decoration: none;
}


.footer-logo-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184, 145, 86, 0.8);

    color: #c5a26d;

    font-size: 24px;

    transform: rotate(45deg);
}


.footer-logo-icon::first-letter {
    transform: rotate(-45deg);
}


.footer-brand h2 {
    margin: 0 0 6px;

    color: #d7d2ca;

    font-size: 19px;
    font-weight: 700;

    letter-spacing: -0.5px;
}


.footer-brand p {
    margin: 0;

    color: #747980;

    font-size: 12px;

    letter-spacing: -0.3px;
}


/* ==========================================
   FOOTER LINKS
========================================== */

.footer-links {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 50px;
}


.footer-link-group {
    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 90px;
}


.footer-link-group strong {
    display: block;

    margin-bottom: 4px;

    color: #a9adb3;

    font-size: 13px;
    font-weight: 600;
}


.footer-link-group a {
    color: #747980;

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-link-group a:hover {
    color: #c5a26d;

    transform: translateX(3px);
}


/* ==========================================
   SOCIAL
========================================== */

.footer-social {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
}


.footer-social > strong {
    color: #a9adb3;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.3px;
}


.social-icons {
    display: flex;

    align-items: center;

    gap: 12px;
}


.social-icons a {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #5b5f62;

    color: #181b1f;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.social-icons a:hover {
    background: #c5a26d;

    color: #fff;

    transform: translateY(-4px);
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


.footer-bottom-inner {
    position: relative;

    width: min(1200px, calc(100% - 80px));

    min-height: 68px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.copyright {
    margin: 0;

    color: #747980;

    font-size: 11px;
}


/* TOP BUTTON */

.footer-top {
    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: transparent;

    color: #9a9da1;

    font-size: 18px;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.footer-top:hover {
    background: #c5a26d;

    border-color: #c5a26d;

    color: #fff;

    transform:
        translateY(-50%)
        translateY(-4px);
}

@media screen and (max-width: 900px) {

    .footer-inner {
        width: min(100% - 40px, 700px);

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 50px 0;
    }


    .footer-links {
        justify-content: flex-start;

        gap: 45px;
    }


    .footer-bottom-inner {
        width: calc(100% - 40px);
    }

}


@media screen and (max-width: 600px) {

    .footer-inner {
        gap: 35px;

        padding: 45px 0;
    }


    .footer-logo-icon {
        width: 36px;
        height: 36px;

        font-size: 20px;
    }


    .footer-brand h2 {
        font-size: 18px;
    }


    .footer-brand p {
        font-size: 11px;
    }


    .footer-links {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;
    }


    .footer-link-group {
        min-width: 0;
    }


    .footer-link-group strong {
        font-size: 12px;
    }


    .footer-link-group a {
        font-size: 11px;

        word-break: keep-all;
    }


    .footer-social {
        gap: 13px;
    }


    .footer-bottom-inner {
        min-height: 65px;
    }


    .copyright {
        padding-right: 55px;

        font-size: 10px;

        line-height: 1.5;
    }



}

/**/
/* =====================================
   LOCATION MAP BOX
===================================== */

.location-map-box {
    width: 100%;
}


.map-card {
    width: 100%;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.08);
}


/* =====================================
   MAP IMAGE
===================================== */

.map-image {
    position: relative;

    width: 100%;
    height: 430px;

    overflow: hidden;

    background: #ddd;
}


.map-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.map-card:hover .map-image img {
    transform: scale(1.04);
}


/* 이미지 오버레이 */

.map-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 20%,
            rgba(0, 0, 0, 0.55) 100%
        );

    pointer-events: none;
}


/* =====================================
   MAP PIN
===================================== */

.map-pin {
    position: absolute;

    top: 50%;
    left: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    transform:
        translate(-50%, -50%);

    z-index: 3;
}


.map-pin-icon {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c9a163;

    font-size: 28px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.25);
}


.map-pin-icon::before {
    content: "";

    position: absolute;

    inset: -9px;

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    animation:
        mapPulse 2s infinite;
}


.map-pin span {
    padding:
        9px
        15px;

    background:
        rgba(20, 20, 20, 0.88);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.2);
}


/* 핀 애니메이션 */

@keyframes mapPulse {

    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}


/* =====================================
   ADDRESS
===================================== */

.map-address {
    position: absolute;

    left: 30px;
    bottom: 28px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 7px;

    color: #ffffff;
}


.address-label {
    color: #d6b47a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.map-address strong {
    font-size: 16px;

    font-weight: 500;

    letter-spacing: -0.5px;
}


/* =====================================
   MAP BUTTONS
===================================== */

.map-buttons {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    background:
        rgba(0, 0, 0, 0.08);
}


.map-button {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 100px;

    padding:
        20px
        28px;

    background: #ffffff;

    color: #222222;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.map-button:hover {
    background: #1b1d20;

    color: #ffffff;
}


/* 아이콘 */

.map-button-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 14px;

    border-radius: 50%;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


/* 카카오 */

.kakao-map-button
.map-button-icon {
    background: #fee500;

    color: #191600;
}


/* 네이버 */

.naver-map-button
.map-button-icon {
    background: #03c75a;
}


/* 버튼 텍스트 */

.map-button-text {
    display: flex;

    flex-direction: column;

    gap: 5px;

    font-size: 15px;

    font-weight: 700;
}


.map-button-text small {
    color: #999999;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.map-button:hover
.map-button-text small {
    color:
        rgba(255, 255, 255, 0.5);
}


/* 화살표 */

.map-button-arrow {
    margin-left: auto;

    font-size: 22px;

    transition:
        transform 0.3s ease;
}


.map-button:hover
.map-button-arrow {
    transform:
        translate(4px, -4px);
}


/* =====================================
   MOBILE
===================================== */

@media screen and (max-width: 768px) {

    .map-image {
        height: 330px;
    }


    .map-buttons {
        grid-template-columns: 1fr;
    }


    .map-button {
        min-height: 85px;

        padding:
            16px
            20px;
    }


    .map-address {
        left: 20px;
        bottom: 20px;
    }


    .map-address strong {
        font-size: 14px;
    }


    .map-pin-icon {
        width: 52px;
        height: 52px;

        font-size: 24px;
    }

}