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

:root {
    --night: #080808; --charcoal: #151515; --border: #2a2a2a;
    --gold: #c9a962; --text-main: #f8f6f2; --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--night); color: var(--text-main); font-family: 'Pretendard', sans-serif; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* --- Header --- */
.acc-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 50; height: 80px; 
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px; background: rgba(8, 8, 8, 0.8); backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-left { flex: 1; }
.header-center { flex: 2; display: flex; justify-content: center; gap: 40px; }
.header-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.brand { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: #fff; transition: 0.3s; }
.brand:hover { color: var(--gold); }
.nav-link { font-size: 14px; color: var(--text-muted); transition: 0.3s; }
.nav-link:hover { color: var(--gold); }

/* --- Container & Animations --- */
.acc-container { max-width: 1100px; margin: 120px auto 80px; padding: 0 30px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease-out forwards; }

.board-title { font-family: 'Noto Serif KR', serif; font-size: 34px; font-weight: 500; margin-bottom: 30px; color: #fff; }
.search-group { display: flex; gap: 10px; }
.search-input {
    background: transparent; border: 1px solid #333; padding: 10px 20px; 
    color: #fff; width: 250px; outline: none; border-radius: 9999px; /* 둥글게 */
}
.btn-gold {
    background-color: var(--gold); color: #000; padding: 10px 24px; 
    border: none; border-radius: 9999px; /* 둥글게 */
    font-weight: 600; cursor: pointer; transition: background 0.3s;
}
.btn-gold:hover { background-color: #e0c277; }
.acc-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.acc-table th, .acc-table td { padding: 15px 10px; border-bottom: 1px solid #222; text-align: left; }
.acc-table th { color: var(--gold); font-weight: 500; font-size: 14px; }
.acc-table tr:hover { background: rgba(255, 255, 255, 0.03); }

/* --- Dark Form --- */
.dark-form-box { background: transparent; padding: 20px 0; width: 100%; }
.dark-form-row { margin-bottom: 25px; width: 100%; }
.dark-label { display: block; margin-bottom: 8px; font-size: 13px; color: var(--gold); font-weight: 500; }
.dark-input, .dark-textarea { 
    display: block; width: 100%; background: #0a0a0a; border: 1px solid #222; padding: 15px; 
    color: #fff; font-size: 14px; outline: none; transition: border-color 0.3s; 
}
.dark-input:focus, .dark-textarea:focus { border-color: var(--gold); }
.dark-textarea { min-height: 400px; resize: vertical; line-height: 1.6; }
.dark-upload-zone {
    display: block; width: 100%; border: 1px dashed #333; padding: 50px 20px; text-align: center; cursor: pointer;
    background: #0a0a0a; transition: border-color 0.3s; position: relative;
}
.dark-upload-zone:hover { border-color: var(--gold); }
.upload-icon-circle {
    width: 40px; height: 40px; margin: 0 auto 10px; border: 1px solid #444; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold);
}

.split-layout { display: flex; height: 100vh; overflow: hidden; background: var(--night); }
.gallery-section { flex: 1.4; display: flex; height: 100vh; background: var(--night); }
.gallery-item {
    flex: 1; position: relative; overflow: hidden; border-right: 1px solid var(--border);
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer;
}
.gallery-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6; filter: grayscale(100%); transition: 0.6s ease;
}
.gallery-item:hover { flex: 3; }
.gallery-item:hover .gallery-bg { opacity: 0.9; transform: scale(1.1); filter: grayscale(0%); }
.gallery-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent); transform: translateY(20px); transition: 0.6s;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.category-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--gold); letter-spacing: 2px; opacity: 0; transform: translateY(10px); transition: 0.4s 0.6s; }
.gallery-item:hover .category-num { opacity: 1; transform: translateY(0); }
.category-title { font-size: 32px; font-weight: 500; margin-bottom: 15px; white-space: nowrap; font-family: 'Noto Serif KR', serif; }
.category-desc { font-size: 15px; color: #ddd; line-height: 1.7; opacity: 0; transform: translateY(10px); transition: 0.4s 0.1s; display: none; word-break: keep-all; }
.gallery-item:hover .category-desc { opacity: 1; transform: translateY(0); display: block; }
.split-form-section {
    flex: 1; background: var(--charcoal); display: flex; flex-direction: column; justify-content: center;
    padding: 60px 80px; position: relative; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3); z-index: 10;
}
.split-branding { position: absolute; top: 50px; left: 80px; right: 80px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.floating-label-group { position: relative; margin-bottom: 25px; }
.floating-label-group input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding: 12px 0; font-size: 16px; color: white; transition: 0.3s; }
.floating-label-group input:focus { outline: none; border-bottom-color: var(--gold); }
.floating-label-group label { position: absolute; top: 12px; left: 0; font-size: 14px; color: var(--text-muted); transition: 0.3s; pointer-events: none; }
.floating-label-group input:focus ~ label, .floating-label-group input:not(:placeholder-shown) ~ label { top: -12px; font-size: 12px; color: var(--gold); }

/* Board View (상세보기 네모칸 테마) */
.view-box {
    background: #111; 
    border: 1px solid #222;
    padding: 20px 40px 40px; 
    border-radius: 4px;
    width: 100%;
    margin-bottom: 20px;
}
.view-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 30px; 
    margin-bottom: 15px; 
    color: #fff;
    font-weight: 500;
}
.view-meta {
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #333; 
    padding-bottom: 15px; 
    margin-bottom: 20px; 
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.view-content {
    font-size: 15px;
    color: #eee;
    line-height: 1.8;
    min-height: 250px; 
    white-space: pre-wrap;
}

.btn-square {
	padding: 10px 24px;
	border: 1px solid #333;
	background: transparent;
	color: #888;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
	font-family: 'Pretendard', sans-serif;
}

.btn-square:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.btn-square-danger {
    padding: 10px 24px; border: 1px solid #5a2a2a; background: #3a1a1a; 
    color: #ffb3b3; font-weight: 600; cursor: pointer; transition: 0.3s;
    font-family: 'Pretendard', sans-serif;
}
.btn-square-danger:hover { background: #5a2a2a; color: #fff; }

/* ========================================
   Concert (공연) Page Styles
   ======================================== */
/* ── Reset & Base ── */
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --bg:     #080808;
            --card:   #111111;
            --border: #1e1e1e;
            --accent: #c4a962;
            --text:   #f8f6f2;
            --muted:  #9a9a9a;
            --coral:  #e07a5f;
        }
        body { background: var(--bg); color: var(--text); font-family: "Pretendard", sans-serif; }

        /* ── Header ── */
        .acc-header {
            position: sticky; top: 0; z-index: 100;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 48px; height: 72px;
            background: rgba(8,8,8,0.88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .acc-header .brand {
            font-family: "Cormorant Garamond", serif;
            font-size: 26px; color: var(--text);
            text-decoration: none; letter-spacing: 0.05em;
        }
        .acc-header nav { display:flex; gap:32px; }
        .acc-header nav a {
            font-size:13px; color: var(--muted);
            text-decoration:none; letter-spacing:0.04em; transition: color 0.2s;
        }
        .acc-header nav a:hover { color: var(--text); }
        .acc-header nav a.active {
            color: var(--text);
            border-bottom: 1px solid var(--accent); padding-bottom: 2px;
        }
        .header-right a { font-size:13px; color: var(--muted); text-decoration:none; transition: color 0.2s; }
        .header-right a:hover { color: var(--accent); }

        /* ── Page Hero ── */
        .concert-hero {
            padding: 80px 48px 50px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            gap: 36px;
        }
        .concert-hero__left {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .concert-hero__label {
            display: block; font-size: 11px;
            letter-spacing: 0.4em; color: var(--coral);
            text-transform: uppercase; margin-bottom: 16px;
        }
        .concert-hero__title {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 400; line-height: 0.9;
            letter-spacing: -0.01em;
        }
        .concert-hero__desc {
            font-size: 15px; color: var(--muted);
            max-width: 400px; line-height: 1.7;
        }
        /* 오늘의 공연 미니 카드 */
        .concert-hero__today {
            background: #111;
            border: 1px solid var(--border);
            padding: 28px 36px;
            width: 100%;
        }
        .today-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 20px; padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }
        .today-header h3 { font-size: 15px; font-weight: 600; }
        .today-header span { font-size: 11px; color: var(--muted); }
        /* 3열 그리드 */
        .today-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }
        .today-row {
            display: flex; align-items: center; gap: 14px;
            padding: 16px 20px;
            border-right: 1px solid rgba(255,255,255,0.05);
            text-decoration: none;
            transition: background 0.2s;
        }
        .today-row:last-of-type { border-right: none; }
        .today-row:hover { background: rgba(255,255,255,0.03); }
        .today-time {
            font-size: 18px; font-weight: 700; color: var(--accent);
            width: 58px; flex-shrink: 0; font-variant-numeric: tabular-nums;
        }
        .today-info { flex: 1; min-width: 0; }
        .today-info p { font-size: 14px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .today-info span { font-size: 12px; color: var(--muted); }
        .today-badge {
            font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; flex-shrink: 0;
        }
        .badge-booking { background: rgba(224,122,95,0.18); color: var(--coral); }
        .badge-free    { background: rgba(196,169,98,0.18);  color: var(--accent); }
        .badge-remain  { background: rgba(255,255,255,0.06); color: var(--muted); }

        /* ── Filter Tabs ── */
        .concert-filter {
            display: flex; align-items: center; gap: 8px;
            padding: 28px 48px; flex-wrap: wrap;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .concert-tab {
            padding: 9px 24px; background: transparent;
            border: 1px solid #2a2a2a; color: var(--muted);
            font-size: 13px; font-family: "Pretendard", sans-serif;
            cursor: pointer; border-radius: 999px; transition: all 0.2s;
        }
        .concert-tab:hover { border-color: var(--coral); color: var(--coral); }
        .concert-tab.active { background: var(--coral); border-color: var(--coral); color: #fff; font-weight: 700; }
        .filter-count { margin-left: auto; font-size: 12px; color: #555; }

        /* ── Main Grid ── */
        .concert-main { padding: 48px 48px 100px; }

        /* 피처드 배너 (가로형) */
        .concert-featured {
            display: grid; grid-template-columns: 1fr 1fr;
            background: var(--card); border: 1px solid var(--border);
            overflow: hidden; margin-bottom: 32px;
            transition: border-color 0.3s, transform 0.35s cubic-bezier(.25,.8,.25,1);
            cursor: pointer;
        }
        .concert-featured:hover { border-color: rgba(224,122,95,0.4); transform: translateY(-4px); }
        .concert-featured__img-wrap { position: relative; overflow: hidden; height: 420px; }
        .concert-featured__img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.7s cubic-bezier(.25,.8,.25,1), filter 0.7s;
            filter: grayscale(20%);
        }
        .concert-featured:hover .concert-featured__img { transform: scale(1.06); filter: grayscale(0%); }
        .concert-featured__overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
            pointer-events: none;
        }
        .concert-featured__badges { position: absolute; top: 20px; left: 20px; display: flex; gap: 8px; }
        .concert-badge {
            padding: 5px 14px; font-size: 11px; font-weight: 700;
            letter-spacing: 0.04em; border-radius: 999px;
        }
        .concert-badge--type    { background: var(--coral); color: #fff; }
        .concert-badge--booking { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(4px); }
        .concert-featured__info {
            padding: 48px 44px;
            display: flex; flex-direction: column; justify-content: center; gap: 14px;
        }
        .concert-featured__category { font-size: 11px; letter-spacing: 0.2em; color: var(--coral); text-transform: uppercase; }
        .concert-featured__title {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(26px, 3vw, 38px); font-weight: 400; line-height: 1.2;
            color: var(--text); transition: color 0.2s;
        }
        .concert-featured:hover .concert-featured__title { color: var(--accent); }
        .concert-featured__desc { font-size: 14px; color: #777; line-height: 1.75; }
        .concert-meta-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
        .concert-meta-row { display: flex; gap: 12px; font-size: 13px; }
        .concert-meta-row .label { color: var(--accent); width: 52px; flex-shrink: 0; }
        .concert-meta-row .value { color: var(--muted); }
        .concert-featured__btn {
            display: inline-block; margin-top: 10px;
            padding: 14px 32px; align-self: flex-start;
            background: var(--coral); color: #fff;
            font-size: 13px; font-weight: 700;
            text-decoration: none; border: none;
            font-family: "Pretendard", sans-serif;
            transition: background 0.2s, transform 0.2s; cursor: pointer;
        }
        .concert-featured__btn:hover { background: #c86a4f; transform: translateY(-2px); }

        /* 카드 그리드 */
        .concert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

        .concert-card {
            background: var(--card); border: 1px solid var(--border);
            overflow: hidden; display: flex; flex-direction: column;
            transition: border-color 0.3s, transform 0.35s cubic-bezier(.25,.8,.25,1);
            cursor: pointer;
        }
        .concert-card:hover { border-color: rgba(224,122,95,0.4); transform: translateY(-5px); }

        .concert-card__img-wrap { position: relative; overflow: hidden; height: 220px; }
        .concert-card__img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.65s cubic-bezier(.25,.8,.25,1), filter 0.65s;
            filter: grayscale(20%);
        }
        .concert-card:hover .concert-card__img { transform: scale(1.07); filter: grayscale(0%); }
        .concert-card__overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%);
            pointer-events: none;
        }
        .concert-card__badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }

        .concert-card__info { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
        .concert-card__genre { font-size: 10px; letter-spacing: 0.2em; color: var(--coral); text-transform: uppercase; }
        .concert-card__title {
            font-size: 18px; font-weight: 600; color: var(--text);
            line-height: 1.35; transition: color 0.2s;
        }
        .concert-card:hover .concert-card__title { color: var(--accent); }
        .concert-card__divider { height: 1px; background: var(--border); margin: 4px 0; }
        .concert-card__detail { font-size: 12px; color: #555; line-height: 1.8; margin-top: auto; }
        .concert-card__detail strong { color: var(--muted); font-weight: 400; }
        .concert-card__footer {
            display: flex; align-items: center; justify-content: space-between;
            padding: 14px 24px;
            border-top: 1px solid var(--border);
            background: rgba(255,255,255,0.015);
        }
        .concert-card__price { font-size: 14px; font-weight: 700; color: var(--text); }
        .concert-card__price span { font-size: 11px; color: var(--muted); font-weight: 400; margin-right: 4px; }
        .concert-card__link {
            font-size: 12px; color: var(--muted);
            text-decoration: none; transition: color 0.2s;
        }
        .concert-card__link:hover { color: var(--accent); }

        /* ── 반응형 ── */
        @media (max-width: 1100px) { .concert-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 960px) {
            .acc-header, .concert-hero, .concert-filter, .concert-main { padding-left: 24px; padding-right: 24px; }
            .today-grid { grid-template-columns: 1fr; }
            .today-row { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
            .today-row:last-of-type { border-bottom: none; }
            .concert-featured { grid-template-columns: 1fr; }
            .concert-featured__img-wrap { height: 260px; }
            .concert-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   Exhibition (전시) Page Styles
   ======================================== */
/* ── Reset & Base ── */
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --bg:      #080808;
            --card:    #111111;
            --border:  #1e1e1e;
            --accent:  #c4a962;
            --text:    #f8f6f2;
            --muted:   #9a9a9a;
        }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: "Pretendard", sans-serif;
        }

        /* ── Header ── */
        .acc-header {
            position: sticky; top: 0; z-index: 100;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 48px; height: 72px;
            background: rgba(8,8,8,0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .acc-header .brand {
            font-family: "Cormorant Garamond", serif;
            font-size: 26px; color: var(--text);
            text-decoration: none; letter-spacing: 0.05em;
        }
        .acc-header nav { display:flex; gap:32px; }
        .acc-header nav a {
            font-size:13px; color: var(--muted);
            text-decoration:none; letter-spacing:0.04em;
            transition: color 0.2s;
        }
        .acc-header nav a:hover,
        .acc-header nav a.active { color: var(--text); }
        .acc-header nav a.active { border-bottom: 1px solid var(--accent); padding-bottom:2px; }
        .header-right a {
            font-size:13px; color: var(--muted);
            text-decoration:none; transition: color 0.2s;
        }
        .header-right a:hover { color: var(--accent); }

        /* ── Page Hero ── */
        .exhibit-hero {
            padding: 80px 48px 60px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .exhibit-hero__label {
            display: block;
            font-size: 11px; letter-spacing: 0.4em;
            color: var(--accent); text-transform: uppercase;
            margin-bottom: 16px;
        }
        .exhibit-hero__title {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 400; line-height: 0.9;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
        }
        .exhibit-hero__title em { color: var(--accent); font-style: italic; }
        .exhibit-hero__desc {
            font-size: 15px; color: var(--muted);
            max-width: 480px; line-height: 1.7;
        }

        /* ── Filter Tabs ── */
        .exhibit-filter {
            display: flex; align-items: center; gap: 8px;
            padding: 28px 48px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            flex-wrap: wrap;
        }
        .exhibit-tab {
            padding: 9px 24px;
            background: transparent;
            border: 1px solid #2a2a2a;
            color: var(--muted);
            font-size: 13px;
            font-family: "Pretendard", sans-serif;
            cursor: pointer;
            border-radius: 999px;
            transition: all 0.2s;
        }
        .exhibit-tab:hover { border-color: var(--accent); color: var(--accent); }
        .exhibit-tab.active {
            background: var(--accent); border-color: var(--accent);
            color: #000; font-weight: 700;
        }
        .exhibit-filter__count {
            margin-left: auto;
            font-size: 12px; color: #555;
        }

        /* ── Main Grid ── */
        .exhibit-main {
            padding: 48px 48px 80px;
        }
        .exhibit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .exhibit-sub-grid {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
        }

        /* ── Card ── */
        .exhibit-card {
            position: relative;
            background: var(--card);
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex; flex-direction: column;
            transition: border-color 0.3s, transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
            cursor: pointer;
        }
        .exhibit-card:hover {
            border-color: rgba(196,169,98,0.45);
            transform: translateY(-5px);
        }

        /* 이미지 */
        .exhibit-card__img-wrap { position: relative; overflow: hidden; }
        .exhibit-card--featured .exhibit-card__img-wrap { height: 380px; }
        .exhibit-card--sm       .exhibit-card__img-wrap { height: 190px; }

        .exhibit-card__img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
            transition: transform 0.65s cubic-bezier(0.25,0.8,0.25,1), filter 0.65s;
            filter: grayscale(25%);
        }
        .exhibit-card:hover .exhibit-card__img {
            transform: scale(1.07);
            filter: grayscale(0%);
        }
        .exhibit-card__overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
            pointer-events: none;
        }

        /* 배지 */
        .exhibit-card__badges {
            position: absolute; top: 16px; left: 16px;
            display: flex; gap: 6px; z-index: 2;
        }
        .badge {
            padding: 4px 13px;
            font-size: 11px; font-weight: 700;
            letter-spacing: 0.04em; border-radius: 999px;
        }
        .badge--on       { background: var(--accent); color: #000; }
        .badge--free     { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(4px); }
        .badge--upcoming { background: rgba(224,122,95,0.9); color: #fff; }

        /* 카드 정보 */
        .exhibit-card__info {
            padding: 26px 30px 30px;
            flex: 1; display: flex; flex-direction: column; gap: 10px;
        }
        .exhibit-card--sm .exhibit-card__info {
            padding: 18px 22px 22px; gap: 7px;
        }
        .exhibit-card__category {
            font-size: 11px; letter-spacing: 0.2em;
            color: var(--accent); text-transform: uppercase;
        }
        .exhibit-card__title {
            font-family: "Cormorant Garamond", serif;
            font-size: 24px; font-weight: 500;
            color: var(--text); line-height: 1.3;
            transition: color 0.2s;
        }
        .exhibit-card__title--lg { font-size: clamp(24px, 2.6vw, 32px); }
        .exhibit-card:hover .exhibit-card__title { color: var(--accent); }
        .exhibit-card__desc {
            font-size: 14px; color: #777; line-height: 1.75;
        }
        .exhibit-card__meta {
            font-size: 12px; color: #555;
            margin-top: auto; padding-top: 6px;
            border-top: 1px solid #1e1e1e;
        }
        .exhibit-card__btn {
            display: inline-block; margin-top: 18px;
            padding: 11px 26px;
            background: transparent;
            border: 1px solid #2a2a2a;
            color: var(--muted); font-size: 13px;
            font-family: "Pretendard", sans-serif;
            text-decoration: none; align-self: flex-start;
            transition: all 0.2s;
        }
        .exhibit-card__btn:hover {
            background: var(--accent); border-color: var(--accent);
            color: #000; font-weight: 700;
        }
        .exhibit-card__btn--sm { margin-top: 10px; padding: 8px 18px; font-size: 12px; }

        /* ── 반응형 ── */
        @media (max-width: 960px) {
            .acc-header, .exhibit-hero, .exhibit-filter, .exhibit-main { padding-left: 24px; padding-right: 24px; }
            .exhibit-grid { grid-template-columns: 1fr; }
            .exhibit-sub-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .exhibit-card--featured .exhibit-card__img-wrap { height: 280px; }
        }
        @media (max-width: 600px) {
            .exhibit-sub-grid { grid-template-columns: 1fr; }
            .exhibit-card--sm .exhibit-card__img-wrap { height: 200px; }
        }
        
        /* ════════════════════════════════════════
   concert-detail.css
════════════════════════════════════════ */
:root {
      --night:    #080808;
      --charcoal: #151515;
      --smoke:    #242424;
      --ivory:    #f8f6f2;
      --stone:    #9a9a9a;
      --gold:     #c9a962;
      --coral:    #e07a5f;
      --font-sans:    'Pretendard', sans-serif;
      --font-display: 'Cormorant Garamond', serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: var(--night); color: var(--ivory); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }

    /* ─── Hero ─── */
    .detail-hero {
      position: relative; height: 72vh; min-height: 540px;
      display: flex; align-items: flex-end; overflow: hidden;
    }
    .detail-hero__bg {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center top; transform: scale(1.05);
    }
    .detail-hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top,
        rgba(8,8,8,1) 0%,
        rgba(8,8,8,0.6) 45%,
        rgba(8,8,8,0.15) 100%);
    }
    .detail-hero__content {
      position: relative; z-index: 2; width: 100%;
      max-width: 1200px; margin: 0 auto; padding: 0 48px 56px;
    }
    .detail-hero__breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; color: var(--stone); letter-spacing: 0.1em;
      text-transform: uppercase; margin-bottom: 24px;
    }
    .detail-hero__breadcrumb a { color: var(--stone); text-decoration: none; transition: color .2s; }
    .detail-hero__breadcrumb a:hover { color: var(--gold); }
    .detail-hero__breadcrumb span { opacity: .4; }
    .detail-hero__badges { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
    .detail-badge {
      display: inline-flex; align-items: center;
      padding: 4px 14px; border-radius: 999px;
      font-size: 11px; font-weight: 700; letter-spacing: .06em;
    }
    .detail-badge--genre  { background: rgba(201,169,98,.15); color: var(--gold); border: 1px solid rgba(201,169,98,.35); }
    .detail-badge--booking{ background: var(--coral); color: #fff; }
    .detail-badge--date   { background: rgba(255,255,255,.08); color: var(--ivory); border: 1px solid rgba(255,255,255,.12); }
    .detail-hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 600; line-height: 1.08; margin-bottom: 10px;
    }
    .detail-hero__sub {
      font-family: var(--font-display); font-style: italic;
      font-size: clamp(1rem, 2vw, 1.45rem);
      color: var(--gold); font-weight: 400;
    }

    /* ─── Two-column layout ─── */
    .detail-layout {
      max-width: 1200px; margin: 0 auto;
      padding: 64px 48px; display: grid;
      grid-template-columns: 1fr 356px; gap: 64px; align-items: start;
    }

    /* ─── Section blocks ─── */
    .d-section { margin-bottom: 52px; }
    .d-section:last-child { margin-bottom: 0; }
    .d-section__eyebrow {
      font-size: 10px; letter-spacing: .35em; color: var(--gold);
      text-transform: uppercase; margin-bottom: 16px;
    }
    .d-section__title {
      font-family: var(--font-display); font-size: 1.85rem;
      font-weight: 600; margin-bottom: 20px;
    }
    .d-section__body {
      font-size: 15px; line-height: 1.95;
      color: rgba(248,246,242,.72);
    }
    .d-section__body p + p { margin-top: 16px; }
    .d-divider { height: 1px; background: rgba(255,255,255,.06); margin: 52px 0; }

    /* ─── Program list ─── */
    .prog-list { list-style: none; }
    .prog-item {
      display: grid; grid-template-columns: 52px 1fr auto;
      align-items: center; gap: 20px;
      padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .prog-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
    .prog-item__num {
      font-family: var(--font-display); font-size: 1.7rem;
      color: rgba(201,169,98,.3); font-weight: 600; line-height: 1;
    }
    .prog-item__piece { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .prog-item__composer { font-size: 12px; color: var(--stone); }
    .prog-item__duration { font-size: 12px; color: var(--stone); white-space: nowrap; }
    .prog-item--interval .prog-item__piece { color: var(--stone); font-weight: 400; }

    /* ─── Guide grid ─── */
    .guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .guide-item {
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px; padding: 20px 22px;
    }
    .guide-item__icon {
      width: 34px; height: 34px; border-radius: 10px;
      background: rgba(201,169,98,.1); display: flex; align-items: center;
      justify-content: center; font-size: 17px; margin-bottom: 12px;
    }
    .guide-item__key {
      font-size: 10px; color: var(--stone); letter-spacing: .1em;
      text-transform: uppercase; margin-bottom: 6px;
    }
    .guide-item__val { font-size: 14px; font-weight: 600; color: var(--ivory); }

    /* ─── Venue card ─── */
    .venue-card {
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.06);
      border-radius: 16px; overflow: hidden;
    }
    .venue-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
    .venue-card__body { padding: 26px 28px; }
    .venue-card__name {
      font-family: var(--font-display); font-size: 1.4rem;
      font-weight: 600; margin-bottom: 8px;
    }
    .venue-card__desc { font-size: 14px; color: var(--stone); line-height: 1.75; }

    /* ─── Booking panel ─── */
    .booking-panel {
      position: sticky; top: 100px;
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px; overflow: hidden;
    }
    .booking-panel__thumb { width: 100%; height: 196px; object-fit: cover; display: block; }
    .booking-panel__body { padding: 26px 26px 28px; }
    .booking-panel__live {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; color: var(--coral);
      letter-spacing: .08em; margin-bottom: 14px;
    }
    .booking-panel__live::before {
      content: ''; width: 7px; height: 7px; border-radius: 50%;
      background: var(--coral); animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .booking-panel__name {
      font-family: var(--font-display); font-size: 1.35rem;
      font-weight: 600; line-height: 1.3; margin-bottom: 4px;
    }
    .booking-panel__sub-en {
      font-family: var(--font-display); font-style: italic;
      font-size: 1rem; color: var(--gold); margin-bottom: 22px;
    }
    .bp-divider { height: 1px; background: rgba(255,255,255,.06); margin: 18px 0; }
    .bp-meta { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
    .bp-meta__row { display: flex; align-items: flex-start; gap: 11px; }
    .bp-meta__icon { font-size: 15px; margin-top: 1px; flex-shrink: 0; color: var(--gold); }
    .bp-meta__label {
      font-size: 10px; color: var(--stone); letter-spacing: .08em;
      text-transform: uppercase; margin-bottom: 3px;
    }
    .bp-meta__val { font-size: 14px; font-weight: 600; }
    .bp-meta__val small { font-size: 12px; color: var(--stone); font-weight: 400; margin-left: 4px; }
    .bp-price-head {
      font-size: 10px; letter-spacing: .14em; color: var(--stone);
      text-transform: uppercase; margin-bottom: 12px;
    }
    .bp-price-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
    .bp-price-table tr { border-bottom: 1px solid rgba(255,255,255,.05); }
    .bp-price-table tr:last-child { border-bottom: none; }
    .bp-price-table td { padding: 9px 0; font-size: 13px; }
    .bp-price-table td:first-child { color: var(--stone); }
    .bp-price-table td:last-child { text-align: right; font-weight: 700; }
    .bp-price-table .r-seat td:last-child { color: var(--gold); }
    .btn-book {
      display: block; width: 100%; padding: 15px; border: none;
      background: var(--gold); color: var(--night); border-radius: 12px;
      font-size: 14px; font-weight: 700; letter-spacing: .06em;
      cursor: pointer; text-align: center; text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .btn-book:hover { background: #d4b56b; transform: translateY(-1px); }
    .btn-outline {
      display: block; width: 100%; padding: 13px; border: 1px solid rgba(255,255,255,.14);
      background: transparent; color: var(--ivory); border-radius: 12px;
      font-size: 13px; font-weight: 600; cursor: pointer;
      text-align: center; text-decoration: none; margin-top: 10px;
      transition: border-color .2s, color .2s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .bp-contact {
      margin-top: 20px; padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.06);
      font-size: 12px; color: var(--stone); text-align: center; line-height: 1.85;
    }
    .bp-contact a { color: var(--gold); text-decoration: none; }

    /* ─── Related section ─── */
    .related-wrap {
      max-width: 1200px; margin: 0 auto; padding: 0 48px 80px;
      border-top: 1px solid rgba(255,255,255,.06); padding-top: 60px;
    }
    .related-header {
      display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px;
    }
    .related-eyebrow {
      font-size: 10px; letter-spacing: .35em; color: var(--gold);
      text-transform: uppercase; margin-bottom: 8px;
    }
    .related-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
    .related-all { font-size: 12px; color: var(--stone); text-decoration: none; transition: color .2s; }
    .related-all:hover { color: var(--gold); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* ─── Responsive ─── */
    @media (max-width: 960px) {
      .detail-layout { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
      .booking-panel { position: static; }
      .detail-hero__content { padding: 0 24px 40px; }
      .related-wrap { padding: 40px 24px 60px; }
      .related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .guide-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .related-grid { grid-template-columns: 1fr; }
      .prog-item { grid-template-columns: 40px 1fr auto; gap: 12px; }
    }


/* ════════════════════════════════════════
   exhibition-detail.css
════════════════════════════════════════ */
:root {
      --night:    #080808;
      --charcoal: #151515;
      --smoke:    #242424;
      --ivory:    #f8f6f2;
      --stone:    #9a9a9a;
      --gold:     #c9a962;
      --coral:    #e07a5f;
      --teal:     #4a9b8e;
      --font-sans:    'Pretendard', sans-serif;
      --font-display: 'Cormorant Garamond', serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: var(--night); color: var(--ivory); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }

    /* ─── Hero ─── */
    .exd-hero {
      position: relative; height: 75vh; min-height: 560px;
      display: flex; align-items: flex-end; overflow: hidden;
    }
    .exd-hero__bg {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center; transform: scale(1.05);
      transition: transform 8s ease;
    }
    .exd-hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top,
        rgba(8,8,8,1)   0%,
        rgba(8,8,8,.65) 40%,
        rgba(8,8,8,.2)  100%);
    }
    .exd-hero__content {
      position: relative; z-index: 2; width: 100%;
      max-width: 1200px; margin: 0 auto; padding: 0 48px 60px;
    }
    .exd-hero__breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; color: var(--stone); letter-spacing: .1em;
      text-transform: uppercase; margin-bottom: 24px;
    }
    .exd-hero__breadcrumb a { color: var(--stone); text-decoration: none; transition: color .2s; }
    .exd-hero__breadcrumb a:hover { color: var(--gold); }
    .exd-hero__breadcrumb span { opacity: .4; }
    .exd-hero__badges { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
    .exd-badge {
      display: inline-flex; align-items: center;
      padding: 4px 14px; border-radius: 999px;
      font-size: 11px; font-weight: 700; letter-spacing: .06em;
    }
    .exd-badge--category { background: rgba(201,169,98,.15); color: var(--gold); border: 1px solid rgba(201,169,98,.35); }
    .exd-badge--on       { background: var(--teal); color: #fff; }
    .exd-badge--free     { background: rgba(74,155,142,.18); color: var(--teal); border: 1px solid rgba(74,155,142,.35); }
    .exd-badge--period   { background: rgba(255,255,255,.08); color: var(--ivory); border: 1px solid rgba(255,255,255,.12); }
    .exd-hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 600; line-height: 1.1; margin-bottom: 10px;
    }
    .exd-hero__sub {
      font-family: var(--font-display); font-style: italic;
      font-size: clamp(1rem, 2vw, 1.4rem);
      color: rgba(201,169,98,.8); font-weight: 400;
    }

    /* ─── Layout ─── */
    .exd-layout {
      max-width: 1200px; margin: 0 auto;
      padding: 64px 48px; display: grid;
      grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
    }

    /* ─── Section ─── */
    .exd-section { margin-bottom: 52px; }
    .exd-section:last-child { margin-bottom: 0; }
    .exd-section__eyebrow {
      font-size: 10px; letter-spacing: .35em; color: var(--gold);
      text-transform: uppercase; margin-bottom: 16px;
    }
    .exd-section__title {
      font-family: var(--font-display); font-size: 1.85rem;
      font-weight: 600; margin-bottom: 20px;
    }
    .exd-section__body {
      font-size: 15px; line-height: 1.95;
      color: rgba(248,246,242,.72);
    }
    .exd-section__body p + p { margin-top: 16px; }
    .exd-divider { height: 1px; background: rgba(255,255,255,.06); margin: 52px 0; }

    /* ─── Gallery strip ─── */
    .exd-gallery {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 200px 200px;
      gap: 8px; border-radius: 16px; overflow: hidden;
    }
    .exd-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
    .exd-gallery img:hover { transform: scale(1.04); }
    .exd-gallery__main { grid-row: 1 / 3; }

    /* ─── Exhibition sections list ─── */
    .exd-zones { display: flex; flex-direction: column; gap: 0; }
    .exd-zone {
      display: grid; grid-template-columns: 56px 1fr;
      gap: 20px; padding: 22px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .exd-zone:first-child { border-top: 1px solid rgba(255,255,255,.06); }
    .exd-zone__num {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(201,169,98,.1); border: 1px solid rgba(201,169,98,.2);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.2rem;
      color: var(--gold); font-weight: 600; flex-shrink: 0;
    }
    .exd-zone__name { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
    .exd-zone__desc { font-size: 13px; color: var(--stone); line-height: 1.65; }

    /* ─── Docent schedule ─── */
    .docent-list { display: flex; flex-direction: column; gap: 12px; }
    .docent-item {
      display: flex; align-items: center; gap: 16px;
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px; padding: 16px 20px;
    }
    .docent-item__day {
      font-family: var(--font-display); font-size: 1.3rem;
      color: var(--gold); font-weight: 600; min-width: 36px; text-align: center;
    }
    .docent-item__info { flex: 1; }
    .docent-item__title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
    .docent-item__meta { font-size: 12px; color: var(--stone); }
    .docent-item__badge {
      padding: 3px 10px; border-radius: 999px;
      font-size: 11px; font-weight: 700;
      background: rgba(201,169,98,.12); color: var(--gold);
      border: 1px solid rgba(201,169,98,.25); white-space: nowrap;
    }

    /* ─── Info panel (right) ─── */
    .info-panel {
      position: sticky; top: 100px;
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px; overflow: hidden;
    }
    .info-panel__thumb { width: 100%; height: 200px; object-fit: cover; display: block; }
    .info-panel__body { padding: 26px; }
    .info-panel__on {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; color: var(--teal);
      letter-spacing: .08em; margin-bottom: 14px;
    }
    .info-panel__on::before {
      content: ''; width: 7px; height: 7px; border-radius: 50%;
      background: var(--teal); animation: blink 1.6s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .info-panel__title {
      font-family: var(--font-display); font-size: 1.3rem;
      font-weight: 600; line-height: 1.35; margin-bottom: 4px;
    }
    .info-panel__sub {
      font-family: var(--font-display); font-style: italic;
      font-size: .95rem; color: rgba(201,169,98,.8); margin-bottom: 22px;
    }
    .ip-divider { height: 1px; background: rgba(255,255,255,.06); margin: 18px 0; }
    .ip-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
    .ip-meta__row { display: flex; align-items: flex-start; gap: 11px; }
    .ip-meta__icon { font-size: 15px; margin-top: 1px; flex-shrink: 0; color: var(--gold); }
    .ip-meta__label { font-size: 10px; color: var(--stone); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
    .ip-meta__val { font-size: 14px; font-weight: 600; }
    .ip-meta__val small { font-size: 12px; color: var(--stone); font-weight: 400; }
    .ip-free-box {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(74,155,142,.1); border: 1px solid rgba(74,155,142,.25);
      border-radius: 12px; padding: 14px 18px; margin-bottom: 20px;
    }
    .ip-free-box__label { font-size: 12px; color: var(--stone); }
    .ip-free-box__val { font-size: 18px; font-family: var(--font-display); font-weight: 600; color: var(--teal); }
    .btn-visit {
      display: block; width: 100%; padding: 15px; border: none;
      background: var(--gold); color: var(--night); border-radius: 12px;
      font-size: 14px; font-weight: 700; letter-spacing: .06em;
      cursor: pointer; text-align: center; text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .btn-visit:hover { background: #d4b56b; transform: translateY(-1px); }
    .btn-outline-ex {
      display: block; width: 100%; padding: 13px;
      border: 1px solid rgba(255,255,255,.14);
      background: transparent; color: var(--ivory); border-radius: 12px;
      font-size: 13px; font-weight: 600; cursor: pointer;
      text-align: center; text-decoration: none; margin-top: 10px;
      transition: border-color .2s, color .2s;
    }
    .btn-outline-ex:hover { border-color: var(--gold); color: var(--gold); }
    .ip-contact {
      margin-top: 20px; padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.06);
      font-size: 12px; color: var(--stone); text-align: center; line-height: 1.85;
    }
    .ip-contact a { color: var(--gold); text-decoration: none; }

    /* ─── Artist section ─── */
    .artist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .artist-card {
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px; overflow: hidden;
      display: flex; align-items: center; gap: 16px; padding: 16px 18px;
    }
    .artist-card__img {
      width: 52px; height: 52px; border-radius: 50%;
      object-fit: cover; flex-shrink: 0;
      border: 2px solid rgba(201,169,98,.3);
    }
    .artist-card__name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
    .artist-card__role { font-size: 12px; color: var(--stone); }

    /* ─── Guide grid ─── */
    .guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .guide-item {
      background: var(--charcoal); border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px; padding: 20px 22px;
    }
    .guide-item__icon {
      width: 34px; height: 34px; border-radius: 10px;
      background: rgba(201,169,98,.1); display: flex;
      align-items: center; justify-content: center;
      font-size: 17px; margin-bottom: 12px;
    }
    .guide-item__key { font-size: 10px; color: var(--stone); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
    .guide-item__val { font-size: 14px; font-weight: 600; color: var(--ivory); }

    /* ─── Related section ─── */
    .related-wrap {
      max-width: 1200px; margin: 0 auto; padding: 60px 48px 80px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .related-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
    .related-eyebrow { font-size: 10px; letter-spacing: .35em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
    .related-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
    .related-all { font-size: 12px; color: var(--stone); text-decoration: none; transition: color .2s; }
    .related-all:hover { color: var(--gold); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* ─── Responsive ─── */
    @media (max-width: 960px) {
      .exd-layout { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
      .info-panel { position: static; }
      .exd-hero__content { padding: 0 24px 44px; }
      .related-wrap { padding: 40px 24px 60px; }
      .related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .guide-grid, .artist-grid { grid-template-columns: 1fr; }
      .exd-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
      .exd-gallery__main { grid-row: auto; grid-column: 1 / 3; }
    }
    @media (max-width: 600px) {
      .related-grid { grid-template-columns: 1fr; }
      .exd-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
      .exd-gallery__main { grid-column: auto; }
    }