@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;700;900&display=swap');

/* ============================
   CSS Variables
   ============================ */
:root {
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-glow: rgba(212,175,55,0.35);
    --accent: #ff3a6e;
    --accent-glow: rgba(255,58,110,0.3);
    --bg: #080808;
    --bg2: #0d0d0d;
    --bg3: #121212;
    --card-bg: rgba(20,20,20,0.85);
    --text: #ffffff;
    --text-sub: #cccccc;
    --text-muted: #888888;
    --border: rgba(255,255,255,0.08);
    --border-gold: rgba(212,175,55,0.25);
    --glass: rgba(12,12,12,0.75);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ============================
   Scroll Reveal Animations
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   Layout Helpers
   ============================ */
.sm_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sm_section_title {
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.2;
}
.sm_section_title .label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
}
.sm_section_title h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    word-break: keep-all;
}
.sm_section_title h2 span {
    background: linear-gradient(90deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sm_section_title p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   Header
   ============================ */
#sm_header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition);
}
#sm_header.scrolled {
    background: rgba(6,6,6,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.sm_top_bar {
    background: rgba(0,0,0,0.92);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    font-size: 13px;
    color: var(--text-muted);
}
.sm_top_bar .sm_container { display: flex; justify-content: space-between; align-items: center; }
.sm_top_info { display: flex; align-items: center; gap: 12px; }
.sm_top_info strong { color: var(--gold); font-size: 14px; }
.sm_top_info i { color: var(--gold); }
.sm_top_links { display: flex; list-style: none; gap: 15px; }
.sm_top_links a { color: var(--text-muted); font-size: 12px; transition: color 0.3s; }
.sm_top_links a:hover { color: var(--gold); }

.sm_main_header { padding: 16px 0; }
.sm_main_header .sm_container { display: flex; justify-content: space-between; align-items: center; }

.sm_logo a {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0;
    text-shadow: 0 0 20px var(--gold-glow);
    transition: text-shadow 0.3s;
    white-space: nowrap;
}
.sm_logo a:hover { text-shadow: 0 0 30px rgba(212,175,55,0.7); }

.sm_nav ul { list-style: none; display: flex; gap: 36px; }
.sm_nav a {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.sm_nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    transition: width 0.4s ease;
}
.sm_nav a:hover { color: var(--gold); }
.sm_nav a:hover::after { width: 100%; }

/* Mobile Hamburger */
.sm_hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1010;
}
.sm_hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.sm_hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sm_hamburger.active span:nth-child(2) { opacity: 0; }
.sm_hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.sm_mobile_nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4,4,4,0.98);
    z-index: 1005;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sm_mobile_nav.open {
    display: flex;
    opacity: 1;
}
.sm_mobile_nav a {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    transition: color 0.3s;
}
.sm_mobile_nav a:hover { color: var(--gold); }
.sm_mobile_nav .close_btn {
    position: absolute;
    top: 25px; right: 25px;
    font-size: 30px;
    color: var(--text-muted);
    cursor: pointer;
    background: none; border: none;
    transition: color 0.3s;
}
.sm_mobile_nav .close_btn:hover { color: var(--gold); }

/* ============================
   Hero Section
   ============================ */
.sm_hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.sm_hero_bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero_glamorous.png') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.sm_hero.loaded .sm_hero_bg { transform: scale(1); }
.sm_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.40) 40%,
        rgba(0,0,0,0.75) 80%,
        rgba(0,0,0,0.95) 100%
    );
}
.sm_hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.sm_hero_badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(212,175,55,0.08);
    backdrop-filter: blur(6px);
    animation: fadeInDown 1s ease 0.2s both;
}
.sm_hero_content h1 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    word-break: keep-all;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--gold) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.4s both;
}
.sm_hero_content .hero_sub {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 14px;
    animation: fadeInUp 1s ease 0.6s both;
}
.sm_hero_content .hero_desc {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: 44px;
    animation: fadeInUp 1s ease 0.7s both;
}
.sm_hero_btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Scroll indicator */
.sm_scroll_indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}
.sm_scroll_indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
}
.sm_scroll_indicator i { color: var(--gold); font-size: 18px; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   Buttons
   ============================ */
.sm_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.sm_btn_primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    box-shadow: 0 8px 25px var(--gold-glow);
}
.sm_btn_primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px rgba(212,175,55,0.55);
    color: #000;
}
.sm_btn_outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.sm_btn_outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}
.sm_btn_sm {
    padding: 11px 28px;
    font-size: 0.85rem;
}

/* ============================
   Stats Bar
   ============================ */
.sm_stats_bar {
    background: var(--bg2);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 40px 0;
}
.sm_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.sm_stat_item .num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.sm_stat_item .desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================
   Features / Promises Section
   ============================ */
.sm_features {
    padding: 120px 0;
    background: var(--bg);
}
.sm_features_inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.sm_features_label {
    position: sticky;
    top: 140px;
}
.sm_features_label .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.sm_features_label h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.5px;
    word-break: keep-all;
    color: #fff;
}
.sm_features_label h2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sm_features_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sm_feature_card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.sm_feature_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.sm_feature_card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 25px var(--gold-glow);
}
.sm_feature_card:hover::before { opacity: 1; }

.sm_feature_num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}
.sm_feature_icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 22px;
    transition: var(--transition);
}
.sm_feature_card:hover .sm_feature_icon {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 8px 20px var(--gold-glow);
}
.sm_feature_card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    word-break: keep-all;
}
.sm_feature_card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ============================
   About / Brand Section
   ============================ */
.sm_about {
    padding: 150px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}
.sm_about_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sm_about_text .sm_eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sm_about_text .sm_eyebrow::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold);
}
.sm_about_text h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    word-break: keep-all;
}
.sm_about_text h2 strong { color: var(--gold); }
.sm_about_text p {
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}
.sm_about_image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.sm_about_image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 30px 60px rgba(0,0,0,0.8);
    pointer-events: none;
}
.sm_about_image img {
    width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.25,0.8,0.25,1);
}
.sm_about_image:hover img { transform: scale(1.06); }

/* ============================
   Category Sections (텐카페/텐프로/일프로)
   ============================ */
.sm_category_section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.sm_category_section:nth-child(odd) { background: var(--bg); }
.sm_category_section:nth-child(even) { background: var(--bg2); }

.sm_cat_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sm_cat_inner.reverse { direction: rtl; }
.sm_cat_inner.reverse > * { direction: ltr; }

.sm_cat_image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.sm_cat_image_wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border-gold);
}
.sm_cat_image_wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    pointer-events: none;
}
.sm_cat_image_wrap img {
    width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.25,0.8,0.25,1);
}
.sm_cat_image_wrap:hover img { transform: scale(1.06); }

.sm_cat_badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--glass);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    z-index: 2;
}

.sm_cat_text .sm_eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}
.sm_cat_text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    word-break: keep-all;
    color: #fff;
}
.sm_cat_text .cat_sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 1px;
}
.sm_cat_text p {
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.sm_cat_features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sm_cat_features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-sub);
    font-size: 0.95rem;
}
.sm_cat_features li i {
    color: var(--gold);
    font-size: 14px;
    width: 20px;
    flex-shrink: 0;
}

/* ============================
   Parallax CTA Strip
   ============================ */
.sm_cta_strip {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
        url('https://images.unsplash.com/photo-1566737236500-c8ac43014a67?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
    text-align: center;
}
.sm_cta_strip h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
}
.sm_cta_strip h2 span { color: var(--gold); }
.sm_cta_strip p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ============================
   Video Section
   ============================ */
.sm_video_section {
    padding: 100px 0 120px;
    background: var(--bg2);
}
.sm_video_container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid var(--border-gold);
    aspect-ratio: 16 / 9;
    max-height: 650px;
    margin: 0 auto;
}
.sm_main_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sm_video_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.sm_video_container:hover .sm_video_overlay {
    opacity: 1;
}
.sm_video_overlay i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--gold-glow);
    transform: scale(0.8);
    transition: var(--transition);
}
.sm_video_container:hover .sm_video_overlay i {
    transform: scale(1);
}
.sm_video_overlay p {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================
   Location Section
   ============================ */
.sm_location {
    padding: 120px 0;
    background: var(--bg);
}
.sm_location_inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: stretch;
}
.sm_map_container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    height: 460px;
}
.sm_map_container iframe { width: 100%; height: 100%; border: 0; }
.sm_location_info {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 44px 36px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sm_location_info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.sm_location_info .divider {
    height: 1px;
    background: var(--border-gold);
}
.sm_info_row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.sm_info_row .icon_wrap {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}
.sm_info_row .text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.sm_info_row .text p {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================
   Footer
   ============================ */
.sm_footer {
    background: #000;
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 30px;
    text-align: center;
}
.sm_footer_logo {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0;
    margin-bottom: 24px;
    text-shadow: 0 0 20px var(--gold-glow);
}
.sm_footer_links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.sm_footer_links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.3s;
}
.sm_footer_links a:hover { color: var(--gold); }
.sm_footer_divider {
    height: 1px;
    background: var(--border);
    margin: 28px auto;
    max-width: 400px;
}
.sm_footer_info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 2;
}

/* ============================
   Floating Button
   ============================ */
.sm_floating_btns {
    position: fixed;
    right: 24px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9998;
}
.sm_float_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}
.sm_btn_icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #000;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 6px 20px var(--gold-glow);
    transition: var(--transition);
    position: relative; z-index: 2;
}
.sm_float_btn:hover .sm_btn_icon {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 28px rgba(212,175,55,0.6);
}
.sm_btn_label {
    position: absolute;
    right: 66px;
    background: var(--glass);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 30px;
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}
.sm_float_btn:hover .sm_btn_label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Top Button */
#top_btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--card-bg) !important;
    border: 1px solid var(--border-gold) !important;
    color: var(--gold) !important;
    font-size: 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#top_btn:hover {
    background: var(--gold) !important;
    color: #000 !important;
    transform: translateY(-3px);
}
#top_btn.visible { display: flex; }

/* ============================
   Keyframes
   ============================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
    .sm_features_inner { grid-template-columns: 1fr; }
    .sm_features_label { position: static; margin-bottom: 40px; }
    .sm_about_inner { grid-template-columns: 1fr; gap: 50px; }
    .sm_cat_inner { grid-template-columns: 1fr; gap: 50px; }
    .sm_cat_inner.reverse { direction: ltr; }
    .sm_location_inner { grid-template-columns: 1fr; }
    .sm_map_container { height: 350px; }
    .sm_stats_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sm_top_bar { display: none; }
    .sm_hamburger { display: flex; }
    .sm_nav { display: none; }
    .sm_main_header .sm_container { padding: 0 20px; }
    .sm_features_grid { grid-template-columns: 1fr; }
    .sm_hero_badge { font-size: 9px; letter-spacing: 3px; padding: 7px 16px; }
    .sm_cta_strip { padding: 70px 0; }
    .sm_about_image img { height: auto; }
    .sm_cat_image_wrap img { height: auto; }
    .sm_location_info { padding: 30px 24px; }
    .sm_footer_links { gap: 18px; }
}

@media (max-width: 480px) {
    .sm_hero_btns { flex-direction: column; align-items: center; }
    .sm_btn { width: 100%; max-width: 300px; justify-content: center; }
    .sm_stats_grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .sm_features { padding: 80px 0; }
    .sm_category_section { padding: 80px 0; }
    .sm_location { padding: 80px 0; }
}

/* ============================
   Sub Page Styles
   ============================ */
.sm_sub_hero {
    height: 50vh !important;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
    padding-top: 80px;
}
.sm_sub_hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.sm_sub_hero p {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.sm_category_detail {
    padding: 100px 0;
    background: var(--bg);
}
.sm_detail_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sm_detail_text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 24px;
    letter-spacing: -1px;
    word-break: keep-all;
}
.sm_detail_text h2 span { color: var(--gold); }
.sm_detail_text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    word-break: keep-all;
}
.sm_info_box {
    background: var(--bg2);
    border: 1px solid var(--border-gold);
    padding: 30px;
    border-radius: var(--radius);
    margin: 30px 0;
}
.sm_info_box h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.sm_info_box ul {
    list-style: none;
    padding: 0;
}
.sm_info_box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
}
.sm_info_box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
.sm_detail_image {
    position: relative;
}
.sm_detail_image img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    .sm_detail_inner { grid-template-columns: 1fr; }
    .sm_sub_hero { padding-top: 60px; }
}

/* ============================
   Drink Image Styles
   ============================ */
.sm_drink_image {
    width: 100%;
    margin-top: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: cover;
    max-height: 500px;
}