/* ===================================================================
   일산요정 명월관 (ILSAN MYEONGWOLGWAN) - 하이엔드 에디토리얼 스타일시트
   Ref: DJ Siberian Soul & Pelengator Aesthetic Fusion
   =================================================================== */

:root {
  /* Core Color System */
  --color-red: #86191C;
  --color-red-bright: #86191C;
  --color-red-dark: #5c1012;
  --color-black: #0d0e12;
  --color-dark-surface: #15171e;
  --color-dark-card: #1c1f28;
  --color-gray-dark: #2b2d42;
  --color-gray-muted: #8d99ae;
  --color-gray-light: #edf2f4;
  --color-white: #ffffff;
  --color-offwhite: #f8f9fa;
  --color-gold: #c5a059;

  /* Typography Fonts */
  --font-serif: 'Noto Serif KR', 'Cinzel', serif;
  --font-display: 'Cinzel', 'Montserrat', serif;
  --font-sans: 'Pretendard', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Montserrat', monospace;

  /* Layout Measurements */
  --sidebar-width: 84px;
  --header-height: 60px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------
   CSS Reset & Base Rules
----------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
}

body.editorial-body {
  font-family: var(--font-sans);
  background-image: url('../assets/images/b02.webp');
  background-repeat: repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: auto;
  color: var(--color-gray-light);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ----------------------------------
   1. LEFT RED SIDEBAR (Ref 2 Pelengator Style)
----------------------------------- */
.side-brand-bar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--color-red);
  color: var(--color-white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}

.side-brand-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.brand-badge-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  transition: var(--transition-smooth);
}

.brand-badge-logo:hover {
  transform: scale(1.06);
}

.badge-sub {
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.badge-logo-img {
  width: 58px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.side-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.side-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  width: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.side-nav-item .nav-kr {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.side-nav-item .nav-en {
  font-size: 0.55rem;
  font-family: var(--font-mono);
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.side-nav-item:hover, .side-nav-item.active {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.side-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
}

.side-brand-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.vertical-brand-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
}

.side-call-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.side-call-btn:hover {
  transform: scale(1.1);
  background: var(--color-black);
  color: #fff;
}

/* ----------------------------------
   Mobile Header & Nav Overlay
----------------------------------- */
.mobile-top-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(13, 14, 18, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1100;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-red {
  color: var(--color-red-bright);
}

.logo-white {
  color: #fff;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-call-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-menu-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.toggle-bar {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 18, 0.98);
  backdrop-filter: blur(16px);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  width: 88%;
  max-width: 400px;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.overlay-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-red-bright);
}

.mobile-close-btn {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.m-nav-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 1.1rem;
  color: var(--color-gray-light);
  font-family: var(--font-display);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.m-nav-link span {
  font-size: 0.75rem;
  color: var(--color-red-bright);
  font-weight: 800;
}

.m-nav-link em {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #fff;
}

.m-btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--color-red);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.m-addr {
  font-size: 0.75rem;
  color: var(--color-gray-muted);
  text-align: center;
}

/* ----------------------------------
   MAIN EDITORIAL CONTAINER
----------------------------------- */
.main-editorial-wrapper {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Quick Top Util Strip */
.top-util-strip {
  background: #111318;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-gray-muted);
}

.util-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.util-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.util-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gray-light);
}

.util-link.util-red {
  color: var(--color-red-bright);
  font-weight: 700;
}

/* ----------------------------------
   HERO SECTION (Ref 1 & 2 Aesthetic)
----------------------------------- */
.hero-section {
  min-height: calc(100vh - 40px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 48px;
  background: transparent;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/back001.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero Left Visual Pane */
.hero-visual-pane {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  filter: contrast(110%);
  transition: var(--transition-smooth);
  -webkit-mask-image: url('../assets/images/mask-alpha.png');
  mask-image: url('../assets/images/mask-alpha.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.hero-image-wrapper:hover {
  filter: contrast(115%);
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-img-overlay {
  display: none;
}

.hero-floating-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--color-red);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-red-bright);
}

.badge-desc {
  font-size: 0.72rem;
  color: #fff;
  font-weight: 600;
}

.hero-vertical-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-vertical-meta .v-line {
  width: 40px;
  height: 2px;
  background: var(--color-red);
}

.hero-vertical-meta .v-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Right Content Pane */
.hero-content-pane {
  display: flex;
  flex-direction: column;
}

.hero-subhead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-tag-red {
  color: var(--color-red-bright);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-serial {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gray-muted);
}

.hero-main-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 4px;
  margin-bottom: 20px;
}

.title-en-main {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
  text-align: right;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.title-kr-sub {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--color-red-bright);
  margin-top: 8px;
  letter-spacing: -0.02em;
  text-align: right;
}

.hero-divider-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.hero-divider-bar .red-line {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--color-red);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  margin-bottom: 32px;
  word-break: keep-all;
}

.hero-description strong {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--color-red);
  text-underline-offset: 4px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-editorial-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(134, 25, 28, 0.4);
  transition: var(--transition-smooth);
}

.btn-editorial-red:hover {
  background: var(--color-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(134, 25, 28, 0.6);
}

.btn-editorial-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-editorial-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 28px;
}

.spec-col {
  display: flex;
  flex-direction: column;
}

.spec-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--color-gray-muted);
  margin-top: 2px;
}

.hero-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gray-muted);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.scroll-circle {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red-bright);
  animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ----------------------------------
   EDITORIAL SECTIONS (Common Rules)
----------------------------------- */
.editorial-section {
  padding: 100px 48px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* ----------------------------------
   CHOICE TIP & JOO MANAGER SECTION (명월관 이용 꿀팁)
----------------------------------- */
.choice-tip-section {
  padding: 40px 48px 70px 48px;
}

.choice-tip-grid-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 40%, rgba(0, 0, 0, 0.08) 100%);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  padding: 38px 46px;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 
    inset 0 1.5px 2px rgba(255, 255, 255, 0.55),
    inset 0 -1.5px 2px rgba(0, 0, 0, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.choice-tip-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.85) 65%, transparent 95%);
  pointer-events: none;
}

.choice-tip-grid-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.01) 40%, rgba(0, 0, 0, 0.06) 100%);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 
    inset 0 1.5px 3px rgba(255, 255, 255, 0.7),
    inset 0 -1.5px 2px rgba(0, 0, 0, 0.15),
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(134, 25, 28, 0.25);
  transform: translateY(-4px);
}

.tip-banner-pane {
  display: flex;
  justify-content: center;
}

.tip-banner-link {
  display: block;
  width: 100%;
}

.tip-banner-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 16px 36px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.tip-banner-wrapper:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    inset 0 1.5px 3px rgba(255, 255, 255, 0.55),
    0 22px 48px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(134, 25, 28, 0.4);
}

.tip-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.tip-banner-overlay-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.tip-content-pane {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----------------------------------
   PRISM / HOLOGRAM GLASSMORPHISM AI CAPSULE
----------------------------------- */
.prism-ai-capsule {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 2px;
  overflow: hidden;
  width: fit-content;
  box-shadow: 
    0 12px 28px -4px rgba(0, 0, 0, 0.45),
    0 4px 12px -2px rgba(0, 0, 0, 0.3),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.capsule-prism-border {
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    #ff0055 0%,
    #ff9900 15%,
    #ffee00 30%,
    #00ffcc 45%,
    #0099ff 60%,
    #9900ff 75%,
    #ff00cc 90%,
    #ff0055 100%
  );
  animation: rotatePrism 4s linear infinite;
  z-index: 1;
}

@keyframes rotatePrism {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.capsule-glass-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px 18px 6px 10px;
  box-shadow: 
    inset 0 2px 2px #ffffff,
    inset 0 -2px 3px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.12);
}

.prism-ai-capsule:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 
    0 16px 36px -4px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(0, 204, 255, 0.35),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.6);
}

/* AI Lens Loading & Sparkle */
.ai-lens-icon-wrap {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lens-gauge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-track {
  fill: none;
  stroke: rgba(15, 23, 42, 0.1);
  stroke-width: 2.8;
}

.gauge-spinner {
  fill: none;
  stroke: #0284c7;
  stroke-width: 2.8;
  stroke-dasharray: 88;
  stroke-dashoffset: 44;
  stroke-linecap: round;
  animation: spinGauge 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spinGauge {
  0% {
    stroke-dashoffset: 88;
    transform: rotate(0deg);
    transform-origin: center;
  }
  50% {
    stroke-dashoffset: 22;
    transform: rotate(180deg);
    transform-origin: center;
  }
  100% {
    stroke-dashoffset: 88;
    transform: rotate(360deg);
    transform-origin: center;
  }
}

.lens-core-icon {
  width: 13px;
  height: 13px;
  color: #0f172a;
  stroke-width: 2.6px;
  z-index: 2;
}

.sparkle-star {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  z-index: 3;
  animation: sparkleGlimmer 2s ease-in-out infinite;
}

.sparkle-svg {
  width: 100%;
  height: 100%;
  fill: #0ea5e9;
  filter: drop-shadow(0 0 4px rgba(14, 165, 233, 0.8));
}

@keyframes sparkleGlimmer {
  0%, 100% {
    transform: scale(0.75) rotate(0deg);
    opacity: 0.6;
    filter: drop-shadow(0 0 2px #38bdf8);
  }
  50% {
    transform: scale(1.35) rotate(20deg);
    opacity: 1;
    filter: drop-shadow(0 0 8px #0284c7) drop-shadow(0 0 12px #38bdf8);
  }
}

.capsule-title-text {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.tip-headline-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tip-main-title {
  font-size: 1.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.title-highlight {
  color: #ffffff;
}

.star-rating {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.tip-sub-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-red-bright);
  letter-spacing: -0.02em;
}

.tip-body-texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tip-p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-gray-light);
  word-break: keep-all;
}

.tip-action-row {
  margin-top: 8px;
}

.btn-tip-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(134, 25, 28, 0.4);
  transition: var(--transition-smooth);
}

.btn-tip-call:hover {
  background: var(--color-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(134, 25, 28, 0.6);
}

/* Split Header (Left Red Vertical + Bold Title / Right Lead Text) */
.editorial-split-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 64px;
}

.vertical-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.v-circle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.v-title-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-red-bright);
}

.editorial-sec-title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.editorial-sec-title .title-red {
  color: var(--color-red-bright);
}

.editorial-sec-title .title-dark {
  color: #ffffff;
}

.sec-lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-muted);
  word-break: keep-all;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}

/* ----------------------------------
   SECTION 1: ABOUT US (Bento Monochrome Grid)
----------------------------------- */
.about-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bento-card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.bento-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-idx {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-red-bright);
}

.bento-tag {
  font-size: 0.68rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--color-gray-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
}

.bento-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  filter: grayscale(85%) contrast(110%);
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-media {
  filter: grayscale(20%);
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-img {
  transform: scale(1.05);
}

.bento-overlay-red-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(134, 25, 28, 0.3);
  border-radius: 4px;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-overlay-red-frame {
  border-color: var(--color-red-bright);
  inset: 8px;
}

.bento-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bento-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 0.9rem;
  color: var(--color-gray-muted);
  line-height: 1.7;
  word-break: keep-all;
}

/* ----------------------------------
   VIP SALON & WHISKY SHOWCASE SECTION (이식 섹션)
----------------------------------- */
.vip-salon-section {
  padding: 30px 48px 80px 48px;
}

.vip-salon-banner-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  background: var(--color-black);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salon-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.salon-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) contrast(1.1);
  transform: scale(1.02);
  transition: var(--transition-smooth);
}

.vip-salon-banner-card:hover .salon-bg-img {
  transform: scale(1.05);
}

.salon-vignette-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(13, 14, 18, 0.45) 0%, rgba(13, 14, 18, 0.94) 90%),
    linear-gradient(180deg, rgba(134, 25, 28, 0.25) 0%, rgba(13, 14, 18, 0.75) 100%);
}

.salon-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 40px;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trad-symbol-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider-icon {
  height: 32px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px rgba(134, 25, 28, 0.7));
}

.salon-main-heading {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.salon-description-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #f1f3f5;
  word-break: keep-all;
  max-width: 820px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.whisky-brands-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  width: 100%;
}

.whisky-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.whisky-brand-item img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.whisky-brand-item:hover img {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

/* ----------------------------------
   HERITAGE POSTER GALLERY SECTION (양옆 슬라이드 인 애니메이션)
----------------------------------- */
.heritage-gallery-section {
  padding: 40px 48px 90px 48px;
  overflow: hidden;
}

.poster-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.poster-frame-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  will-change: transform, opacity;
}

/* Left elements: Start from left (-80px) */
.poster-frame-card.slide-from-left {
  transform: translateX(-90px);
}

/* Right elements: Start from right (80px) */
.poster-frame-card.slide-from-right {
  transform: translateX(90px);
}

/* When in view (active class added by IntersectionObserver) */
.poster-frame-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.poster-inner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.poster-frame-card:hover .poster-inner-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--color-red);
}

.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: var(--transition-smooth);
}

.poster-frame-card:hover .poster-img {
  transform: scale(1.04);
}

.poster-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  border-radius: 4px;
}

.poster-caption {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--color-gray-muted);
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
}

.poster-frame-card:hover .poster-caption {
  color: #ffffff;
}

/* ----------------------------------
   SECTION 2: CUISINE (Ref 1 Red-Border Overlay)
----------------------------------- */
.cuisine-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

.cuisine-left-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.red-framed-card {
  position: relative;
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.red-frame-outline {
  position: absolute;
  inset: -3px;
  border: 2px solid transparent;
  border-radius: 14px;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.red-framed-card:hover, .red-framed-card.active {
  background: var(--color-dark-card);
  transform: translateX(8px);
}

.red-framed-card.active .red-frame-outline {
  border-color: var(--color-red-bright);
}

.card-inner-img {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  filter: grayscale(80%);
  transition: var(--transition-smooth);
}

.red-framed-card.active .card-inner-img,
.red-framed-card:hover .card-inner-img {
  filter: grayscale(0%);
}

.card-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-indicator-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  background: rgba(13, 14, 18, 0.7);
  border-radius: 50%;
  color: var(--color-red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.red-framed-card:hover .play-indicator-btn,
.red-framed-card.active .play-indicator-btn {
  opacity: 1;
}

.card-meta {
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-red-bright);
  letter-spacing: 0.1em;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 4px 0;
}

.card-brief {
  font-size: 0.8rem;
  color: var(--color-gray-muted);
}

.cuisine-right-feature {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-img-box {
  position: relative;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
}

.feature-big-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(110%);
  transition: var(--transition-smooth);
}

.feature-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 14, 18, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-left: 3px solid var(--color-red);
  display: flex;
  flex-direction: column;
}

.feat-red {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--color-red-bright);
  letter-spacing: 0.15em;
}

.feat-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.cuisine-course-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 0.88rem;
}

.step-num {
  color: var(--color-red-bright);
  font-weight: 800;
}

.step-content {
  color: var(--color-gray-light);
}

/* ----------------------------------
   SECTION 3: PERFORMANCE (Ref 2 Circle Slider)
----------------------------------- */
.circle-slider-wrapper {
  position: relative;
  width: 100%;
}

.circle-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.slider-cur-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-gray-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.circleSwiper {
  width: 100%;
  padding: 40px 0 60px 0;
  overflow: visible;
}

.circle-slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0.45;
  transform: scale(0.85);
  cursor: pointer;
}

.swiper-slide-active.circle-slide-item {
  opacity: 1;
  transform: scale(1.05);
}

.circle-avatar-box {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(85%);
  transition: var(--transition-smooth);
}

.swiper-slide-active .circle-img {
  filter: grayscale(0%);
}

.circle-red-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.swiper-slide-active .circle-red-ring {
  border-color: var(--color-red-bright);
}

.circle-play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  background: var(--color-red);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.circle-caption {
  max-width: 260px;
}

.caption-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.caption-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-red-bright);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.caption-desc {
  font-size: 0.8rem;
  color: var(--color-gray-muted);
  line-height: 1.6;
}

/* ----------------------------------
   SECTION 4: ROOMS
----------------------------------- */
.rooms-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.room-editorial-card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.room-editorial-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
}

.room-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
  filter: grayscale(80%);
  transition: var(--transition-smooth);
}

.room-editorial-card:hover .room-img-box {
  filter: grayscale(0%);
}

.room-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.room-editorial-card:hover .room-img-box img {
  transform: scale(1.05);
}

.room-type-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.room-info-box {
  padding: 28px;
}

.room-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.room-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.room-cap {
  font-size: 0.75rem;
  color: var(--color-red-bright);
  font-weight: 700;
  background: rgba(134, 25, 28, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.room-desc {
  font-size: 0.88rem;
  color: var(--color-gray-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-gray-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-features li i {
  width: 16px;
  height: 16px;
  color: var(--color-red-bright);
}

/* ----------------------------------
   SECTION 5: GUIDE & PRICING
----------------------------------- */
.guide-cards-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}

.guide-price-card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 36px;
  position: relative;
}

.guide-price-card.highlight-card {
  border-top: 4px solid var(--color-red);
}

.card-top-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-red-bright);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.guide-card-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.price-highlight {
  background: rgba(134, 25, 28, 0.1);
  border-left: 3px solid var(--color-red);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.price-desc {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.guide-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.guide-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-gray-light);
}

.guide-bullets li i {
  color: var(--color-red-bright);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-foot-note {
  font-size: 0.75rem;
  color: var(--color-gray-muted);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.guide-process-card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.p-step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.p-step-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-red-bright);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.p-step-body strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
}

.p-step-body p {
  font-size: 0.82rem;
  color: var(--color-gray-muted);
  line-height: 1.6;
}

/* ----------------------------------
   SECTION 6: RESERVATION
----------------------------------- */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.res-call-banner {
  background: radial-gradient(circle at 10% 20%, #2b0a0b 0%, var(--color-dark-surface) 90%);
  border: 1px solid rgba(134, 25, 28, 0.3);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-red-bright);
  margin-bottom: 8px;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.banner-desc {
  font-size: 0.88rem;
  color: var(--color-gray-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.res-phone-big {
  background: var(--color-red);
  color: #fff;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(134, 25, 28, 0.4);
  transition: var(--transition-smooth);
  margin-bottom: 32px;
}

.res-phone-big:hover {
  background: var(--color-red-bright);
  transform: translateY(-2px);
}

.res-phone-big i {
  width: 28px;
  height: 28px;
}

.phone-text {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 0.7rem;
  opacity: 0.85;
}

.phone-val {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.manager-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.m-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-gray-light);
}

.m-badge i {
  color: var(--color-red-bright);
  width: 16px;
  height: 16px;
}

.res-form-wrapper {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px;
}

.editorial-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.form-must {
  font-size: 0.72rem;
  color: var(--color-red-bright);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-red-bright);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
  background: var(--color-dark-surface);
  color: #fff;
}

.form-privacy-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-gray-muted);
}

.form-privacy-agree input[type="checkbox"] {
  accent-color: var(--color-red);
  width: 16px;
  height: 16px;
}

.form-submit-btn {
  background: var(--color-red);
  color: #fff;
  border-radius: 6px;
  padding: 16px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(134, 25, 28, 0.35);
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  background: var(--color-red-bright);
  transform: translateY(-2px);
}

/* ----------------------------------
   SECTION 7: LOCATION
----------------------------------- */
.location-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-map-card {
  position: relative;
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.google-map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 520px;
}

.google-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-btn-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 10;
}

.map-app-link {
  background: rgba(13, 14, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.map-app-link.google:hover {
  background: #4285f4;
  color: #fff;
  border-color: #4285f4;
  transform: translateY(-2px);
}

.map-app-link.kakao:hover {
  background: #fae100;
  color: #3b1e1e;
  border-color: #fae100;
  transform: translateY(-2px);
}

.map-app-link.naver:hover {
  background: #03c75a;
  color: #fff;
  border-color: #03c75a;
  transform: translateY(-2px);
}

.location-details-card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.loc-info-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-body strong {
  font-size: 0.95rem;
  color: #fff;
  display: block;
}

.info-body p {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}

.sub-tip {
  font-size: 0.72rem;
  color: var(--color-red-bright);
}

/* ----------------------------------
   FOOTER
----------------------------------- */
.editorial-footer {
  background: #08090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 48px 40px 48px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  margin-bottom: 12px;
}

.footer-brand-logo-img {
  max-width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.f-tagline {
  font-size: 0.82rem;
  color: var(--color-gray-muted);
  margin-top: 4px;
}

.footer-links-col {
  display: flex;
  gap: 60px;
}

.f-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-red-bright);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.f-link-group a {
  font-size: 0.85rem;
  color: var(--color-gray-muted);
}

.f-link-group a:hover {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy-text {
  font-size: 0.75rem;
  color: var(--color-gray-muted);
  line-height: 1.8;
}

.safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
}

/* Floating Quick Call Button for Mobile (Left-aligned Circular Icon Button) */
.floating-quick-call {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 20px;
  right: auto;
  z-index: 1040;
}

.quick-call-cta {
  background: var(--color-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  box-shadow: 
    0 10px 25px rgba(134, 25, 28, 0.65),
    0 0 0 4px rgba(255, 255, 255, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  animation: pulseCircleBtn 2.2s infinite ease-in-out;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.quick-call-cta svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.quick-call-cta span {
  display: none;
}

.quick-call-cta:hover {
  transform: scale(1.12);
  background: var(--color-red-bright);
  box-shadow: 0 12px 30px rgba(134, 25, 28, 0.8), 0 0 0 6px rgba(255, 255, 255, 0.3);
}

@keyframes pulseCircleBtn {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(134, 25, 28, 0.65), 0 0 0 0 rgba(134, 25, 28, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(134, 25, 28, 0.8), 0 0 0 10px rgba(134, 25, 28, 0);
  }
}

/* ----------------------------------
   RESPONSIVE MEDIA QUERIES
----------------------------------- */
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 0px;
  }

  .side-brand-bar {
    display: none;
  }

  .mobile-top-bar {
    display: flex;
  }

  .main-editorial-wrapper {
    margin-left: 0;
    width: 100%;
    padding-top: var(--header-height);
  }

  .top-util-strip {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content-pane {
    order: 1;
  }

  .hero-visual-pane {
    order: 2;
  }

  .hero-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-bg-img,
  .hero-bg-video {
    height: 100%;
  }

  .title-en-main {
    font-size: 2.5rem;
  }

  .hero-cta-group {
    display: none;
  }

  .editorial-split-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .sec-lead-text {
    border-left: none;
    padding-left: 0;
  }

  .choice-tip-grid-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 24px;
  }

  .about-bento-grid {
    grid-template-columns: 1fr;
  }

  .cuisine-showcase-layout {
    grid-template-columns: 1fr;
  }

  .rooms-grid-layout {
    grid-template-columns: 1fr;
  }

  .guide-cards-grid {
    grid-template-columns: 1fr;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .location-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 30px;
  }

  .floating-quick-call {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .editorial-section {
    padding: 60px 20px;
  }

  .title-en-main {
    font-size: 2.1rem;
  }

  .title-kr-sub {
    font-size: 1.1rem;
  }

  .editorial-sec-title {
    font-size: 1.8rem;
  }

  .hero-cta-group {
    display: none;
  }

  .hero-quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-top: 10px;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-quick-specs .spec-num {
    font-size: 1.35rem;
  }

  .hero-quick-specs .spec-label {
    font-size: 0.7rem;
    line-height: 1.35;
    word-break: keep-all;
    margin-top: 4px;
  }

  .salon-content-center {
    padding: 36px 16px;
  }

  .salon-main-heading {
    font-size: 1.7rem;
  }

  .salon-description-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .whisky-brands-strip {
    gap: 20px;
    margin-top: 16px;
    padding-top: 20px;
  }

  .whisky-brand-item img {
    height: 36px;
    max-width: 110px;
  }

  .poster-gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .footer-links-col {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-avatar-widget {
    right: 8px;
    bottom: 0;
  }

  .avatar-model-wrap {
    width: 120px;
  }

  .avatar-speech-bubble {
    padding: 8px 12px;
    margin-right: 4px;
    margin-bottom: 6px;
  }

  .bubble-msg {
    font-size: 0.74rem;
  }
}

/* ----------------------------------
   FLOATING SIDE AVATAR & SPEECH BUBBLE (floating-side-avatar Skill)
----------------------------------- */
.floating-avatar-widget {
  position: fixed;
  right: 28px;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.floating-avatar-widget.dismissed {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

/* Dismiss Close Button */
.avatar-dismiss-btn {
  position: absolute;
  top: -12px;
  right: 6px;
  z-index: 20;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 14, 18, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatar-dismiss-btn svg {
  width: 12px;
  height: 12px;
}

.floating-avatar-widget:hover .avatar-dismiss-btn {
  opacity: 1;
}

.avatar-dismiss-btn:hover {
  background: var(--color-red);
  transform: scale(1.15) rotate(90deg);
}

/* Peeking Speech Bubble (Original Compact Size) */
.avatar-speech-bubble {
  pointer-events: auto;
  position: relative;
  margin-bottom: 8px;
  margin-right: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 10px 16px;
  border: 1.5px solid rgba(134, 25, 28, 0.2);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.25),
    0 2px 10px rgba(134, 25, 28, 0.15),
    inset 0 1px 1px #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  animation: bubblePulse 3.5s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.avatar-speech-bubble:hover {
  transform: scale(1.05) translateY(-2px);
  border-color: var(--color-red-bright);
  box-shadow: 
    0 16px 36px rgba(134, 25, 28, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Speech Bubble Tail */
.avatar-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1.5px solid rgba(134, 25, 28, 0.2);
  border-bottom: 1.5px solid rgba(134, 25, 28, 0.2);
  transform: rotate(45deg);
}

.bubble-sparkle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(134, 25, 28, 0.1);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bubble-sparkle-icon svg {
  width: 14px;
  height: 14px;
  animation: sparklePulse 2s infinite;
}

.bubble-text-wrap {
  display: flex;
  flex-direction: column;
}

.bubble-highlight {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: -0.01em;
}

.bubble-msg {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

/* Transparent Video Model Avatar (Large) */
.avatar-model-wrap {
  pointer-events: auto;
  position: relative;
  width: 280px;
  height: auto;
  animation: avatarFloat 4.5s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.avatar-source-video {
  display: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.avatar-transparent-canvas {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

.avatar-model-wrap:hover .avatar-transparent-canvas {
  transform: scale(1.03);
  filter: drop-shadow(0 20px 48px rgba(134, 25, 28, 0.6));
}

/* Keyframes */
@keyframes avatarFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.8deg);
  }
}

@keyframes bubblePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 16px 32px rgba(134, 25, 28, 0.25);
  }
}

@keyframes sparklePulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
