/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #1a1008;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.45) 50%,
        rgba(0,0,0,.55) 100%
    );
}
.hero-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 7%;
}
.hero-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 11vw, 9rem);
    color: rgba(255,255,255,.88);
    letter-spacing: .12em;
    line-height: 1.05;
}
.hero-title h1 span {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    letter-spacing: .35em;
    color: rgba(255,255,255,.45);
    margin-top: 16px;
}
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.35);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.25);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: .2; transform: scaleY(.6); }
    50%      { opacity: .8; transform: scaleY(1); }
}

/* ── SECTIONS ── */
section { padding: 96px 0; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-label {
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-line {
    width: 36px;
    height: 1px;
    background: var(--red);
    margin-bottom: 32px;
}
.section-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.9;
    max-width: 480px;
}

/* ── INTRO ── */
.intro { background: var(--bg); }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-image {
    aspect-ratio: 4/5;
    background: #f0ebe3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    overflow: hidden;
}
.intro-text .btn-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
}
.intro-text .btn-line:hover { color: var(--red); border-color: var(--red); }

/* ── MENU PREVIEW ── */
.menu-preview { background: #fff; }
.menu-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}
.menu-preview-header a {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 3px;
    transition: color .2s;
}
.menu-preview-header a:hover { color: var(--ink); }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.menu-tile {
    position: relative;
    aspect-ratio: 3/4;
    background: #f0ebe3;
    overflow: hidden;
    cursor: pointer;
}
.menu-tile-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: transform .5s ease;
}
.menu-tile:hover .menu-tile-bg { transform: scale(1.05); }
.menu-tile-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
    color: #fff;
}
.menu-tile-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.menu-tile-info span {
    font-size: .75rem;
    opacity: .7;
    letter-spacing: .05em;
}

/* ── FEATURES ── */
.features { background: var(--bg); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.feature-item {
    background: var(--bg);
    padding: 48px 36px;
}
.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--border);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
}
.feature-item h4 {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.feature-item p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ── INFORMATION CARDS ── */
.info-cards-section { background: var(--bg); padding: 96px 0 0; }
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.info-card {
    background: #fff;
    padding: 44px 36px;
}
.info-card-label {
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}
.info-card-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: .02em;
}
.info-card-sub {
    font-size: .82rem;
    color: var(--muted);
    line-height: 2;
}
.info-card-sub .closed { color: #bbb; text-decoration: line-through; }

/* ── MAP ── */
.map-section { padding: 72px 0 96px; background: var(--bg); }
.map-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.map-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: .04em;
}
.map-section-header span {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
#naver-map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-image { aspect-ratio: 16/9; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .info-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    section { padding: 64px 0; }
    .section-title { font-size: 1.8rem; }
    .info-cards-grid { grid-template-columns: 1fr; }
    .info-card { padding: 32px 24px; }
    .map-section-header { flex-direction: column; gap: 8px; align-items: flex-start; }
    #naver-map { height: 280px; }
}
