/* ===========================
   채향당 (彩香堂) Chaehyangdang
   Korean Traditional Hanok Cafe
   Vintage Aesthetic Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --brown: #5C3D2E;
    --brown-dark: #3E2518;
    --brown-light: #7A5A4A;
    --brown-bg: #F0E6D8;
    --cream: #F5EFE6;
    --cream-dark: #EDE4D4;
    --cream-light: #FAF7F2;
    --olive: #7D8471;
    --olive-dark: #5E6454;
    --olive-light: #9BA38F;
    --olive-bg: #EEF0EB;
    --gold: #C4A35A;
    --gold-dark: #A68B42;
    --gold-light: #D4BA7A;
    --gold-bg: #F8F2E4;

    /* Neutral Colors */
    --black: #1A1410;
    --text: #3B3028;
    --text-sub: #5E5248;
    --text-muted: #8A7E74;
    --text-caption: #B5ACA3;
    --bg: #FDFBF8;
    --bg-warm: #F5EFE6;
    --bg-dark: #2A1F16;
    --border: #E5DDD3;
    --border-light: #EDE6DC;
    --white: #FFFFFF;

    /* Fonts */
    --font-kr: 'Gowun Batang', 'Noto Serif KR', Georgia, serif;
    --font-en: 'Playfair Display', Georgia, serif;
    --font-body: 'Gowun Batang', 'Noto Serif KR', Georgia, serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(92,61,46,.06);
    --shadow: 0 4px 12px rgba(92,61,46,.08);
    --shadow-md: 0 8px 24px rgba(92,61,46,.1);
    --shadow-lg: 0 16px 40px rgba(92,61,46,.12);
    --shadow-xl: 0 24px 56px rgba(92,61,46,.15);
    --shadow-gold: 0 4px 20px rgba(196,163,90,.2);

    /* Layout */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-w: 1240px;
    --header-h: 80px;

    /* Transitions */
    --transition: all .35s cubic-bezier(.4,0,.2,1);
    --transition-slow: all .6s cubic-bezier(.4,0,.2,1);

    /* Spacing */
    --section-padding: 120px;
    --section-padding-md: 80px;
    --section-padding-sm: 60px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.85;
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--gold-bg); color: var(--brown); }
::-moz-selection { background: var(--gold-bg); color: var(--brown); }

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brown); }

/* --- Preloader --- */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }

/* Tea cup animation */
.tea-loader {
    position: relative;
    width: 64px; height: 64px;
    margin: 0 auto 24px;
}
.tea-cup {
    width: 48px; height: 36px;
    border: 3px solid var(--brown);
    border-radius: 0 0 16px 16px;
    position: relative;
    margin: 16px auto 0;
}
.tea-cup::after {
    content: '';
    position: absolute; right: -14px; top: 4px;
    width: 12px; height: 18px;
    border: 3px solid var(--brown);
    border-left: none;
    border-radius: 0 8px 8px 0;
}
.tea-steam {
    display: flex; justify-content: center; gap: 6px;
    position: absolute; top: -4px; left: 50%;
    transform: translateX(-50%);
}
.tea-steam span {
    display: block; width: 2px; height: 14px;
    background: var(--brown-light);
    border-radius: 2px; opacity: .5;
    animation: steamRise 1.5s ease-in-out infinite;
}
.tea-steam span:nth-child(2) {
    animation-delay: .3s; height: 18px;
}
.tea-steam span:nth-child(3) {
    animation-delay: .6s;
}
@keyframes steamRise {
    0% { transform: translateY(0) scaleY(1); opacity: .6; }
    50% { transform: translateY(-10px) scaleY(1.3); opacity: .2; }
    100% { transform: translateY(-20px) scaleY(.8); opacity: 0; }
}
.tea-plate {
    width: 60px; height: 6px;
    background: var(--brown);
    border-radius: 0 0 4px 4px;
    margin: 0 auto;
    position: relative;
}
.tea-plate::before {
    content: '';
    position: absolute; top: -1px; left: -4px; right: -4px;
    height: 3px; background: var(--brown);
    border-radius: 2px;
}

/* Traditional window pattern loader */
.hanok-loader {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    position: relative;
    animation: hanokSpin 2.4s linear infinite;
}
.hanok-loader::before,
.hanok-loader::after {
    content: ''; position: absolute;
    border: 2px solid var(--brown);
}
.hanok-loader::before {
    inset: 0; border-radius: 50%;
    border-color: var(--brown) transparent var(--gold) transparent;
    animation: hanokSpin 1.2s linear infinite reverse;
}
.hanok-loader::after {
    inset: 8px; border-radius: 50%;
    border-color: transparent var(--olive) transparent var(--brown-light);
    animation: hanokSpin 1.8s linear infinite;
}
@keyframes hanokSpin { to { transform: rotate(360deg); } }

.loader-brand {
    font-family: var(--font-kr);
    font-size: 1.1rem; font-weight: 700;
    color: var(--brown);
    letter-spacing: 6px;
    margin-bottom: 4px;
}
.loader-brand-en {
    font-family: var(--font-en);
    font-size: .7rem; font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: italic;
}

/* --- Container --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 960px; }
.container.wide { max-width: 1400px; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-kr);
    font-weight: 700; font-size: .9rem;
    letter-spacing: .5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative; overflow: hidden;
}
.btn i { font-size: .8rem; transition: transform .3s; }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
    background: var(--brown); color: var(--cream);
    box-shadow: 0 4px 16px rgba(92,61,46,.25);
}
.btn-primary:hover {
    background: var(--brown-dark);
    box-shadow: 0 6px 24px rgba(92,61,46,.35);
    transform: translateY(-2px);
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(196,163,90,.15) 100%);
    opacity: 0; transition: opacity .3s;
}
.btn-primary:hover::before { opacity: 1; }

.btn-gold {
    background: var(--gold); color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196,163,90,.35);
}

.btn-outline {
    border-color: var(--white); color: var(--white);
    background: transparent;
}
.btn-outline:hover {
    background: var(--white); color: var(--brown);
}

.btn-outline-brown {
    border-color: var(--brown); color: var(--brown);
    background: transparent;
}
.btn-outline-brown:hover {
    background: var(--brown); color: var(--cream);
}

.btn-outline-gold {
    border-color: var(--gold); color: var(--gold);
    background: transparent;
}
.btn-outline-gold:hover {
    background: var(--gold); color: var(--white);
}

.btn-cream {
    background: var(--cream); color: var(--brown);
}
.btn-cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-white {
    border-color: rgba(255,255,255,.4); color: var(--white);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

.btn-icon {
    width: 48px; height: 48px; padding: 0;
    border-radius: 50%; justify-content: center;
}
.btn-icon i { margin: 0; transition: transform .3s; }
.btn-icon:hover i { transform: translateX(0) scale(1.1); }

/* --- Header / Navbar --- */
#header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; height: var(--header-h);
    transition: background .4s, box-shadow .4s, border-color .4s;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
#header.scrolled {
    background: rgba(245,239,230,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border-light);
    box-shadow: 0 2px 20px rgba(92,61,46,.06);
}

.navbar { height: var(--header-h); }
.nav-container {
    max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 12px;
    z-index: 1001;
}
.logo-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--brown);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 900;
    color: var(--gold); letter-spacing: 0;
    position: relative; overflow: hidden;
}
.logo-icon::after {
    content: '';
    position: absolute; inset: 3px;
    border: 1px solid rgba(196,163,90,.3);
    border-radius: 6px;
}
#header:not(.scrolled) .logo-icon {
    background: rgba(92,61,46,.7);
    backdrop-filter: blur(8px);
}
.logo-text {
    display: flex; flex-direction: column;
    line-height: 1.2;
}
.logo-kr {
    font-family: var(--font-kr);
    font-size: 1.15rem; font-weight: 700;
    color: var(--white);
    transition: color .4s;
    letter-spacing: 2px;
}
.logo-en {
    font-family: var(--font-en);
    font-size: .6rem; font-weight: 400;
    color: rgba(255,255,255,.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
    transition: color .4s;
}
#header.scrolled .logo-kr { color: var(--brown); }
#header.scrolled .logo-en { color: var(--text-muted); }

/* Nav Menu */
.nav-menu {
    display: flex; align-items: center; gap: 2px;
}
.nav-link {
    padding: 8px 18px; height: auto;
    font-family: var(--font-kr);
    font-size: .9rem; font-weight: 400;
    color: rgba(255,255,255,.8);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
    position: relative;
    letter-spacing: 1px;
}
.nav-link i { font-size: .6rem; transition: transform .3s; }
#header.scrolled .nav-link { color: var(--text-sub); }
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active {
    color: var(--brown);
    background: var(--brown-bg);
}

/* Active underline effect */
.nav-link::after {
    content: ''; position: absolute;
    bottom: 2px; left: 18px; right: 18px;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: center;
    transition: transform .3s ease;
}
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px; min-width: 210px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}
.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block; padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: .85rem; color: var(--text-sub);
    font-family: var(--font-kr);
    letter-spacing: .5px;
}
.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--brown);
}
.dropdown-menu a::before {
    content: '\2014\00a0';
    color: var(--gold);
    opacity: 0;
    transition: opacity .2s;
}
.dropdown-menu a:hover::before { opacity: 1; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.btn-lang {
    font-family: var(--font-en);
    font-size: .72rem; font-weight: 600;
    color: rgba(255,255,255,.6);
    letter-spacing: 1px; padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    transition: var(--transition);
}
#header.scrolled .btn-lang { color: var(--text-muted); border-color: var(--border); }
.btn-lang:hover { color: var(--gold); border-color: var(--gold); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; z-index: 1001;
    cursor: pointer;
}
.hamburger span {
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--brown); }
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(26,20,16,.5);
    backdrop-filter: blur(4px);
    z-index: 997; opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute; inset: 0;
    background: var(--brown-dark);
    overflow: hidden;
}
.hero-bg-video video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-bg-video img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(26,20,16,.4) 0%,
            rgba(26,20,16,.2) 40%,
            rgba(26,20,16,.5) 100%
        );
    z-index: 1;
}
.hero-overlay::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(196,163,90,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(92,61,46,.1) 0%, transparent 50%);
}
/* Subtle texture overlay */
.hero-texture {
    position: absolute; inset: 0; z-index: 1;
    opacity: .04;
    background-image:
        repeating-linear-gradient(
            0deg, transparent, transparent 40px,
            rgba(255,255,255,.1) 40px, rgba(255,255,255,.1) 41px
        ),
        repeating-linear-gradient(
            90deg, transparent, transparent 40px,
            rgba(255,255,255,.1) 40px, rgba(255,255,255,.1) 41px
        );
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    padding: 0 32px; max-width: 800px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 28px;
    border: 1px solid rgba(196,163,90,.4);
    border-radius: 50px;
    font-family: var(--font-en);
    font-size: .75rem; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    background: rgba(196,163,90,.06);
    font-style: italic;
}
.hero-title-hanja {
    font-family: var(--font-kr);
    font-size: clamp(.85rem, 1.5vw, 1rem);
    color: rgba(196,163,90,.6);
    letter-spacing: 12px;
    margin-bottom: 12px;
    font-weight: 400;
}
.hero-content h1 {
    font-family: var(--font-kr);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: 4px;
}
.hero-line { display: block; }
.hero-line.highlight {
    color: var(--gold-light);
}
.hero-line.small {
    font-size: .5em;
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(255,255,255,.6);
    margin-top: 8px;
}
.hero-desc {
    font-family: var(--font-kr);
    font-size: 1rem; line-height: 2;
    color: rgba(255,255,255,.6);
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-buttons {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
}
.hero-divider {
    width: 40px; height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
    opacity: .5;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
}
.hero-scroll span {
    font-family: var(--font-en);
    font-size: .65rem; letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    font-style: italic;
}
.scroll-line {
    width: 1px; height: 50px;
    background: rgba(255,255,255,.15);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { top: -50%; } 100% { top: 100%; }
}

/* Hero decorative side elements */
.hero-side-text {
    position: absolute; z-index: 2;
    font-family: var(--font-kr);
    writing-mode: vertical-rl;
    font-size: .75rem; letter-spacing: 6px;
    color: rgba(255,255,255,.15);
    font-weight: 400;
}
.hero-side-text.left { left: 32px; bottom: 120px; }
.hero-side-text.right { right: 32px; top: 120px; }

/* ===========================
   SECTION BASICS
   =========================== */
.section { padding: var(--section-padding) 0; position: relative; }
.section-warm { background: var(--cream); }
.section-brown {
    background: var(--brown-dark);
    color: var(--white);
}
.section-olive { background: var(--olive-bg); }

/* Korean-style texture backgrounds */
.section-pattern::before {
    content: ''; position: absolute; inset: 0;
    opacity: .03; pointer-events: none;
    background-image:
        radial-gradient(circle at 2px 2px, currentColor 1px, transparent 0);
    background-size: 32px 32px;
}
/* Traditional window lattice pattern */
.section-lattice::before {
    content: ''; position: absolute; inset: 0;
    opacity: .02; pointer-events: none;
    background-image:
        repeating-linear-gradient(
            0deg, transparent, transparent 48px,
            currentColor 48px, currentColor 49px
        ),
        repeating-linear-gradient(
            90deg, transparent, transparent 48px,
            currentColor 48px, currentColor 49px
        );
}

/* Section Tag */
.section-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-en);
    font-size: .72rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-style: italic;
}
.section-tag::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }
.section-tag.olive { color: var(--olive); }
.section-tag.olive::before { background: var(--olive); }

/* Section Title */
.section-title {
    font-family: var(--font-kr);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--brown-dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.section-title .en {
    font-family: var(--font-en);
    font-style: italic; font-weight: 500;
    letter-spacing: 0;
}
.section-title strong {
    color: var(--gold-dark);
    font-weight: 700;
}
.section-title.light { color: var(--cream); }
.section-title.light strong { color: var(--gold-light); }

/* Section Subtitle */
.section-subtitle {
    font-family: var(--font-kr);
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.9;
}
.section-subtitle.light { color: rgba(255,255,255,.55); }

.section-desc {
    font-size: .95rem; color: var(--text-sub);
    line-height: 2; margin-bottom: 16px;
}
.section-desc.light { color: rgba(255,255,255,.6); }

/* Section Header */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-header:not(.center) {
    display: flex; justify-content: space-between;
    align-items: flex-end;
}

/* Decorative divider */
.section-divider {
    display: flex; align-items: center;
    justify-content: center; gap: 16px;
    margin: 60px auto; max-width: 200px;
}
.section-divider::before,
.section-divider::after {
    content: ''; flex: 1; height: 1px;
    background: var(--border);
}
.section-divider .diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ===========================
   CAFE INTRO / ABOUT PREVIEW
   =========================== */
.intro-section { background: var(--cream); overflow: hidden; }
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.intro-image { position: relative; }
.intro-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.intro-img-wrapper::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(196,163,90,.1);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.intro-img-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--brown-light), var(--brown));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--cream); gap: 12px;
}
.intro-img-placeholder i { font-size: 3.5rem; opacity: .4; }
.intro-img-placeholder span {
    font-size: .85rem; font-weight: 400; opacity: .6;
    letter-spacing: 3px;
}

/* Floating badge */
.intro-badge {
    position: absolute; bottom: -24px; right: -24px;
    width: 130px; height: 130px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    border: 5px solid var(--cream);
    z-index: 2;
}
.intro-badge-text {
    font-family: var(--font-en);
    font-size: .55rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    opacity: .8;
}
.intro-badge-year {
    font-family: var(--font-en);
    font-size: 2.2rem; font-weight: 800;
    line-height: 1;
}
.intro-badge-sub {
    font-family: var(--font-kr);
    font-size: .6rem; opacity: .7;
}

/* Decorative frame behind image */
.intro-frame {
    position: absolute; top: -16px; left: -16px;
    right: 16px; bottom: 16px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: .3; z-index: -1;
}

.intro-text {}
.intro-text .lead {
    font-family: var(--font-kr);
    font-size: 1.15rem; font-weight: 700;
    color: var(--brown); line-height: 1.8;
    margin-bottom: 20px;
}
.intro-text .body {
    font-size: .92rem; color: var(--text-sub);
    line-height: 2; margin-bottom: 24px;
}
.intro-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin: 32px 0;
}
.intro-feature {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.intro-feature:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.intro-feature-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gold-bg);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.intro-feature h4 {
    font-family: var(--font-kr);
    font-size: .88rem; font-weight: 700;
    color: var(--brown); margin-bottom: 2px;
}
.intro-feature p {
    font-size: .78rem; color: var(--text-muted);
    line-height: 1.5;
}

/* ===========================
   MENU SECTION
   =========================== */
.menu-section { background: var(--bg); }
.menu-categories {
    display: flex; justify-content: center;
    gap: 8px; margin-bottom: 48px;
    flex-wrap: wrap;
}
.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-kr);
    font-size: .85rem; font-weight: 400;
    color: var(--text-sub);
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}
.menu-cat-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.menu-cat-btn.active {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
}

.menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.menu-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.menu-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brown));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 2;
}
.menu-card:hover::before { transform: scaleX(1); }
.menu-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.menu-card-img {
    aspect-ratio: 3/2; overflow: hidden;
    position: relative;
}
.menu-card-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.menu-card:hover .menu-card-img-inner { transform: scale(1.06); }
.mci-tea { background: linear-gradient(135deg, #D4C5A9, #A89279); }
.mci-coffee { background: linear-gradient(135deg, #8B7355, #5C4A32); }
.mci-dessert { background: linear-gradient(135deg, #E8D5B8, #C4A882); }
.mci-seasonal { background: linear-gradient(135deg, #9BA38F, #6B7A5E); }
.menu-card-img-inner i {
    font-size: 2.5rem;
    color: rgba(255,255,255,.2);
}
.menu-card-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 4px 14px; border-radius: 50px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-kr);
    font-size: .7rem; font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
}

.menu-card-body { padding: 28px; }
.menu-card-category {
    font-family: var(--font-en);
    font-size: .68rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    font-style: italic;
}
.menu-card-body h3 {
    font-family: var(--font-kr);
    font-size: 1.15rem; font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 8px; letter-spacing: 1px;
}
.menu-card-body p {
    font-size: .85rem; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 16px;
}
.menu-card-price {
    font-family: var(--font-en);
    font-size: 1.1rem; font-weight: 700;
    color: var(--gold-dark);
}
.menu-card-price .won {
    font-family: var(--font-kr);
    font-size: .82rem; font-weight: 400;
    color: var(--text-muted);
    margin-left: 2px;
}
.menu-card-footer {
    display: flex; justify-content: space-between;
    align-items: center;
}
.menu-card-link {
    font-family: var(--font-kr);
    font-size: .8rem; color: var(--brown);
    font-weight: 700; display: inline-flex;
    align-items: center; gap: 6px;
}
.menu-card-link i { font-size: .65rem; transition: transform .3s; }
.menu-card-link:hover { color: var(--gold-dark); }
.menu-card-link:hover i { transform: translateX(4px); }

/* Menu item rows (alternative layout) */
.menu-items { margin-top: 32px; }
.menu-item-row {
    display: flex; justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border);
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-name {
    font-family: var(--font-kr);
    font-size: .92rem; font-weight: 700;
    color: var(--brown);
}
.menu-item-name .sub {
    font-size: .78rem; font-weight: 400;
    color: var(--text-muted); margin-left: 8px;
}
.menu-item-dots {
    flex: 1; height: 0;
    border-bottom: 1px dotted var(--border);
    margin: 0 12px;
}
.menu-item-price {
    font-family: var(--font-en);
    font-size: .95rem; font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

/* ===========================
   SPACE / GALLERY SECTION
   =========================== */
.space-section {
    background: var(--cream);
    overflow: hidden;
}
.space-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.space-card {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer;
    transition: var(--transition);
}
.space-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.space-card.large {
    grid-column: span 2;
    grid-row: span 2;
}
.space-card-img {
    width: 100%; height: 100%;
    min-height: 240px;
    display: flex; align-items: center; justify-content: center;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.space-card:hover .space-card-img { transform: scale(1.05); }
.space-card.large .space-card-img { min-height: 500px; }
.sci-1 { background: linear-gradient(135deg, #8B7355, #5C4A32); }
.sci-2 { background: linear-gradient(135deg, #7D8471, #5E6454); }
.sci-3 { background: linear-gradient(135deg, #C4A35A, #A68B42); }
.sci-4 { background: linear-gradient(135deg, #A89279, #7A5A4A); }
.sci-5 { background: linear-gradient(135deg, #6B7A5E, #4A5940); }
.space-card-img i {
    font-size: 3rem; color: rgba(255,255,255,.1);
}
.space-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,20,16,.7) 0%,
        rgba(26,20,16,.1) 50%,
        transparent 100%
    );
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 28px; color: var(--white);
    transition: var(--transition);
}
.space-card:hover .space-card-overlay {
    background: linear-gradient(
        to top,
        rgba(26,20,16,.8) 0%,
        rgba(26,20,16,.2) 60%,
        transparent 100%
    );
}
.space-card-tag {
    font-family: var(--font-en);
    font-size: .65rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 8px;
    font-style: italic;
}
.space-card-overlay h3 {
    font-family: var(--font-kr);
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 4px; letter-spacing: 2px;
}
.space-card.large .space-card-overlay h3 { font-size: 1.5rem; }
.space-card-overlay p {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}
.space-card-arrow {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: .75rem;
    opacity: 0; transform: translateY(8px);
    transition: var(--transition);
}
.space-card:hover .space-card-arrow {
    opacity: 1; transform: translateY(0);
}

/* ===========================
   DIRECTIONS / CONTACT SECTION
   =========================== */
.directions-section { background: var(--bg); }
.directions-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--olive-bg), var(--cream-dark));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--olive); gap: 12px;
}
.map-placeholder i { font-size: 3rem; opacity: .4; }
.map-placeholder span {
    font-size: .85rem; font-weight: 400;
    opacity: .6; letter-spacing: 2px;
}

.directions-info {}
.directions-info-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 32px;
}
.contact-card {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gold-bg);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 14px;
}
.contact-card h4 {
    font-family: var(--font-kr);
    font-size: .88rem; font-weight: 700;
    color: var(--brown); margin-bottom: 6px;
}
.contact-card p {
    font-size: .82rem; color: var(--text-muted);
    line-height: 1.7;
}
.contact-card a {
    color: var(--gold-dark);
    font-weight: 700;
}
.contact-card a:hover { color: var(--brown); }

/* Contact Form */
.contact-form-wrapper {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}
.contact-form-title {
    font-family: var(--font-kr);
    font-size: 1.1rem; font-weight: 700;
    color: var(--brown); margin-bottom: 24px;
    letter-spacing: 1px;
}
.contact-form {
    display: flex; flex-direction: column; gap: 18px;
}
.form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex; flex-direction: column; gap: 6px;
}
.form-group label {
    font-family: var(--font-kr);
    font-size: .8rem; font-weight: 700;
    color: var(--text-sub);
    letter-spacing: .5px;
}
.form-group label .required {
    color: var(--gold); margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
    color: var(--text);
    font-size: .88rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-caption);
    font-style: italic;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196,163,90,.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238A7E74' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-check { display: flex; align-items: center; gap: 10px; }
.form-check input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}
.form-check label {
    font-size: .82rem; color: var(--text-muted);
    cursor: pointer;
}
.form-check a { color: var(--gold-dark); font-weight: 700; }
.form-check a:hover { text-decoration: underline; }

.btn-submit {
    padding: 15px 36px;
    background: var(--brown);
    color: var(--cream);
    border-radius: var(--radius-xl);
    font-family: var(--font-kr);
    font-weight: 700; font-size: .9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex; align-items: center;
    gap: 10px; justify-content: center;
    border: none; cursor: pointer;
}
.btn-submit:hover {
    background: var(--brown-dark);
    box-shadow: 0 4px 16px rgba(92,61,46,.25);
    transform: translateY(-2px);
}
.btn-submit i { font-size: .8rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,.45);
    padding: 80px 0 0;
    position: relative;
}
.footer::before {
    content: ''; position: absolute; inset: 0;
    opacity: .03; pointer-events: none;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255,255,255,1) 1px, transparent 0);
    background-size: 36px 36px;
}
.footer .container { position: relative; z-index: 1; }

.footer-grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon {
    width: 40px; height: 40px;
    background: var(--brown-light);
}
.footer-logo .logo-kr {
    font-family: var(--font-kr);
    font-size: 1.1rem; font-weight: 700;
    color: var(--cream); letter-spacing: 3px;
}
.footer-logo .logo-en {
    font-family: var(--font-en);
    font-size: .6rem; color: rgba(255,255,255,.35);
    letter-spacing: 2px; font-style: italic;
}
.footer-brand p {
    font-size: .82rem; line-height: 1.9;
    margin-bottom: 20px;
}
.footer-brand .address {
    font-size: .78rem;
    color: rgba(255,255,255,.3);
    line-height: 1.7;
}

.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.35);
    font-size: .9rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.06);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-links h4 {
    font-family: var(--font-kr);
    font-size: .82rem; font-weight: 700;
    color: rgba(255,255,255,.7);
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    font-size: .82rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .5px;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding: 28px 0;
    flex-wrap: wrap; gap: 16px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
    font-size: .75rem;
    color: rgba(255,255,255,.25);
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.footer-legal .privacy {
    color: rgba(255,255,255,.5);
    font-weight: 700;
}
.copyright {
    font-size: .75rem;
    color: rgba(255,255,255,.2);
    font-family: var(--font-en);
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999; font-size: .85rem;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 2px solid rgba(196,163,90,.3);
}
.back-to-top.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* ===========================
   AOS ANIMATIONS
   =========================== */
[data-aos] {
    opacity: 0;
    transition: all .7s cubic-bezier(.25,.1,.25,1);
}
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-in"] { transform: none; }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos="zoom-out"] { transform: scale(1.08); }
[data-aos].aos-animate {
    opacity: 1; transform: none;
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }
[data-aos-delay="600"] { transition-delay: .6s; }

/* ===========================
   PAGE HERO (Sub Pages)
   =========================== */
.page-hero {
    padding: 160px 0 80px;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--brown-dark) 0%, #3E2518 40%, var(--brown) 100%);
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg, transparent, transparent 60px,
            rgba(196,163,90,.03) 60px, rgba(196,163,90,.03) 61px
        ),
        repeating-linear-gradient(
            90deg, transparent, transparent 60px,
            rgba(196,163,90,.03) 60px, rgba(196,163,90,.03) 61px
        );
}
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196,163,90,.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(92,61,46,.15) 0%, transparent 50%);
}
.page-hero-content {
    position: relative; z-index: 1;
}
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
}
.breadcrumb a, .breadcrumb span {
    font-family: var(--font-kr);
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep {
    font-size: .6rem;
    color: rgba(255,255,255,.2);
}
.breadcrumb .current {
    color: rgba(255,255,255,.8);
    font-weight: 700;
}
.page-hero h1 {
    font-family: var(--font-kr);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--cream);
    margin-bottom: 12px; letter-spacing: 3px;
}
.page-hero p {
    font-size: .95rem;
    color: rgba(255,255,255,.45);
    line-height: 1.8;
}
/* Decorative hanja character */
.page-hero-hanja {
    position: absolute; right: 60px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-kr);
    font-size: 12rem; font-weight: 700;
    color: rgba(196,163,90,.04);
    line-height: 1; z-index: 0;
    pointer-events: none;
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */
/* CEO Section */
.about-section { padding: var(--section-padding) 0; }
.about-ceo { background: var(--bg); }
.ceo-grid {
    display: grid; grid-template-columns: 360px 1fr;
    gap: 60px; align-items: start;
}
.ceo-photo-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.ceo-photo-wrapper::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(196,163,90,.1);
    border-radius: var(--radius-lg);
}
.ceo-photo-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream-dark), var(--brown-bg));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--text-muted); gap: 10px;
}
.ceo-photo-placeholder i { font-size: 3.5rem; opacity: .25; }
.ceo-photo-placeholder span {
    font-size: .75rem; opacity: .4;
    letter-spacing: 3px;
}

.ceo-message {
    line-height: 2.1;
    color: var(--text-sub);
    font-size: .92rem;
}
.ceo-message p { margin-bottom: 18px; }
.ceo-message .quote {
    font-family: var(--font-kr);
    font-size: 1.25rem; font-weight: 700;
    color: var(--brown); line-height: 1.7;
    margin-bottom: 28px; padding-left: 24px;
    border-left: 3px solid var(--gold);
    letter-spacing: 1px;
}
.ceo-name {
    margin-top: 36px; text-align: right;
    font-size: .85rem; color: var(--text-muted);
}
.ceo-name strong {
    display: block; font-size: 1.2rem;
    color: var(--brown); font-weight: 700;
    font-family: var(--font-kr);
    letter-spacing: 3px;
}
.ceo-name .title {
    font-size: .78rem; color: var(--text-caption);
    margin-top: 2px;
}

/* Vision Section */
.vision-section { background: var(--cream); }
.vision-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vision-card {
    text-align: center; padding: 48px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.vision-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brown));
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.vision-card:hover::after { transform: scaleX(1); }
.vision-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}
.vision-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--gold-bg);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}
.vision-card:hover .vision-icon {
    background: var(--gold);
    color: var(--white);
}
.vision-card h3 {
    font-family: var(--font-kr);
    font-size: 1.1rem; font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.vision-card p {
    font-size: .85rem; color: var(--text-muted);
    line-height: 1.8;
}
.vision-card .number {
    position: absolute; top: 16px; right: 20px;
    font-family: var(--font-en);
    font-size: 2.5rem; font-weight: 800;
    color: var(--border-light);
    line-height: 1;
}

/* Timeline / History */
.history-section { background: var(--bg); }
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex; align-items: flex-start;
    margin-bottom: 48px; position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse; text-align: right;
}
.timeline-year {
    width: 50%; padding: 0 40px;
    font-family: var(--font-en);
    font-size: 1.6rem; font-weight: 800;
    color: var(--gold-dark);
    font-style: italic;
}
.timeline-content {
    width: 50%; padding: 0 40px;
}
.timeline-content h4 {
    font-family: var(--font-kr);
    font-size: .95rem; font-weight: 700;
    color: var(--brown); margin-bottom: 6px;
    letter-spacing: .5px;
}
.timeline-content p {
    font-size: .82rem; color: var(--text-muted);
    line-height: 1.7;
}
.timeline-dot {
    position: absolute; left: 50%; top: 8px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
    transform: translateX(-50%); z-index: 1;
}

/* Timeline (simple row style for smaller viewports) */
.timeline-simple .timeline-item {
    display: grid; grid-template-columns: 100px 1fr;
    gap: 32px; padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}
.timeline-simple .timeline-item:nth-child(odd) {
    flex-direction: row; text-align: left;
}
.timeline-simple .timeline-year {
    width: auto; padding: 0;
    font-size: 1.2rem;
}
.timeline-simple .timeline-content {
    width: auto; padding: 0;
}

/* ===========================
   BOARD PAGE STYLES
   =========================== */
.board-section { padding: var(--section-padding) 0; background: var(--bg); }

/* Board Tabs */
.board-tabs {
    display: flex; gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px;
}
.board-tab {
    padding: 14px 24px;
    font-family: var(--font-kr);
    font-size: .9rem; font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    letter-spacing: 1px;
}
.board-tab.active,
.board-tab:hover {
    color: var(--brown);
    border-bottom-color: var(--gold);
    font-weight: 700;
}

/* Board Search */
.board-search {
    display: flex; gap: 10px;
    max-width: 380px; margin-left: auto;
    margin-bottom: 24px;
}
.board-search input {
    flex: 1; padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .85rem; outline: none;
    background: var(--cream-light);
    transition: var(--transition);
    font-family: var(--font-kr);
}
.board-search input:focus {
    border-color: var(--gold);
    background: var(--white);
}
.board-search button {
    padding: 11px 20px;
    background: var(--brown);
    color: var(--cream);
    border-radius: var(--radius-sm);
    font-family: var(--font-kr);
    font-size: .85rem; font-weight: 700;
    border: none; cursor: pointer;
    transition: var(--transition);
    letter-spacing: .5px;
}
.board-search button:hover { background: var(--brown-dark); }

/* Board Table */
.board-table { width: 100%; border-collapse: collapse; }
.board-table thead {
    background: var(--cream);
    border-bottom: 2px solid var(--brown);
}
.board-table th {
    padding: 13px 16px;
    font-family: var(--font-kr);
    font-size: .78rem; font-weight: 700;
    color: var(--brown);
    text-align: left;
    letter-spacing: 1px;
}
.board-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: .88rem; color: var(--text-sub);
}
.board-table tbody tr {
    transition: background .2s;
    cursor: pointer;
}
.board-table tbody tr:hover { background: var(--cream-light); }
.board-table .num {
    width: 52px; text-align: center;
    color: var(--text-caption);
    font-family: var(--font-en);
    font-size: .82rem;
}
.board-table .title-cell {
    font-weight: 400;
    color: var(--text);
}
.board-table .title-cell a:hover { color: var(--gold-dark); }
.board-table .title-cell .new-badge {
    display: inline-block;
    padding: 2px 7px;
    background: var(--gold);
    color: var(--white);
    font-size: .6rem; font-weight: 700;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: .5px;
    font-family: var(--font-en);
}
.board-table .date {
    color: var(--text-caption);
    font-family: var(--font-en);
    font-size: .82rem;
}
.board-table .views {
    color: var(--text-caption);
    font-size: .82rem;
    text-align: center;
}
.pinned-row { background: var(--gold-bg); }
.pinned-row:hover { background: var(--gold-bg) !important; }

/* Pagination */
.pagination {
    display: flex; justify-content: center;
    gap: 4px; margin-top: 40px;
}
.page-btn {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-en);
    font-size: .88rem; font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.page-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.page-btn.active {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
}
.page-btn.arrow {
    font-size: .75rem;
    color: var(--text-caption);
}
.page-btn.arrow:hover { color: var(--brown); }

/* Board card view (alternative) */
.board-card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.board-card {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.board-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}
.board-card-img {
    aspect-ratio: 16/10; overflow: hidden;
}
.board-card-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    transition: transform .5s;
}
.board-card:hover .board-card-img-inner { transform: scale(1.05); }
.board-card-img-inner i { font-size: 2rem; color: var(--text-caption); opacity: .3; }
.board-card-body { padding: 20px; }
.board-card-tag {
    font-family: var(--font-en);
    font-size: .65rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    font-style: italic;
}
.board-card-body h3 {
    font-family: var(--font-kr);
    font-size: .95rem; font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.5; margin-bottom: 10px;
    letter-spacing: .5px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.board-card-date {
    font-family: var(--font-en);
    font-size: .75rem; color: var(--text-caption);
}

/* ===========================
   CTA / HIGHLIGHT SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-light) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(196,163,90,.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(196,163,90,.08) 0%, transparent 50%);
}
.cta-section::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg, transparent, transparent 50px,
            rgba(255,255,255,.015) 50px, rgba(255,255,255,.015) 51px
        ),
        repeating-linear-gradient(
            90deg, transparent, transparent 50px,
            rgba(255,255,255,.015) 50px, rgba(255,255,255,.015) 51px
        );
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--cream); font-weight: 700;
    margin-bottom: 16px; line-height: 1.5;
    letter-spacing: 2px;
}
.cta-content h2 .gold { color: var(--gold-light); }
.cta-content p {
    color: rgba(255,255,255,.55);
    font-size: 1rem; margin-bottom: 36px;
    line-height: 1.9;
}
.cta-buttons {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
}

/* ===========================
   SPECIAL CARDS & COMPONENTS
   =========================== */
/* Feature cards with hover effects */
.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brown));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.feature-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: var(--gold-bg);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-card-icon {
    background: var(--gold);
    color: var(--white);
}
.feature-card h3 {
    font-family: var(--font-kr);
    font-size: 1.05rem; font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 10px; letter-spacing: .5px;
}
.feature-card p {
    font-size: .85rem; color: var(--text-muted);
    line-height: 1.8;
}
.feature-card-number {
    position: absolute; top: 20px; right: 20px;
    font-family: var(--font-en);
    font-size: 2.5rem; font-weight: 800;
    color: var(--border-light); line-height: 1;
    font-style: italic;
}

/* Info / Stats Cards */
.stat-card {
    text-align: center; padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}
.stat-number {
    font-family: var(--font-en);
    font-size: 2.4rem; font-weight: 800;
    color: var(--gold-dark); line-height: 1;
    margin-bottom: 8px;
    font-style: italic;
}
.stat-label {
    font-family: var(--font-kr);
    font-size: .82rem; color: var(--text-muted);
    letter-spacing: 1px;
}

/* Testimonial / Quote cards */
.quote-card {
    padding: 36px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    position: relative;
}
.quote-card::before {
    content: '\201C';
    font-family: var(--font-en);
    font-size: 4rem; color: var(--gold);
    opacity: .3; position: absolute;
    top: 12px; left: 24px; line-height: 1;
}
.quote-card p {
    font-family: var(--font-kr);
    font-size: .95rem; color: var(--text-sub);
    line-height: 2; font-style: italic;
    padding-left: 8px;
}
.quote-card .author {
    margin-top: 16px; padding-left: 8px;
    font-size: .82rem; color: var(--text-muted);
    font-style: normal;
}
.quote-card .author strong {
    color: var(--brown); font-weight: 700;
}

/* ===========================
   GALLERY LIGHTBOX
   =========================== */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(26,20,16,.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: var(--white); font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-content {
    max-width: 80vw; max-height: 80vh;
    border-radius: var(--radius);
    overflow: hidden;
}
.lightbox-content img {
    width: 100%; height: 100%;
    object-fit: contain;
}

/* ===========================
   TAGS & BADGES
   =========================== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-kr);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .5px;
}
.badge-tea { background: var(--gold-bg); color: var(--gold-dark); }
.badge-coffee { background: #F0E6D8; color: var(--brown); }
.badge-dessert { background: var(--olive-bg); color: var(--olive-dark); }
.badge-event { background: #FFF3E0; color: #E65100; }
.badge-new { background: var(--gold); color: var(--white); }

/* ===========================
   OPERATING HOURS / INFO TABLE
   =========================== */
.info-table {
    width: 100%; border-collapse: collapse;
}
.info-table th,
.info-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: .88rem;
    text-align: left;
}
.info-table th {
    font-family: var(--font-kr);
    font-weight: 700;
    color: var(--brown);
    background: var(--cream-light);
    width: 140px;
    letter-spacing: 1px;
}
.info-table td {
    color: var(--text-sub);
}
.info-table .highlight {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ===========================
   SEASONAL BANNER
   =========================== */
.seasonal-banner {
    background: var(--olive);
    padding: 20px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.seasonal-banner::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 20px,
        rgba(255,255,255,.02) 20px, rgba(255,255,255,.02) 40px
    );
}
.seasonal-banner p {
    position: relative; z-index: 1;
    font-family: var(--font-kr);
    font-size: .88rem; color: var(--cream);
    letter-spacing: 2px;
}
.seasonal-banner .gold { color: var(--gold-light); font-weight: 700; }

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet landscape */
@media (max-width: 1024px) {
    :root { --section-padding: 96px; }
    .container { padding: 0 28px; }
    .nav-container { padding: 0 28px; }

    .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-image { max-width: 560px; margin: 0 auto; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .space-grid { grid-template-columns: 1fr 1fr; }
    .space-card.large { grid-column: span 2; grid-row: span 1; }
    .space-card.large .space-card-img { min-height: 320px; }
    .directions-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .ceo-grid { grid-template-columns: 1fr; }
    .ceo-photo-wrapper { max-width: 320px; }
    .vision-cards { grid-template-columns: 1fr; }
    .board-card-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-side-text { display: none; }
    .page-hero-hanja { display: none; }

    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column; text-align: left;
        padding-left: 50px;
    }
    .timeline-year, .timeline-content { width: 100%; padding: 0; }
    .timeline-dot { left: 20px; }
    .timeline-year { font-size: 1.3rem; margin-bottom: 8px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    :root {
        --header-h: 68px;
        --section-padding: 72px;
    }
    .section { padding: var(--section-padding) 0; }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 85%; max-width: 360px; height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 28px 28px; gap: 0;
        box-shadow: -6px 0 30px rgba(92,61,46,.12);
        transition: right .4s cubic-bezier(.4,0,.2,1);
        z-index: 998; overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu .nav-link {
        color: var(--text-sub);
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%; border-radius: 0;
        letter-spacing: 1px;
    }
    .nav-menu .nav-link:hover { color: var(--brown); background: none; }
    .nav-menu .nav-link::after { display: none; }

    .dropdown-menu {
        position: static; box-shadow: none; border: none;
        opacity: 1; visibility: visible; transform: none;
        padding: 0 0 0 16px; min-width: 0;
        background: transparent;
    }
    .dropdown-menu a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
    }
    .dropdown-menu a::before { display: none; }

    .hamburger { display: flex; }

    /* Hero adjustments */
    .hero-content { padding: 0 20px; }
    .hero-scroll { bottom: 24px; }

    /* Grids go single column */
    .menu-grid { grid-template-columns: 1fr; }
    .space-grid { grid-template-columns: 1fr; }
    .space-card.large { grid-column: span 1; }
    .space-card.large .space-card-img { min-height: 260px; }
    .directions-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .intro-features { grid-template-columns: 1fr; }

    .section-header:not(.center) {
        flex-direction: column;
        align-items: flex-start; gap: 16px;
    }

    /* Board */
    .board-table .hide-mobile { display: none; }
    .board-card-grid { grid-template-columns: 1fr; }
    .board-tabs { overflow-x: auto; flex-wrap: nowrap; }
    .board-tab { white-space: nowrap; flex-shrink: 0; }
    .board-search { max-width: 100%; }

    /* Page hero */
    .page-hero { padding: 120px 0 48px; }
    .page-hero h1 { font-size: 1.6rem; }

    /* Timeline mobile */
    .timeline::before { left: 12px; }
    .timeline-item,
    .timeline-item:nth-child(odd) { padding-left: 36px; }
    .timeline-dot { left: 12px; width: 10px; height: 10px; }
}

/* Mobile */
@media (max-width: 480px) {
    :root { --section-padding: 56px; }
    .container { padding: 0 20px; }

    .hero-content h1 { font-size: 1.8rem; letter-spacing: 2px; }
    .hero-badge { font-size: .65rem; padding: 6px 20px; letter-spacing: 3px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .section-title { font-size: 1.4rem; }

    .intro-badge { width: 100px; height: 100px; bottom: -16px; right: -8px; }
    .intro-badge-year { font-size: 1.6rem; }

    .menu-categories { gap: 6px; }
    .menu-cat-btn { padding: 8px 16px; font-size: .78rem; }

    .space-card-img { min-height: 200px; }
    .space-card.large .space-card-img { min-height: 220px; }

    .cta-section { padding: 64px 0; }
    .cta-content h2 { font-size: 1.3rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    .vision-card { padding: 32px 20px; }
    .stat-number { font-size: 2rem; }

    .footer { padding-top: 48px; }
    .footer-grid { gap: 24px; }

    .page-hero { padding: 100px 0 36px; }

    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-brown { color: var(--brown); }
.text-gold { color: var(--gold-dark); }
.text-olive { color: var(--olive); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--text-muted); }

.bg-cream { background: var(--cream); }
.bg-brown { background: var(--brown-dark); color: var(--cream); }
.bg-warm { background: var(--bg-warm); }
.bg-white { background: var(--white); }

.font-kr { font-family: var(--font-kr); }
.font-en { font-family: var(--font-en); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    #header, .back-to-top, #preloader,
    .hero-scroll, .hero-side-text { display: none; }
    .section { padding: 40px 0; }
    body { color: #000; background: #fff; }
    .hero-section { min-height: auto; padding: 40px 0; }
    .hero-overlay { display: none; }
}
