*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0f0f13;
  --bg-nav: rgba(15,15,19,0.92);
  --bg-card: #18181f;
  --accent: #e8578f;
  --accent-soft: rgba(232,87,143,0.12);
  --accent2: #f78bb5;
  --gold: #e8578f;
  --text: #f0f0f2;
  --text-sub: #a0a0b0;
  --text-dim: #606070;
  --border: rgba(255,255,255,0.07);
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
a { color: inherit; text-decoration: none; }

/* HEADER */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9000;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px,4vw,48px);
  background: rgba(15,15,19,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}
.logo { color: #fff; }
nav a { color: rgba(255,255,255,0.75); }
nav a:hover, nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
.hamburger span { background: #fff; }

.logo { font-family: 'Outfit', sans-serif; font-weight: 800; display: flex; align-items: center; gap: 8px; cursor: pointer; line-height: 1; }
.logo .icon { font-size: 2.5rem; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.logo-en { font-size: 0.58rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.logo-kr { display: flex; align-items: baseline; gap: 1px; line-height: 1; }
.logo-main { font-size: 1.4rem; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-sub { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.3px; color: inherit; -webkit-text-fill-color: currentColor; opacity: 0.85; }

nav { display: flex; align-items: center; gap: 4px; }
nav a { padding: 6px 14px; font-size: 0.82rem; font-weight: 500; color: var(--text-sub); border-radius: 8px; transition: all 0.25s; white-space: nowrap; cursor: pointer; position: relative; }
nav a:hover, nav a.active { color: var(--text); background: var(--accent-soft); }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 3px; }
.nav-item > a .arr { font-size: 0.6rem; transition: transform 0.2s; }
.nav-item:hover > a .arr { transform: rotate(180deg); }
.nav-sub { display: none; position: absolute; top: 100%; left: 0; padding-top: 8px; min-width: 130px; z-index: 9100; }
.nav-sub-inner { background: rgba(15,15,19,0.98); border: 1px solid var(--border); border-radius: 10px; padding: 6px; backdrop-filter: blur(24px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 2px; }
.nav-item:hover .nav-sub { display: block; }
.nav-sub a { display: block; padding: 10px 14px !important; font-size: 0.82rem !important; border-radius: 6px; }
.nav-sub-category { font-size: 0.75rem !important; font-weight: 700 !important; color: var(--accent) !important; }
.nav-sub-divider { height: 1px; background: var(--border); margin: 4px 2px; }
.nav-sub-venue { font-size: 0.68rem; color: var(--text-dim); background: rgba(255,255,255,0.06); border-radius: 4px; padding: 1px 5px; margin-left: 4px; }
.nav-new { font-size: 0.6rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 4px; padding: 1px 5px; margin-left: 4px; vertical-align: middle; }
.nav-cta { margin-left: 8px; padding: 8px 18px !important; background: linear-gradient(135deg, var(--accent), var(--accent2)) !important; color: #fff !important; font-weight: 600 !important; border-radius: 10px !important; box-shadow: 0 4px 16px rgba(232,87,143,0.3); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,87,143,0.4) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; position: relative; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); position: absolute; left: 6px; transition: all 0.3s; }
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 22px; }

/* DETAIL HERO */
.detail-hero {
  min-height: 65vh; position: relative; display: flex; align-items: flex-end;
  padding: 0 clamp(16px,4vw,48px) 60px; overflow: hidden; margin-top: 64px;
}
.detail-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.detail-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,8,12,0.92) 0%, rgba(8,8,12,0.45) 45%, rgba(8,8,12,0.15) 100%);
}
.detail-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-sub); font-size: 0.82rem; font-family: inherit;
  padding: 7px 14px; border-radius: 20px; cursor: pointer; margin-bottom: 24px;
  transition: all 0.2s; text-decoration: none;
}
.detail-back:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.detail-hero-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.detail-badge { padding: 4px 12px; border-radius: 6px; font-size: 0.68rem; font-weight: 700; background: rgba(232,87,143,0.15); color: var(--accent); border: 1px solid rgba(232,87,143,0.3); text-transform: uppercase; letter-spacing: 0.05em; }
.detail-status-badge { padding: 4px 10px; border-radius: 6px; font-size: 0.68rem; font-weight: 600; }
.detail-status-badge.open { background: rgba(16,185,129,0.2); color: #10b981; }
.detail-status-badge.new { background: rgba(232,87,143,0.2); color: var(--accent); }
.detail-biztype { padding: 3px 10px; border-radius: 5px; font-size: 0.68rem; font-weight: 600; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.detail-name { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
.detail-sub-desc { font-size: 1rem; color: var(--text-sub); margin-bottom: 10px; }
.detail-addr-hero { color: var(--text-sub); font-size: 0.88rem; }

/* DETAIL BODY */
.detail-body {
  max-width: 1100px; margin: 0 auto;
  padding: 48px clamp(16px,4vw,48px) 80px;
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
}
.detail-section { margin-bottom: 44px; }
.detail-section-title {
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--accent); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.detail-intro p { color: var(--text-sub); line-height: 1.9; font-size: 0.95rem; margin-bottom: 14px; }
.detail-intro p:last-child { margin-bottom: 0; }

.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-feature-item { display: flex; align-items: flex-start; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.detail-feature-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.detail-feature-item h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.detail-feature-item p { font-size: 0.76rem; color: var(--text-sub); line-height: 1.5; margin: 0; }

.detail-menu-note { font-size: 0.76rem; color: var(--text-dim); margin-bottom: 14px; }
.menu-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.menu-table thead tr { border-bottom: 1px solid var(--accent); }
.menu-table th { padding: 10px 14px; text-align: left; font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.menu-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text-sub); vertical-align: middle; }
.menu-table tr:last-child td { border-bottom: none; }
.menu-table tr:hover td { background: rgba(232,87,143,0.04); }
.menu-price { font-weight: 700; color: var(--accent) !important; white-space: nowrap; }
.menu-note { font-size: 0.76rem; color: var(--text-dim) !important; }

.detail-notice { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-notice li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-sub); line-height: 1.6; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.detail-notice li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.detail-info-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.detail-info-row { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-sub); padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.detail-info-row strong { color: var(--text); margin-right: 4px; }

.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ct { padding: 6px 14px; background: rgba(232,87,143,0.1); color: var(--accent); border-radius: 5px; font-size: 0.78rem; font-weight: 500; }

/* CTA BOX */
.detail-cta-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; position: sticky; top: 84px; display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.detail-cta-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; text-align: center; }
.detail-num { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); text-align: center; letter-spacing: 0.02em; }
.detail-btn { display: block; text-align: center; padding: 13px; border-radius: 10px; font-size: 0.92rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; border: none; text-decoration: none; }
.detail-btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }
.detail-btn.primary:hover { opacity: 0.88; transform: translateY(-1px); }
.detail-btn.secondary { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(232,87,143,0.25); }
.detail-btn.secondary:hover { background: var(--accent); color: #fff; }
.detail-cta-note { text-align: center; font-size: 0.72rem; color: var(--text-dim); }

/* FOOTER */
footer { padding: 40px clamp(16px,4vw,48px); border-top: 1px solid var(--border); text-align: center; }
.fl { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.hl { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fdesc { color: var(--text-dim); font-size: 0.74rem; line-height: 1.6; max-width: 600px; margin: 0 auto 16px; }
.flinks { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.flinks a { padding: 6px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; font-size: 0.74rem; color: var(--text-sub); transition: all 0.2s; }
.flinks a:hover { color: var(--text); border-color: var(--accent); }
.fcopy { color: var(--text-dim); font-size: 0.7rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.detail-hero-inner { animation: fadeUp 0.6s ease both; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  nav.mo { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; width: 100%; background: rgba(15,15,19,0.98); backdrop-filter: blur(24px); padding: 16px; border-bottom: 1px solid var(--border); z-index: 8999; gap: 4px; max-height: calc(100vh - 64px); max-height: calc(100dvh - 64px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  nav.mo a { padding: 12px 16px; font-size: 0.9rem; }
  nav.mo .nav-sub { display: flex; position: static; flex-direction: column; background: none; border: none; box-shadow: none; padding: 4px 0 4px 16px; }
  nav.mo .nav-item:hover .nav-sub { display: flex; }
}
@media (max-width: 700px) {
  .detail-hero { min-height: 48vh; padding: 0 16px 36px; }
  .detail-name { font-size: 1.8rem; }
  .detail-body { grid-template-columns: 1fr; gap: 28px; }
  .detail-cta-box { position: static; }
  .detail-features { grid-template-columns: 1fr; }
  .menu-table th:last-child, .menu-table td:last-child { display: none; }
}

/* CATEGORY PAGE */
.cat-page-hero {
  min-height: 52vh; position: relative; display: flex; align-items: flex-end;
  padding: 0 clamp(16px,4vw,48px) 52px; overflow: hidden; margin-top: 64px;
}
.cat-page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cat-page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,8,12,0.92) 0%, rgba(8,8,12,0.45) 50%, rgba(8,8,12,0.15) 100%);
}
.cat-page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.cat-page-back { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 20px; transition: color 0.2s; }
.cat-page-back:hover { color: #fff; }
.cat-page-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; border: 1px solid var(--accent); color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.cat-page-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,5vw,3rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 12px; }
.cat-page-title .hl { background: linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cat-page-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 600px; }

.cat-page-body { max-width: 1100px; margin: 0 auto; padding: 56px clamp(16px,4vw,48px); }
.cat-page-section-title { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cat-page-section-title .hl { background: linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cat-page-section-title span.sub { font-size: 0.8rem; font-weight: 400; color: var(--text-sub); margin-left: 10px; }

.cvc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-bottom: 56px; }
.cvc-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; padding: 11px 11px 6px; text-decoration: none; color: inherit;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.cvc-card:hover { border-color: rgba(232,87,143,0.35); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.5); }
.cvc-img { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; border-radius: 13px; overflow: hidden; }
.cvc-img-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; }
.cvc-cat-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; color: #fff; }
.cvc-status { padding: 3px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 600; background: rgba(16,185,129,0.85); color: #fff; }
.cvc-status.new { background: rgba(232,87,143,0.9); }
.cvc-body { padding: 18px 12px 8px; text-align: center; }
.cvc-name { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.cvc-desc { font-size: 0.82rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; }
.cvc-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.cvc-tags span { font-size: 0.68rem; padding: 3px 10px; border-radius: 20px; background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(232,87,143,0.2); }
.cvc-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
.cvc-addr { font-size: 0.75rem; color: var(--text-dim); }
.cvc-btn { font-size: 0.78rem; font-weight: 600; color: var(--accent); }

.cat-page-cta { background: linear-gradient(135deg, rgba(232,87,143,0.12), rgba(232,87,143,0.05)); border: 1px solid rgba(232,87,143,0.25); border-radius: var(--radius); padding: 40px; text-align: center; margin-bottom: 56px; }
.cat-page-cta h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.cat-page-cta p { color: var(--text-sub); font-size: 0.85rem; margin-bottom: 20px; }
.cat-page-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cat-page-cta-btn { padding: 12px 28px; border-radius: 10px; font-size: 0.88rem; font-weight: 700; font-family: inherit; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; display: inline-block; }
.cat-page-cta-btn.primary { background: linear-gradient(135deg,var(--accent),var(--accent2)); color: #fff; }
.cat-page-cta-btn.secondary { background: var(--bg-card); border: 1px solid var(--border); color: var(--text); }
.cat-page-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.cat-page-other { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cat-other-card { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-decoration: none; color: inherit; transition: border-color 0.2s; }
.cat-other-card:hover { border-color: var(--accent); }
.cat-other-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--accent); }
.cat-other-card p { font-size: 0.78rem; color: var(--text-sub); line-height: 1.5; }

@media (max-width: 700px) {
  .cvc-grid { grid-template-columns: 1fr; }
  .cat-page-other { grid-template-columns: 1fr; }
}

/* RELATED VENUES */
.related-venues {
  background: #13131a;
  border-top: 1px solid var(--border);
  padding: 56px clamp(16px,5vw,80px);
}
.related-inner { max-width: 1100px; margin: 0 auto; }
.related-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.related-title span { color: var(--accent); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden; padding: 10px 10px 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.related-card:hover { border-color: rgba(232,87,143,0.35); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.5); }
.related-img {
  width: 100%; height: 140px;
  background-size: cover; background-position: center;
  border-radius: 11px;
}
.related-info { padding: 14px 12px 8px; text-align: center; }
.related-cat {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--accent); text-transform: uppercase;
  background: var(--accent-soft); padding: 2px 8px; border-radius: 20px;
}
.related-info strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--text); margin: 8px 0 4px;
}
.related-info p { font-size: 0.78rem; color: var(--text-sub); line-height: 1.4; }
@media (max-width: 700px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-venues { padding: 36px 16px; }
}

/* ===== FAQ ===== */
.detail-faq .detail-section-title { margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(232,87,143,0.3); }
.faq-q {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.5;
}
.faq-a {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin: 0;
}

/* ===== Steps ===== */
.detail-steps {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: step;
}
.detail-steps li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
}
.detail-steps li::before {
  content: counter(step);
  min-width: 28px;
  height: 28px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-steps li strong { color: var(--text); }

/* ===== GUIDE ARTICLE ===== */
.guide-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0 64px;
}
.guide-section {
  margin-bottom: 52px;
}
.guide-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.guide-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--accent);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.guide-section p {
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.guide-section p strong { color: var(--text); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}
.gallery-item.gallery-main {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 20px 10px 8px;
  text-align: center;
}
@media(max-width:600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .gallery-item.gallery-main {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .gallery-item {
    aspect-ratio: 1/1;
  }
}
