@charset "UTF-8";

:root {
    --primary: #e61e2e;
    --primary-dark: #b70f1d;
    --gold: #d7b46a;
    --bg: #08090b;
    --bg-soft: #101216;
    --bg-card: #15171c;
    --text: #f7f7f8;
    --muted: #a8abb2;
    --muted-2: #737780;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(230, 30, 46, 0.38);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    --kakao: #fee500;
    --kakao-text: #191600;
    --radius: 8px;
    --header-height: 76px;
    --container: 1280px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", sans-serif;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

body.is-loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-kakao svg,
.mobile-kakao svg {
    fill: currentColor;
    stroke: none;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    border-radius: var(--radius);
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.section-container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

section {
    position: relative;
    padding: 96px 0;
    border-bottom: 1px solid var(--line);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 11, 0.78);
    backdrop-filter: blur(16px);
    transform: translateY(0);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.34s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(8, 9, 11, 0.96);
    box-shadow: var(--shadow);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

body.nav-open .site-header {
    transform: translateY(0);
}

.header-container {
    width: min(100% - 32px, var(--container));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.brand-text span {
    color: var(--primary);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: linear-gradient(145deg, #191114 0%, #0d0e10 100%);
    color: var(--primary);
    box-shadow: inset 0 0 0 4px rgba(230, 30, 46, 0.08), 0 10px 24px rgba(230, 30, 46, 0.16);
}

.brand-mark svg {
    width: 25px;
    height: 25px;
}

.brand-mark circle {
    stroke-width: 3;
}

.brand-mark path {
    stroke-width: 3.2;
}

.brand-mark-large {
    width: 70px;
    height: 70px;
}

.brand-mark-large svg {
    width: 46px;
    height: 46px;
}

.brand-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--muted);
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 34px rgba(230, 30, 46, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-kakao {
    background: var(--kakao);
    color: var(--kakao-text);
    border-color: var(--kakao);
    box-shadow: 0 10px 28px rgba(254, 229, 0, 0.2);
}

.btn-kakao:hover {
    background: #f4db00;
}

.btn-reserve {
    background: rgba(230, 30, 46, 0.14);
    border-color: rgba(230, 30, 46, 0.45);
    color: #fff;
}

.btn-reserve:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.btn-small {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 14px;
}

.btn-large {
    min-height: 54px;
    padding: 15px 26px;
}

.logo-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(230, 30, 46, 0.14), transparent 34%),
        #050506;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.48s ease, visibility 0.48s ease;
}

.logo-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.78;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.hero-section {
    min-height: calc(100svh - 46px);
    max-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 74px) 0 78px;
    border-bottom: 1px solid var(--line-strong);
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    object-fit: cover;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.22) 100%),
        linear-gradient(0deg, rgba(8, 9, 11, 0.88) 0%, rgba(8, 9, 11, 0.1) 40%, rgba(8, 9, 11, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 12px;
    border: 1px solid rgba(230, 30, 46, 0.34);
    border-radius: 999px;
    background: rgba(230, 30, 46, 0.13);
    color: #ff5d69;
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 820px;
    margin: 22px 0 20px;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 1.04;
    font-weight: 700;
}

.hero-lead {
    max-width: 680px;
    margin: 0 0 32px;
    color: #e4e5e8;
    font-size: 19px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    gap: 12px;
    max-width: 680px;
}

.hero-facts div {
    min-height: 96px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(12, 12, 14, 0.66);
}

.hero-facts strong {
    display: block;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
}

.hero-facts span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.intro-section,
.menu-section,
.rules-section {
    background: var(--bg);
}

.seo-section,
.groups-section,
.faq-section {
    background: var(--bg-soft);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header h2,
.split-text h2,
.booking-inner h2 {
    margin: 16px 0 12px;
    color: var(--text);
    font-size: 34px;
    line-height: 1.22;
    font-weight: 700;
}

.section-header p,
.split-text p,
.booking-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.grid {
    display: grid;
    gap: 22px;
}

.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.image-card,
.menu-panel,
.detail-card,
.step-card,
.rule-card,
.faq-wrapper details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.feature-card,
.rule-card,
.step-card {
    padding: 26px;
}

.feature-card:hover,
.image-card:hover,
.detail-card:hover,
.step-card:hover,
.rule-card:hover {
    border-color: var(--line-strong);
}

.icon-box {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border: 1px solid rgba(230, 30, 46, 0.32);
    border-radius: var(--radius);
    background: rgba(230, 30, 46, 0.1);
    color: var(--primary);
    font-size: 24px;
}

.feature-card h3,
.image-card h3,
.detail-card h3,
.step-card h3,
.rule-card h3,
.menu-panel h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.feature-card p,
.image-card p,
.step-card p,
.rule-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    align-items: center;
    gap: 52px;
}

.split-text p {
    margin-bottom: 24px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: #d9dbe0;
    font-weight: 600;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 30, 46, 0.14);
}

.split-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-card {
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.image-card:hover,
.detail-card:hover {
    transform: translateY(-3px);
}

.image-card img {
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.card-body {
    padding: 18px;
}

.menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
    gap: 28px;
    align-items: stretch;
}

.menu-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #101216;
    box-shadow: var(--shadow);
}

.menu-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(8, 9, 11, 0.34) 100%);
    pointer-events: none;
}

.menu-photo img {
    height: 100%;
    min-height: 410px;
    object-fit: cover;
}

.menu-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(230, 30, 46, 0.2), transparent 34%),
        linear-gradient(150deg, rgba(22, 24, 29, 0.98), rgba(10, 11, 14, 0.98));
    border-color: rgba(255, 255, 255, 0.15);
}

.menu-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.panel-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 180, 106, 0.34);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(215, 180, 106, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-panel h3 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.3;
    word-break: keep-all;
}

.menu-panel-lead {
    margin: 0;
    color: #c6c8ce;
    font-size: 15px;
    word-break: keep-all;
}

.menu-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.menu-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-row:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 30, 46, 0.42);
    background: rgba(255, 255, 255, 0.065);
}

.menu-row-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(215, 180, 106, 0.36);
    border-radius: 50%;
    background: rgba(215, 180, 106, 0.1);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

.menu-row strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    word-break: keep-all;
}

.menu-row div span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
}

.notice-text {
    margin: 18px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(230, 30, 46, 0.2);
    border-radius: var(--radius);
    background: rgba(230, 30, 46, 0.08);
    color: #bfc2c9;
    font-size: 13px;
    line-height: 1.6;
    word-break: keep-all;
}

.margin-top {
    margin-top: 24px;
}

.detail-card {
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.detail-card img {
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
}

.detail-card h3 {
    margin: 0;
    padding: 17px 18px 19px;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-flow {
    isolation: isolate;
    padding-top: 0;
}

.process-flow::before,
.process-flow::after {
    content: "";
    position: absolute;
    top: 53px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
}

.process-flow::before {
    z-index: 0;
    background: linear-gradient(90deg, rgba(230, 30, 46, 0.2), rgba(215, 180, 106, 0.34), rgba(230, 30, 46, 0.2));
}

.process-flow::after {
    z-index: 0;
    background: linear-gradient(90deg, transparent 0%, transparent 38%, var(--primary) 48%, var(--gold) 52%, transparent 62%, transparent 100%);
    background-size: 220% 100%;
    filter: drop-shadow(0 0 10px rgba(230, 30, 46, 0.42));
    animation: processRailFlow 5.6s linear infinite;
}

.step-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 168px;
    padding: 30px 26px 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
        var(--bg-card);
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(215, 180, 106, 0.7));
    opacity: 0.56;
}

.step-card span {
    position: relative;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 0 18px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transform: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 10px 22px rgba(230, 30, 46, 0.22);
    animation: processNodePulse 5.6s ease-in-out infinite;
}

.step-card span::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(230, 30, 46, 0.38);
    border-radius: 50%;
    opacity: 0;
    animation: processNodeRing 5.6s ease-out infinite;
}

.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
    word-break: keep-all;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card:nth-child(2) span,
.step-card:nth-child(2) span::after {
    animation-delay: 1.4s;
}

.step-card:nth-child(3) span,
.step-card:nth-child(3) span::after {
    animation-delay: 2.8s;
}

.step-card:nth-child(4) span,
.step-card:nth-child(4) span::after {
    animation-delay: 4.2s;
}

@keyframes processRailFlow {
    0% {
        background-position: 120% 0;
        opacity: 0;
    }
    10%,
    88% {
        opacity: 1;
    }
    100% {
        background-position: -120% 0;
        opacity: 0;
    }
}

@keyframes processNodePulse {
    0%,
    18%,
    100% {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 10px 22px rgba(230, 30, 46, 0.22);
    }
    7%,
    12% {
        background: var(--gold);
        color: #151006;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 0 8px rgba(215, 180, 106, 0.12), 0 14px 28px rgba(215, 180, 106, 0.26);
    }
}

@keyframes processNodeRing {
    0%,
    18%,
    100% {
        opacity: 0;
        transform: scale(0.82);
    }
    7% {
        opacity: 1;
        transform: scale(1);
    }
    14% {
        opacity: 0;
        transform: scale(1.34);
    }
}

@keyframes processLineFlowVertical {
    0% {
        transform: translateY(-20%);
        opacity: 0;
    }
    8%,
    86% {
        opacity: 1;
    }
    100% {
        transform: translateY(520%);
        opacity: 0;
    }
}

.action-banner {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
    gap: 0;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: #111216;
    box-shadow: var(--shadow);
}

.action-banner img {
    height: 100%;
    min-height: 310px;
    object-fit: cover;
}

.action-banner div {
    padding: 36px;
    align-self: center;
}

.action-banner h3 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.25;
}

.action-banner p {
    margin: 0 0 22px;
    color: var(--muted);
}

.rule-card {
    min-height: 160px;
    border-left: 3px solid var(--primary);
}

.faq-wrapper {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper details {
    padding: 0;
    overflow: hidden;
}

.faq-wrapper summary {
    cursor: pointer;
    padding: 20px 22px;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

.faq-wrapper summary::-webkit-details-marker {
    display: none;
}

.faq-wrapper summary::after {
    content: "+";
    float: right;
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
}

.faq-wrapper details[open] summary::after {
    content: "-";
}

.faq-wrapper p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 15px;
}

.booking-section {
    padding: 74px 0;
    border-bottom: 0;
    background:
        linear-gradient(90deg, rgba(230, 30, 46, 0.2), rgba(215, 180, 106, 0.08)),
        #09090b;
}

.booking-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.booking-inner h2 {
    margin-top: 14px;
}

.site-footer {
    padding: 54px 0 44px;
    border-top: 1px solid var(--line);
    background: #050608;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.footer-map {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.footer-map a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.footer-map a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin: 24px 0 18px;
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #fff;
    background: #111216;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary);
}

.footer-social svg {
    width: 19px;
    height: 19px;
}

.footer-social .fill-icon {
    fill: currentColor;
    stroke: none;
}

.footer-social .stroke-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-desc {
    max-width: 760px;
    margin: 0 0 8px;
    color: var(--muted-2);
    font-size: 13px;
}

.portfolio-notice {
    max-width: 760px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.portfolio-notice a {
    color: var(--gold);
    font-weight: 700;
}

.copyright {
    margin: 0;
    color: var(--muted-2);
    font-size: 13px;
}

.copyright a {
    color: var(--gold);
    font-weight: 700;
}

.top-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.top-button:hover {
    background: var(--primary-dark);
}

.top-button svg {
    width: 18px;
    height: 18px;
}

.top-button span {
    line-height: 1;
}

.mobile-bottom-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 950;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(5, 6, 8, 0.84);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
}

.mobile-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.mobile-bottom-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-kakao {
    background: var(--kakao);
    color: var(--kakao-text);
}

.mobile-reserve {
    background: var(--primary);
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-main {
    padding-top: var(--header-height);
    background: var(--bg);
}

.legal-hero {
    padding: 76px 0 54px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 18%, rgba(230, 30, 46, 0.22), transparent 30%),
        linear-gradient(180deg, #111319 0%, #08090b 100%);
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
    align-items: end;
}

.legal-hero h1 {
    margin: 14px 0 10px;
    color: var(--text);
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    word-break: keep-all;
}

.legal-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    word-break: keep-all;
}

.legal-summary-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(12, 14, 18, 0.76);
    box-shadow: var(--shadow);
}

.legal-summary-card span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

.legal-summary-card strong {
    display: block;
    margin: 7px 0 10px;
    color: var(--text);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.legal-summary-card p {
    max-width: none;
    color: #bec1c8;
    font-size: 14px;
    line-height: 1.65;
    word-break: keep-all;
}

.legal-content {
    padding: 58px 0 100px;
    background: linear-gradient(180deg, #08090b 0%, #0d0f13 100%);
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-height) + 26px);
    display: grid;
    gap: 6px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 19, 24, 0.92);
}

.legal-toc strong {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.legal-toc a {
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.legal-toc a:hover {
    border-color: rgba(230, 30, 46, 0.28);
    background: rgba(230, 30, 46, 0.08);
    color: var(--text);
}

.legal-panel {
    display: grid;
    gap: 14px;
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.legal-section {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        #111318;
}

.legal-section > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(215, 180, 106, 0.34);
    border-radius: 50%;
    background: rgba(215, 180, 106, 0.08);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

.legal-section h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    word-break: keep-all;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.78;
    word-break: keep-all;
}

.legal-section p {
    margin: 0;
}

.legal-section ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-section li {
    position: relative;
    padding-left: 16px;
}

.legal-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

@media (max-width: 1100px) {
    .header-actions,
    .header-cta {
        display: none;
    }

    .main-nav {
        gap: 14px;
    }

    .col-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-flow {
        padding-top: 0;
    }

    .process-flow::before,
    .process-flow::after {
        display: none;
    }

    .step-card span {
        position: relative;
        top: auto;
        left: auto;
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
        transform: none;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 68px;
    }

    section {
        padding: 72px 0;
    }

    .section-container {
        width: min(100% - 28px, var(--container));
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(8, 9, 11, 0.98);
        box-shadow: var(--shadow);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 13px 12px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .hero-section {
        min-height: calc(100svh - 36px);
        padding: calc(var(--header-height) + 54px) 0 58px;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 58%, rgba(0, 0, 0, 0.42) 100%),
            linear-gradient(0deg, rgba(8, 9, 11, 0.9) 0%, rgba(8, 9, 11, 0.2) 48%, rgba(8, 9, 11, 0.45) 100%);
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-facts,
    .col-3,
    .col-4,
    .split-layout,
    .menu-layout,
    .legal-hero-grid,
    .legal-layout,
    .action-banner,
    .booking-inner,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-facts {
        max-width: none;
    }

    .menu-photo img,
    .action-banner img {
        min-height: 260px;
    }

    .legal-toc {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .legal-toc strong {
        flex-basis: 100%;
    }

    .legal-toc a {
        flex: 1 1 auto;
        text-align: center;
    }

    .booking-inner {
        display: grid;
    }

    .footer-map {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 78px;
    }

    .logo {
        font-size: 15px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-mark svg {
        width: 22px;
        height: 22px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .section-header h2,
    .split-text h2,
    .booking-inner h2 {
        font-size: 28px;
    }

    .legal-hero {
        padding: 56px 0 38px;
    }

    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-hero p {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        padding-top: 0;
        gap: 16px;
    }

    .process-flow::before,
    .process-flow::after {
        display: block;
        left: 46px;
        right: auto;
        width: 2px;
        border-radius: 999px;
        z-index: 0;
    }

    .process-flow::before {
        top: 38px;
        bottom: 38px;
        height: auto;
        background: linear-gradient(180deg, rgba(230, 30, 46, 0.18), rgba(215, 180, 106, 0.42), rgba(230, 30, 46, 0.18));
    }

    .process-flow::after {
        top: 38px;
        height: 74px;
        background: linear-gradient(180deg, transparent, var(--primary), var(--gold), transparent);
        animation: processLineFlowVertical 4.8s linear infinite;
    }

    .feature-card,
    .rule-card,
    .step-card,
    .menu-panel,
    .action-banner div,
    .legal-summary-card,
    .legal-toc,
    .legal-section {
        padding: 22px;
    }

    .menu-panel h3 {
        font-size: 22px;
    }

    .menu-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    .menu-row-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .legal-section {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .top-button {
        display: none;
    }

    .mobile-bottom-actions {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
