:root {
    --bg: #1a1410;
    --bg-soft: #241c16;
    --surface: #2e241c;
    --text: #f5efe6;
    --muted: #b5a89a;
    --accent: #e85d04;
    --accent-deep: #c44a00;
    --line: rgba(245, 239, 230, 0.12);
    --ok: #2d6a4f;
    --err: #9b2226;
    --max: 1120px;
    --font: "Noto Sans KR", sans-serif;
    --display: "Bebas Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(26, 20, 16, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.site-logo {
    font-family: var(--display);
    font-size: 1.85rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--accent);
}
.site-nav {
    display: none;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-nav a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--muted);
    transition: color .2s;
}
.site-nav a:hover { color: var(--text); }
.site-menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    background: transparent;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}
.site-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
}
.site-mobile-menu {
    border-top: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1rem;
    background: var(--bg-soft);
}
.site-mobile-menu a {
    display: block;
    padding: 0.85rem 0;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.site-main { min-height: 55vh; }
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 12, 8, 0.72) 0%, rgba(20, 12, 8, 0.4) 45%, rgba(20, 12, 8, 0.15) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 1.5rem 7rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero__row {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.hero__left {
    max-width: 28rem;
}
.hero__eyebrow {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.8);
}
.hero__title {
    margin: 1.1rem 0 0;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    white-space: pre-line;
    letter-spacing: -0.02em;
}
.hero__subtitle {
    margin: 1.25rem 0 0;
    max-width: 26rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    white-space: pre-line;
}
.hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.75rem;
    margin-top: 2rem;
}
.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.hero__feature-icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #f5efe6;
    color: #1a1410;
    flex-shrink: 0;
}
.hero__feature p {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.92);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: #fff;
    color: #1a1410;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.btn-hero-primary:hover { background: rgba(255, 255, 255, 0.9); }
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.btn-hero-ghost:hover {
    background: #fff;
    color: #1a1410;
}

/* 강점 3컷 — 데스크톱 히어로 우측 */
.hero-strengths {
    display: none;
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    min-height: 20rem;
}
.hero-strength {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-strength img {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}
.hero-strength:hover img { transform: scale(1.05); }
.hero-strength__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 2rem 0.75rem 0.85rem;
    background: linear-gradient(to top, rgba(20, 12, 8, 0.85), transparent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-strengths-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
.hero-strengths-mobile .hero-strength { aspect-ratio: 4 / 5; }
.hero-strengths-mobile .hero-strength img { min-height: 0; height: 100%; }

.hero__scroll {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 5.5rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
}
@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

.section-pager {
    display: none;
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.4rem;
    color: #fff;
}
.section-pager.solid { color: var(--text); }
.pager-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
}
.pager-line {
    display: block;
    height: 1px;
    width: 8px;
    background: currentColor;
    opacity: 0.4;
    transition: width 0.4s, opacity 0.4s;
}
.pager-num {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.4;
    transition: opacity 0.4s;
}
.pager-link.active .pager-line { width: 32px; opacity: 0.9; }
.pager-link.active .pager-num { opacity: 1; }

/* 홈: 헤더 투명 → 스크롤 시 솔리드 */
.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
}
.page-home .site-header.is-solid {
    background: rgba(26, 20, 16, 0.95);
    border-bottom-color: var(--line);
    backdrop-filter: blur(10px);
}
.page-home .site-logo,
.page-home .nav-link {
    color: #fff;
}
.page-home .site-menu-toggle { border-color: rgba(255,255,255,0.35); }
.page-home .site-menu-toggle span { background: #fff; }
.page-home .site-logo { color: #fff; }
.page-home .site-main { padding-top: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); }

.section {
    padding: 5rem 0;
}
.section__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section__eyebrow {
    font-family: var(--display);
    letter-spacing: 0.22em;
    color: var(--accent);
    margin: 0;
    font-size: 1.1rem;
}
.section__head h2 {
    margin: 0.6rem 0 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: -0.02em;
}
.section__head p {
    margin: 0.9rem auto 0;
    max-width: 28rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.divider {
    display: block;
    width: 3rem;
    height: 2px;
    background: var(--accent);
    margin: 1.1rem auto 0;
}

.menu-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.menu-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    display: grid;
    gap: 0.35rem;
}
.menu-card__cat {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.menu-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}
.menu-card__top h3 {
    margin: 0;
    font-size: 1.05rem;
}
.menu-card__price {
    color: var(--text);
    font-weight: 800;
    white-space: nowrap;
}
.menu-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.review-grid,
.info-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.review-card,
.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.35rem;
}
.stars { color: #f4a261; letter-spacing: 0.08em; }
.review-card p {
    margin: 0.85rem 0 0;
    color: #e8ddd0;
    font-size: 0.95rem;
}
.review-card__meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--muted);
}

.gallery-grid {
    columns: 2;
    column-gap: 1rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0;
    width: 100%;
    cursor: pointer;
    color: inherit;
    text-align: left;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span {
    display: block;
    padding: 0.65rem 0.8rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.faq-group { margin-bottom: 2rem; }
.faq-group h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--accent);
}
.faq-list {
    border: 1px solid var(--line);
    border-radius: 1rem;
    overflow: hidden;
    background: var(--surface);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item__q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 1.1rem 1.2rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.faq-item__a {
    display: none;
    padding: 0 1.2rem 1.1rem;
    color: var(--muted);
    white-space: pre-line;
}
.faq-item.is-open .faq-item__a { display: block; }

.page-head {
    text-align: center;
    padding: 4rem 1.5rem 0;
}
.page-head .section__eyebrow { margin-bottom: 0.4rem; }
.page-head h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.page-head p {
    margin: 0.9rem auto 0;
    max-width: 28rem;
    color: var(--muted);
}

.form-card {
    max-width: 40rem;
    margin: 2rem auto 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.5rem;
}
.form-row {
    display: grid;
    gap: 1rem;
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label {
    font-size: 0.82rem;
    font-weight: 700;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    border-radius: 0.6rem;
    padding: 0.75rem 0.9rem;
    font: inherit;
}
.field textarea { min-height: 8rem; resize: vertical; }
.alert {
    max-width: 40rem;
    margin: 1.5rem auto 0;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    text-align: center;
    font-size: 0.92rem;
}
.alert-ok {
    background: rgba(45, 106, 79, 0.2);
    border: 1px solid rgba(45, 106, 79, 0.5);
    color: #95d5b2;
}
.alert-err {
    background: rgba(155, 34, 38, 0.2);
    border: 1px solid rgba(155, 34, 38, 0.45);
    color: #f4a3a5;
}

.result-card {
    max-width: 40rem;
    margin: 1.5rem auto 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.35rem;
}
.result-card dl {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.55rem 1rem;
    margin: 0;
}
.result-card dt { color: var(--muted); }
.result-card dd { margin: 0; font-weight: 700; }

.info-card h3 {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--accent);
}
.info-card p {
    margin: 0.6rem 0 0;
    color: #e8ddd0;
}

.cta-band {
    margin: 1rem 0 0;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #3a2418, #1a1410 55%, #2a160f);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-band h2 {
    margin: 0;
    font-size: 1.6rem;
}
.cta-band p {
    margin: 0.7rem 0 0;
    color: var(--muted);
}
.cta-band .btn { margin-top: 1.25rem; }

.map-placeholder {
    height: 280px;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(232,93,4,0.15), transparent 50%),
        var(--surface);
    display: grid;
    place-items: center;
    color: var(--muted);
    text-align: center;
    padding: 1.5rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem 1.5rem 3rem;
    background: #120e0b;
}
.site-footer__inner { max-width: var(--max); margin: 0 auto; }
.site-footer__brand {
    font-family: var(--display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0;
}
.site-footer__meta,
.site-footer__hours,
.site-footer__copy {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

@media (min-width: 768px) {
    .site-nav { display: flex; }
    .site-menu-toggle { display: none; }
    .site-mobile-menu { display: none !important; }
    .hero-strengths-mobile { grid-template-columns: repeat(3, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid,
    .info-grid { grid-template-columns: repeat(3, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 3; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .form-card { padding: 2rem; }
}
@media (min-width: 1024px) {
    .hero__inner { padding: 0 2.5rem 4.5rem; }
    .hero__row {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
    }
    .hero__left {
        flex: 0 1 24rem;
        max-width: 24rem;
    }
    .hero-strengths {
        display: grid;
        flex: 1 1 auto;
        width: min(100%, 58rem);
        gap: 0.9rem;
    }
    .hero-strengths-mobile { display: none; }
    .hero__scroll { bottom: 2rem; }
    .section-pager { display: flex; }
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { columns: 4; }
}
