 /* 이미지 자리 영역 (placeholder) - 시안 단계용 */
.img-ph {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4dfe7 0%, #b8c8d4 50%, #9fb3c2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.img-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,0.08) 12px,
    rgba(255,255,255,0.08) 13px
      );
    pointer-events: none;
}
  
.img-ph .ph-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    padding: 6px 14px;
    background: rgba(0, 38, 80, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
}
  
  /* Hero 배경용 - 더 어두운 톤 */
.img-ph.dark {
    background: linear-gradient(135deg, #1a4870 0%, #003d7a 50%, #002650 100%);
}
  
  /* Lineup용 - 다크 톤 */
.img-ph.lineup-bg {
    background: linear-gradient(135deg, #2a5a8a 0%, #1a3d6a 100%);
}
  
  /* Filmic noise overlay - subtle texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}
  
  /* =====================================
     TYPOGRAPHY
     ===================================== */
.display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.9;
    text-transform: uppercase;
}
  
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--magenta-wine);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
  
.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--magenta-wine);
}
  
  /* === 섹션별 eyebrow 색상 override === */
  /* 하늘색 배경 섹션 → 블루 (배경과 톤 일치) */
.about .eyebrow,
.visit .eyebrow,
.gallery .eyebrow {
    color: var(--primary);
}
.about .eyebrow::before,
.visit .eyebrow::before,
.gallery .eyebrow::before {
    background: var(--primary);
}
  
  
  /* =====================================
     HERO
     ===================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 640px;
    padding: 120px var(--pad-x) 60px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* 포스터 야경 그라데이션 (위→아래: 깊은 네이비→보라→마젠타) */
    background: 
      linear-gradient(180deg, 
    var(--night-deep) 0%,
    var(--night) 25%,
    var(--purple) 60%,
    var(--magenta) 100%
      );
}
  
  /* 별 배경 (SVG inline) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(2px 2px at 10% 15%, white, transparent),
      radial-gradient(1px 1px at 25% 25%, white, transparent),
      radial-gradient(2px 2px at 40% 10%, rgba(255,255,255,0.8), transparent),
      radial-gradient(1px 1px at 55% 20%, white, transparent),
      radial-gradient(2px 2px at 70% 15%, white, transparent),
      radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,0.7), transparent),
      radial-gradient(1.5px 1.5px at 15% 35%, white, transparent),
      radial-gradient(1px 1px at 90% 40%, white, transparent),
      radial-gradient(1px 1px at 50% 35%, rgba(255,255,255,0.6), transparent);
    pointer-events: none;
    z-index: 1;
    animation: starsTwinkle 4s ease-in-out infinite;
}
  
  @keyframes starsTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
  
  /* 마젠타 글로우 오버레이 (놀이공원 조명 효과) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(212, 55, 124, 0.4), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.3), transparent 45%);
    pointer-events: none;
    z-index: 1;
}
  
  /* 우측 일러스트 영역 (포스터 캐릭터 배치 자리) */
  /* 우측 일러스트 영역 (포스터 캐릭터) */
.hero-illust {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 640px;
    height: 90%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
  
  /* === 메인 캐릭터 이미지 === */
.hero-character {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    animation: 
      characterFloat 5s ease-in-out infinite,
      characterEnter 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 60px rgba(255, 203, 71, 0.2));
}
  
  @keyframes characterEnter {
    from {
      opacity: 0;
      transform: translateX(80px) translateY(20px) rotate(8deg);
  }
    to {
      opacity: 1;
      transform: translateX(0) translateY(0) rotate(0deg);
  }
}
  
  @keyframes characterFloat {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
}
  
  /* 반짝이는 별 (캐릭터 주변 장식) */
.hero-character-sparkle {
    position: absolute;
    color: var(--beer-yellow);
    font-size: 18px;
    text-shadow: 0 0 12px rgba(255, 203, 71, 0.8);
    animation: sparklePulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}
  
.hero-character-sparkle.s1 { top: 15%; left: 8%; animation-delay: 0s; }
.hero-character-sparkle.s2 { top: 25%; right: 5%; font-size: 14px; animation-delay: 0.7s; }
.hero-character-sparkle.s3 { top: 50%; left: 3%; font-size: 12px; animation-delay: 1.4s; }
.hero-character-sparkle.s4 { bottom: 30%; right: 8%; font-size: 16px; animation-delay: 0.3s; }
  
  @keyframes sparklePulse {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.1); }
}
  
  @media (prefers-reduced-motion: reduce) {
  .hero-character,
  .hero-character-sparkle {
      animation: none !important;
  }
}
  
  /* 기존 placeholder 숨김 */
.hero-illust-ph { display: none !important; }
  
  /* 페리스휠/성 실루엣 (배경 장식) */
.hero-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    z-index: 1;
    pointer-events: none;
    background-image: 
      /* 좌측 페리스휠 실루엣 */
      radial-gradient(circle 80px at 15% 100%, rgba(255, 255, 255, 0.08), transparent),
      /* 우측 성 실루엣 */
      radial-gradient(ellipse 200px 100px at 85% 100%, rgba(212, 55, 124, 0.2), transparent);
}
  
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}
  
.hero-content {
    max-width: 720px;
}
  
.hero-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    animation: fadeUp 0.8s 0.2s both;
    flex-wrap: wrap;
}
  
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta .dot {
    width: 6px;
    height: 6px;
    background: var(--beer-yellow);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--beer-yellow);
    animation: pulse 2s infinite;
}
  
  /* 슬로건 - 환상의 나라 : 비어랜드 */
.hero-slogan {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 55, 124, 0.25);
    border: 1px solid rgba(232, 93, 155, 0.4);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    animation: fadeUp 0.8s 0.3s both;
}
  
.hero-slogan::before {
    content: '✦';
    color: var(--beer-yellow);
    margin-right: 8px;
}
  
.hero-slogan::after {
    content: '✦';
    color: var(--beer-yellow);
    margin-left: 8px;
}
  
  /* === 떠오르는 거품 (히어로 배경 애니메이션) === */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
  
.hero-bubble {
    position: absolute;
    bottom: -40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
      rgba(255, 255, 255, 0.4),
      rgba(255, 203, 71, 0.15) 60%,
      rgba(255, 140, 66, 0.05)
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
      inset 0 0 8px rgba(255, 255, 255, 0.3),
      0 0 12px rgba(255, 203, 71, 0.15);
    animation: bubbleFloat linear infinite;
    opacity: 0;
}
  
  /* 거품 12개 - 위치/크기/속도/타이밍 다양화 */
.hero-bubble:nth-child(1)  { left: 5%;   width: 24px; height: 24px; animation-duration: 14s; animation-delay: 0s; }
.hero-bubble:nth-child(2)  { left: 12%;  width: 16px; height: 16px; animation-duration: 18s; animation-delay: 2s; }
.hero-bubble:nth-child(3)  { left: 20%;  width: 32px; height: 32px; animation-duration: 16s; animation-delay: 4s; }
.hero-bubble:nth-child(4)  { left: 28%;  width: 12px; height: 12px; animation-duration: 12s; animation-delay: 1s; }
.hero-bubble:nth-child(5)  { left: 38%;  width: 20px; height: 20px; animation-duration: 20s; animation-delay: 6s; }
.hero-bubble:nth-child(6)  { left: 47%;  width: 28px; height: 28px; animation-duration: 17s; animation-delay: 3s; }
.hero-bubble:nth-child(7)  { left: 55%;  width: 14px; height: 14px; animation-duration: 15s; animation-delay: 7s; }
.hero-bubble:nth-child(8)  { left: 65%;  width: 22px; height: 22px; animation-duration: 19s; animation-delay: 5s; }
.hero-bubble:nth-child(9)  { left: 73%;  width: 18px; height: 18px; animation-duration: 13s; animation-delay: 0.5s; }
.hero-bubble:nth-child(10) { left: 82%;  width: 26px; height: 26px; animation-duration: 16s; animation-delay: 4.5s; }
.hero-bubble:nth-child(11) { left: 90%;  width: 14px; height: 14px; animation-duration: 14s; animation-delay: 2.5s; }
.hero-bubble:nth-child(12) { left: 95%;  width: 20px; height: 20px; animation-duration: 18s; animation-delay: 8s; }
  
  @keyframes bubbleFloat {
    0% {
      bottom: -40px;
      opacity: 0;
      transform: translateX(0) scale(0.8);
  }
    10% {
      opacity: 0.7;
  }
    50% {
      transform: translateX(20px) scale(1);
  }
    90% {
      opacity: 0.5;
  }
    100% {
      bottom: 105%;
      opacity: 0;
      transform: translateX(-10px) scale(0.9);
  }
}
  
  /* === 반딧불/조명 입자 (반짝이는 작은 빛) === */
.hero-fireflies {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
  
.firefly {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--beer-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--beer-yellow), 0 0 16px rgba(255, 203, 71, 0.5);
    animation: fireflyMove linear infinite, fireflyGlow 2s ease-in-out infinite;
    opacity: 0;
}
  
  /* 반딧불 8개 - 곡선 경로로 떠다님 */
.firefly:nth-child(1) { top: 20%; left: 10%; animation-duration: 22s, 2s;   animation-delay: 0s, 0s; }
.firefly:nth-child(2) { top: 60%; left: 25%; animation-duration: 28s, 2.5s; animation-delay: 3s, 0.5s; }
.firefly:nth-child(3) { top: 35%; left: 45%; animation-duration: 25s, 2s;   animation-delay: 1s, 1s; }
.firefly:nth-child(4) { top: 70%; left: 60%; animation-duration: 30s, 3s;   animation-delay: 5s, 0.3s; }
.firefly:nth-child(5) { top: 25%; left: 75%; animation-duration: 26s, 2.2s; animation-delay: 2s, 0.8s; }
.firefly:nth-child(6) { top: 55%; left: 85%; animation-duration: 24s, 2.4s; animation-delay: 4s, 1.2s; }
.firefly:nth-child(7) { top: 80%; left: 35%; animation-duration: 27s, 2.6s; animation-delay: 6s, 0.6s; }
.firefly:nth-child(8) { top: 15%; left: 55%; animation-duration: 23s, 2.8s; animation-delay: 1.5s, 0.4s; }
  
  @keyframes fireflyMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(40px, -30px); }
    50% { transform: translate(20px, -60px); }
    75% { transform: translate(-30px, -40px); }
    100% { transform: translate(0, 0); }
}
  
  @keyframes fireflyGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}
  
  /* reduced motion 사용자 배려 */
  @media (prefers-reduced-motion: reduce) {
  .hero-bubble, .firefly {
      animation: none !important;
      opacity: 0.3;
  }
}
  
  /* === 히어로 로고 (텍스트 타이틀 자리) === */
.hero-logo {
    display: block;
    width: 100%;
    max-width: 580px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 30px rgba(255, 203, 71, 0.25));
    animation: logoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
  
  @keyframes logoIn {
    from {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
  }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}
  
  /* 슬로건은 로고 안에 이미 포함됐으니 숨김 (중복 방지) */
.hero-content .hero-slogan { display: none; }
  
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 14vw, 200px);
    line-height: 0.85;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
  
.hero-title .row {
    overflow: hidden;
    display: block;
}
  
.hero-title .row span {
    display: block;
    animation: titleUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
  
.hero-title .row:nth-child(1) span { animation-delay: 0.4s; }
.hero-title .row:nth-child(2) span { animation-delay: 0.5s; color: var(--beer-yellow); text-shadow: 0 0 30px rgba(255, 203, 71, 0.5); }
.hero-title .row:nth-child(3) span { animation-delay: 0.6s; }
  
.hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.9s both;
}
  
.hero-info {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 1.0s both;
}
  
.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
  
.info-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}
  
.info-value {
    font-size: 18px;
    font-weight: 600;
}
  
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 1.1s both;
}
  
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--gold);
    color: var(--deep);
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.35);
}
  
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.5);
}
  
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    transition: all 0.3s;
}
  
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}
  
.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    animation: fadeUp 0.8s 1.4s both;
}
  
.scroll-cue::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    animation: scrollDown 2s infinite;
}
  
  @keyframes scrollDown {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}
  
  /* Hero corner accent */
.hero-corner {
    position: absolute;
    top: 120px;
    right: var(--pad-x);
    z-index: 3;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    background: rgba(26, 27, 58, 0.3);
    backdrop-filter: blur(8px);
}
  
.hero-corner-rotor {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 203, 71, 0.3);
    animation: rotate 30s linear infinite;
}
  
.hero-corner svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
  
.hero-corner-inner {
    text-align: center;
}
  
.hero-corner-num {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--beer-yellow);
    text-shadow: 0 0 20px rgba(255, 203, 71, 0.6);
}
  
.hero-corner-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.3em;
    margin-top: 4px;
}
  
  /* =====================================
     COUNTDOWN
     ===================================== */
.countdown {
    padding: 120px var(--pad-x) 100px;
    /* 다크 히어로에서 라이트 베이스로 자연스러운 전환 */
    background: 
      linear-gradient(180deg,
    var(--lavender) 0%,
    var(--peach) 35%,
    var(--cream) 70%,
    var(--base) 100%
      );
    position: relative;
}
  
  /* 상단에 별 잔재 (히어로와 연결감) */
.countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background-image: 
      radial-gradient(1px 1px at 15% 30%, rgba(168, 55, 124, 0.4), transparent),
      radial-gradient(1.5px 1.5px at 45% 50%, rgba(212, 55, 124, 0.3), transparent),
      radial-gradient(1px 1px at 75% 40%, rgba(168, 55, 124, 0.4), transparent),
      radial-gradient(1px 1px at 90% 25%, rgba(212, 55, 124, 0.3), transparent);
    pointer-events: none;
    opacity: 0.6;
}
  
.countdown-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}
  
.countdown-eyebrow {
    margin-bottom: 24px;
}
  
.countdown-head {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1;
    font-weight: bold;
}
  
.countdown-sub {
    font-size: 16px;
    color: var(--text-sub);
    margin-bottom: 56px;
}
  
.timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 48px;
}
  
.timer-cell {
    position: relative;
    aspect-ratio: 1;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
  
.timer-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
  
.timer-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
  
.timer-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-sub);
    text-transform: uppercase;
}
  
.timer-cell:first-child .timer-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
  
.countdown-quote {
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
    margin-top: 16px;
}
  
.countdown-quote em {
    color: var(--magenta-wine);
    font-style: normal;
    font-weight: 700;
}
  
  /* =====================================
     ABOUT - Why Songdo Beer
     ===================================== */
.about {
    padding: 120px var(--pad-x);
    background: var(--sky);
    position: relative;
    overflow: hidden;
}
  
.about::before {
    content: 'WHY';
    position: absolute;
    top: 20px;
    right: -20px;
    font-family: var(--font-display);
    font-size: 360px;
    color: rgba(0, 102, 204, 0.04);
    line-height: 1;
    pointer-events: none;
}
  
.about-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
}
  
.about-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 24px;
}
  
.about-head-left .display-text {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 112px);
    line-height: 0.9;
    color: var(--deep);
    margin-top: 16px;
}
  
.about-head-left .display-text span {
    color: var(--primary);
}
  
.about-head-right {
    max-width: 385px;
    color: var(--text-sub);
    font-size: 16px;
    line-height: 1.7;
}
  
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
  
.about-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}
  
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-light);
}
  
.about-card-img {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--sky-deep);
}
  
.about-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
  
.about-card:hover .about-card-img img {
    transform: scale(1.08);
}
  
.about-card-num {
    font-family: var(--font-display);
    font-size: 58px;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
  
.about-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
  
.about-card-desc {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.7;
}
  
  /* =====================================
     PROGRAM (3 ZONES)
     ===================================== */
.program {
    padding: 120px var(--pad-x);
    background: var(--base);
}
  
.program-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
  
.program-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}
  
.program-head h2 {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 112px);
    line-height: 0.9;
    color: var(--text);
    margin-top: 16px;
}
  
.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--magenta-wine);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--magenta-wine);
    transition: gap 0.3s;
}
  
.program-link:hover { gap: 14px; }
  
.zones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
  
.zone {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
  
.zone img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
  
.zone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 61, 122, 0.1) 0%,
      rgba(0, 61, 122, 0.4) 60%,
      rgba(0, 61, 122, 0.9) 100%
    );
    transition: background 0.4s;
}
  
.zone:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.zone:hover img { transform: scale(1.08); }
  
.zone-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: #fff;
    z-index: 2;
}
  
.zone-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 5px;
    text-transform: uppercase;
}
  
.zone-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}
  
.zone-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
  
.zone-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 56px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    z-index: 2;
}
  
  /* =====================================
     LINEUP CAROUSEL
     ===================================== */

.carousel-slide .img-ph::before{display: none;}
.lineup {
    padding: 120px var(--pad-x);
    /* 포스터 무드와 통일된 다크 그라데이션 */
    background: 
      linear-gradient(180deg,
    var(--deep) 0%,
    var(--night) 50%,
    var(--purple) 100%
      );
    color: #fff;
    position: relative;
    overflow: hidden;
}
  
.lineup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(212, 55, 124, 0.25), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 203, 71, 0.15), transparent 50%);
    pointer-events: none;
}
  
  /* 라인업 → 다음 라이트 섹션 전환 그라데이션 (하단) */
.lineup::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 45, 94, 0.4) 100%);
    pointer-events: none;
}
  
.lineup-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
}
  
.lineup-head {
    text-align: center;
    margin-bottom: 64px;
}
  
.lineup-head .eyebrow {
    color: var(--gold);
}
  
.lineup-head .eyebrow::before {
    background: var(--gold);
}
  
.lineup-head h2 {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 144px);
    line-height: 0.9;
    margin-top: 16px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
  
.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
  
.carousel-stage {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--deep-darker);
}
  
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
  
.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}
  
.carousel-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}
  
.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(
        0deg,
        rgba(0, 38, 80, 0.85) 0%,
        rgba(0, 38, 80, 0.4) 20%,
        transparent 60%
      ),
      linear-gradient(
        90deg,
        rgba(0, 38, 80, 0.6) 0%,
        transparent 40%
      );
      pointer-events: none;
}
  
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 64px;
    z-index: 2;
    color: #fff;
    max-width: 900px;
}
  
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--deep);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
  
.slide-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    text-transform: uppercase;
}
  
.slide-name {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
  
.slide-genre {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}
  
.slide-genre span {
    color: var(--gold);
    margin: 0 8px;
}
  
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 1px solid #fff;
}
  
.carousel-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    z-index: 5;
}
  
.carousel-counter .now { color: var(--gold); }
  
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s;
}
  
.carousel-arrow:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}
  
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }
  
.carousel-thumbs {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
    margin-top: 24px;
}
  
.thumb {
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
}
  
.thumb:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
  
.thumb.active {
    background: rgba(255, 184, 0, 0.15);
    border-color: var(--gold);
}
  
.thumb-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
  
.thumb.active .thumb-date {
    color: var(--gold);
}
  
.thumb-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}
  
.lineup-foot {
    text-align: center;
    margin-top: 56px;
}
  
.lineup-tba {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}
  
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
  
.btn-outline-light:hover {
    background: #fff;
    color: var(--deep);
}

.lineup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lineup-tab {
  position: relative;
  padding: 12px 24px;
  font-family: var(--font-display);   /* Bebas Neue */
  font-size: 18px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
  font-weight: 400;
}

.lineup-tab:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lineup-tab.active {
  color: var(--gold);
}

/* 활성 탭 아래 언더라인 */
.lineup-tab::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -17px;          /* 상위 border-bottom 위치에 정확히 겹치게 */
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lineup-tab.active::after {
  width: 60%;
}

/* 탭 옆 카운트 (선택) — 지금은 사용 안 함, 필요하면 활성화 */
/*
.lineup-tab .tab-count {
  font-family: var(--font-mono);
  font-size: 10px;
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.4);
}
*/


/* =====================================
   슬라이드 fade 전환 (탭 전환 시 부드럽게)
   ===================================== */
.carousel-slide {
  transition: opacity 0.4s ease;
}

.lineup-blur-wrap {
    position: relative;
    overflow: hidden;          /* 흐르는 카드가 밖으로 안 나가게 */
    border-radius: var(--radius-lg);
  }
  
/* 무대 조명이 좌우로 쓸고 지나감 */
.lineup-blur-wrap::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -30%;
    width: 50%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255, 203, 71, 0.12), rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-15deg);
    z-index: 4;
    pointer-events: none;
    animation: stageSweep 7s ease-in-out infinite;
}

@keyframes stageSweep {
    0% { left: -40%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

.lineup-blur-track {
    display: flex;
    gap: 24px;
    width: max-content;        /* 카드들이 한 줄로 쭉 */
    filter: blur(13px) brightness(0.62);
    pointer-events: none;
    user-select: none;
    /* 좌우 페이드로 개수 가림 */
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
    /* 천천히 좌우로 흐름 */
    animation: cardFlow 30s linear infinite;
}

/* 카드가 왼쪽으로 흐르는 무한 루프 (절반 지점에서 리셋) */
@keyframes cardFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.blur-card {
    flex: 0 0 240px;
    height: 320px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--magenta-wine), var(--purple) 60%, var(--night));
    position: relative;
    overflow: hidden;
    animation: cardPulse 4s ease-in-out infinite;
}

/* 카드별 맥동 타이밍 다르게 (자연스럽게) */
.blur-card:nth-child(2n) { animation-delay: 1.3s; }
.blur-card:nth-child(3n) { animation-delay: 2.6s; }

@keyframes cardPulse {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.25) saturate(1.3); }
}

/* 카드 안에 사람 형태 추상 그림자 (정체 불명) */
.blur-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 200px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.5), transparent 70%);
    border-radius: 50% 50% 0 0;
}

@media (prefers-reduced-motion: reduce) {
.lineup-blur-track { animation: none; justify-content: center; width: auto; }
.lineup-blur-wrap::before, .blur-card { animation: none; }
}

/* 잠금 오버레이 (블러 위에 선명하게) */
.lineup-lock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    /* 흐르는 카드 위에서 글자 가독성 확보 */
    background: radial-gradient(ellipse at center, rgba(15,14,41,0.55) 0%, rgba(15,14,41,0.25) 60%, transparent 100%);
}

.lock-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.15);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    position: relative;
    /* 글로우 맥동 (빛남) */
    animation: lockGlow 2.8s ease-in-out infinite;
}

/* 자물쇠 자체가 가끔 흔들림 (곧 풀릴 듯한 긴장감) */
.lock-icon span {
    display: inline-block;
    animation: lockShake 2.8s ease-in-out infinite;
}

/* 테두리 밖으로 퍼지는 빛 링 */
.lock-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.4);
    animation: lockRing 2.8s ease-out infinite;
}

@keyframes lockGlow {
0%, 100% { box-shadow: 0 0 0 rgba(255, 184, 0, 0); }
50% { box-shadow: 0 0 28px rgba(255, 184, 0, 0.5); }
}

@keyframes lockShake {
0%, 70%, 100% { transform: rotate(0deg); }
/* 주기 끝에 짧게 덜컹 (잠금 흔들기) */
78% { transform: rotate(-9deg); }
84% { transform: rotate(8deg); }
90% { transform: rotate(-5deg); }
95% { transform: rotate(3deg); }
}

@keyframes lockRing {
0% { inset: -6px; opacity: 0.6; }
100% { inset: -18px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
.lock-icon, .lock-icon span, .lock-icon::before { animation: none; }
}

.lock-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    text-shadow: 0 0 24px rgba(255, 203, 71, 0.3);
}

.lock-title .acc { color: var(--beer-yellow); }

.lock-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    line-height: 1.7;
}

.lock-badge {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--beer-yellow);
    backdrop-filter: blur(4px);
}

  
  /* =====================================
     GALLERY / MOMENTS
     ===================================== */
.gallery {
    padding: 120px var(--pad-x);
    background: var(--sky);
}
  
.gallery-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
  
.gallery-head {
    text-align: center;
    margin-bottom: 64px;
}
  
.gallery-head h2 {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 112px);
    line-height: 0.9;
    color: var(--deep);
    margin-top: 16px;
    margin-bottom: 16px;
}
  
.gallery-head p {
    font-size: 16px;
    color: var(--text-sub);
}
  
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}
  
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
  
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
  
.gallery-item:hover img {
    transform: scale(1.08);
}
  
.gallery-main {
    grid-row: 1 / 3;
    grid-column: 2;
    position: relative;
}
  
.gallery-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 38, 80, 0.6) 100%);
}
  
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.4);
    transition: all 0.3s;
}
  
.gallery-main:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}
  
.gallery-foot {
    text-align: center;
    margin-top: 48px;
}
  
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 1px solid var(--deep);
    color: var(--deep);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
  
.btn-outline:hover {
    background: var(--deep);
    color: #fff;
}

/* =====================================
    GALLERY SECTION
    ===================================== */
.gallery {
  padding: 120px var(--pad-x);
  background: var(--sky);
}

.gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-head {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.gallery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.9;
  color: var(--deep);
  margin-top: 16px;
  margin-bottom: 16px;
}

.gallery-head p {
  font-size: 16px;
  color: var(--text-sub);
}

/* === 좌우 분할: 영상 + 사진 스크롤 === */
.gallery-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;     /* 우측이 좌측 높이 따라감 */
}

/* 좌측 영상 래퍼 - 높이 기준 */
.gallery-video-col {
  position: relative;
}

/* 우측 사진 래퍼 - 좌측 높이에 맞춰 absolute로 채움 */
.gallery-photos-col {
   position: relative;
}

/* absolute 제거 - 이게 겹침의 원인 */
.gallery-photos-col .gallery-photos {
  position: relative;     /* absolute → relative */
  inset: auto;
}

/* === 좌측: 영상 === */
.gallery-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--night-deep);
  box-shadow: 0 12px 40px rgba(0, 61, 122, 0.15);
  aspect-ratio: 16 / 9;
  align-self: start;
}

/* 영상 썸네일 + 재생버튼 (클릭 전) */
.gallery-video-thumb {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;
}

.gallery-video-thumb .img-ph {
  width: 100%;
  height: 100%;
}

.gallery-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,14,41,0.15) 0%, rgba(15,14,41,0.55) 100%);
  transition: background 0.3s;
}

.gallery-video-thumb:hover::after {
  background: linear-gradient(180deg, rgba(15,14,41,0.25) 0%, rgba(15,14,41,0.65) 100%);
}

.gallery-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gold);
  color: var(--deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(255, 184, 0, 0.45);
  transition: transform 0.3s;
  padding-left: 5px;
}

.gallery-video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-transform: uppercase;
}

.video-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* 영상 iframe (재생 후) */
.gallery-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.gallery-photos {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6 / 4.7;     /* 영역 높이 (반응형) */
}

.gallery-photos-scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;   /* ← 핵심: 각 행이 내용물 높이를 가짐 (안 짓눌림) */
  gap: 12px;
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--deep) transparent;
}

.gallery-photos-scroll::-webkit-scrollbar {
  width: 6px;
}
.gallery-photos-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.04);
  border-radius: 100px;
}
.gallery-photos-scroll::-webkit-scrollbar-thumb {
  background: var(--deep);
  border-radius: 100px;
}

.photo-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--sky-deep);
  transition: transform 0.3s;
}

.photo-item:hover {
  transform: scale(0.97);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-item .zoom-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s;
}

.photo-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.photo-item .zoom-icon svg { width: 14px; height: 14px; }

.photo-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(15,14,41,0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s;
}

.photo-item:hover .photo-label { opacity: 1; }

/* 스크롤 힌트 (더 있음 표시) */
.gallery-photos::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 6px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--sky) 90%);
  pointer-events: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* 이미지 placeholder */
.img-ph {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4dfe7 0%, #b8c8d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ph.dark {
  background: linear-gradient(135deg, var(--deep) 0%, var(--night-deep) 100%);
}

.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 11px);
}


.g_lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 14, 41, 0.94);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.g_lightbox.open { opacity: 1; visibility: visible; }

.g_lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s;
    object-fit: contain;
}

.g_lightbox.open .g_lightbox-img { transform: scale(1); }

.g_lightbox-ph {
    width: min(80vw, 800px);
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #d4dfe7 0%, #b8c8d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.3s;
    color: var(--deep);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
}

.g_lightbox.open .g_lightbox-ph { transform: scale(1); }

.g_lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.g_lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.g_lightbox-prev { left: 28px; }
.g_lightbox-next { right: 28px; }

.g_lightbox-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.g_lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.g_lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
}

/* =====================================
    INSTAGRAM
===================================== */
.insta {
    padding: 120px var(--pad-x);
    background: var(--base);
    overflow: hidden;
    position: relative;
}
/* 배경 장식 - 인스타 로고 그라데이션 톤 */
.insta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: 
      radial-gradient(circle, rgba(168, 55, 124, 0.06), transparent 70%);
    pointer-events: none;
}
  
.insta::after {
    content: 'INSTAGRAM';
    position: absolute;
    bottom: -40px;
    left: -20px;
    font-family: var(--font-display);
    font-size: clamp(180px, 22vw, 360px);
    color: rgba(168, 55, 124, 0.04);
    line-height: 0.8;
    pointer-events: none;
    letter-spacing: -0.02em;
}
  
.insta-inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    z-index: 2;
}
  
  /* === 2단 그리드: 카드 + 안내 === */
.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
  
  /* === 좌측: 인스타 카드 영역 === */
.insta-card-wrap {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
}
  
  /* 카드 배경 글로우 */
.insta-card-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, 
      rgba(168, 55, 124, 0.15),
      rgba(255, 184, 0, 0.1),
      rgba(212, 55, 124, 0.12)
    );
    border-radius: 24px;
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
}
  
  /* 카드 자체 컨테이너 */
.insta-card {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.04),
      0 20px 60px rgba(168, 55, 124, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
  
.insta-card:hover {
    transform: translateY(-6px);
    box-shadow: 
      0 6px 16px rgba(0, 0, 0, 0.06),
      0 28px 72px rgba(168, 55, 124, 0.16);
}
  
  /* 인스타 임베드 위치 */
.insta-embed-slot {
    position: relative;
    width: 100%;
    min-height: 540px;
    background: var(--surface);
}
  
  /* 인스타 공식 임베드가 들어갈 자리. 본인이 PHP/HTML에서 여기에 임베드 코드 삽입 */
.insta-embed-slot iframe,
.insta-embed-slot blockquote {
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
  
  /* 임베드 코드가 아직 안 들어갔을 때의 placeholder */
.insta-embed-placeholder {
    padding: 24px;
}
  
.iep-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 16px;
}
  
.iep-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--magenta-wine), var(--gold));
    padding: 2px;
}
  
.iep-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta-wine);
    font-weight: 700;
    font-size: 14px;
}
  
.iep-handle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
  
.iep-handle-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
  
.iep-handle-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-sub);
    letter-spacing: 0.05em;
}
  
.iep-image-area {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: 
      linear-gradient(135deg, var(--lavender), var(--peach), var(--cream));
    border-radius: var(--radius);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
  
.iep-image-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(168, 55, 124, 0.04) 10px,
      rgba(168, 55, 124, 0.04) 11px
    );
}
  
.iep-image-tag {
    position: relative;
    z-index: 2;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
  
.iep-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 4px 0;
}
  
.iep-actions svg {
    width: 22px;
    height: 22px;
    color: var(--text);
}
  
.iep-bookmark { margin-left: auto; }
  
.iep-meta {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
  
  /* === 우측: 안내 + CTA === */
.insta-content {
    padding: 0 20px;
}
  
.insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--magenta-wine);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    padding: 8px 14px;
    background: rgba(168, 55, 124, 0.08);
    border-radius: 100px;
}
  
.insta-handle::before {
    content: '';
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border-radius: 5px;
    position: relative;
}
  
.insta-head {
    font-family: var(--font-body);
    font-size: clamp(56px, 7vw, 96px);
    color: var(--text);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
  /* 좋아요 개수 */
.SocialProof a{display: none !important;}
.insta-head .acc {
    background: linear-gradient(135deg, var(--magenta-wine), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
  
.insta-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-sub);
    margin-bottom: 32px;
    max-width: 420px;
}
  
.insta-desc strong {
    color: var(--text);
    font-weight: 600;
}
  

  /* CTA 버튼 */
.insta-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #fa7e1e 0%, #d62976 50%, #962fbf 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(214, 41, 118, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
  
.insta-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d62976 0%, #962fbf 50%, #4f5bd5 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
  
.insta-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(214, 41, 118, 0.45);
}
  
.insta-cta:hover::before {
    opacity: 1;
}
  
.insta-cta > * {
    position: relative;
    z-index: 1;
}
  
.insta-cta-arrow {
    transition: transform 0.3s;
}
  
.insta-cta:hover .insta-cta-arrow {
    transform: translateX(4px);
}



  
  /* =====================================
     VISIT
     ===================================== */
.visit {
    padding: 120px var(--pad-x);
    background: var(--sky);
}
  
.visit-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
  
.visit-head {
    margin-bottom: 56px;
}
  
.visit-head h2 {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 112px);
    line-height: 0.9;
    color: var(--deep);
    margin-top: 16px;
    margin-bottom: 12px;
}
  
.visit-head p {
    font-size: 18px;
    color: var(--text-sub);
}
  
.visit-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: stretch;
}

/*Brewries*/
.brewery {
  padding: 120px var(--pad-x);
  background: linear-gradient(180deg, var(--lavender) 0%, var(--cream) 25%, var(--base) 60%);
  overflow: hidden;
}

.brewery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.brewery-head {
  text-align: center;
  margin-bottom: 60px;
}

.brewery-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--magenta-wine);
  margin-bottom: 14px;
}

.brewery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.brewery-desc {
  font-size: 16px;
  color: var(--text-sub);
  margin: 0;
}

.brewery-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-sub);
}

/* ============ 마퀴 ============ */
.marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  /* 좌우 fade out 효과 */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}

/* 좌→우 흐름 */
.marquee-ltr .marquee-track {
  animation: marquee-ltr 70s linear infinite;
}

/* 우→좌 흐름 */
.marquee-rtl .marquee-track {
  animation: marquee-rtl 70s linear infinite;
}

@keyframes marquee-ltr {
  0%   { transform: translateX(-75%); }  /* 1/6 = 16.66%, 5/6 = 83.33% */
  100% { transform: translateX(0); }
}

@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-75%); }
}

/* 호버 시 일시정지 */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ============ 맥주 아이템 (박스 형태) ============ */
.beer-item {
  flex: 0 0 auto;
  width: 200px;
  height: 110px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--line, #e8e2da);
  border-radius: var(--radius-lg, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.beer-item:hover {
  transform: translateY(-4px);
  border-color: var(--magenta-wine);
  box-shadow: 0 8px 24px rgba(168, 55, 124, 0.12);
}

.beer-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brewery-foot {
  text-align: center;
  margin-top: 40px;
}

.visit .img-ph.dark{background: inherit;}

.map-container {  /* 본인 다크블루 영역 클래스명 */
  padding: 20px;  /* 액자 두께 조정 */
}

.root_daum_roughmap,
.root_daum_roughmap .wrap_map {
  width: 100% !important;
  max-width: 100% !important;
}

.root_daum_roughmap .wrap_map {
  height: 500px !important;  /* 본인 원하는 높이 */
}



.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background: #cbd9e4;
    min-height: 480px;
}
  
.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.map-pin {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--coral);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(255, 90, 95, 0.4);
    white-space: nowrap;
}
  
.map-pin::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--coral);
}
  
.transport {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
  
.transport-item {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
    border: 1px solid transparent;
}
  
.transport-item:hover {
    border-color: var(--primary-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
  
.transport-icon {
    width: 48px;
    height: 48px;
    background: var(--sky);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
  
.transport-text {
    flex: 1;
}
  
.transport-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}
  
.transport-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
  
.transport-desc {
    font-size: 13px;
    color: var(--text-sub);
}
  
.visit-cta {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
  
.visit-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
  
.visit-cta a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface);
}
  
  /* =====================================
     SPONSOR
     ===================================== */
.sponsor {
    padding: 100px var(--pad-x) 140px;
    /* 푸터(다크)로 자연스럽게 어두워짐 */
    background: linear-gradient(180deg,
      var(--base) 0%,
      var(--cream) 40%,
      var(--lavender) 80%,
      var(--peach) 100%
    );
    position: relative;
}
  
.sponsor-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
  
.sponsor-head {
    text-align: center;
    margin-bottom: 56px;
}
  
.sponsor-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text);
    margin-top: 8px;
}
  
.sponsor-tier {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
  
.sponsor-tier:last-child { border-bottom: none; }
  
.sponsor-tier-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}
  
.sponsor-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
  
.sponsor-logo {
    height: 56px;
    min-width: 120px;
    padding: 0 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    transition: all 0.3s;
}
  
.sponsor-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* 임시 스폰서 */
.o_sponsor {
    padding: 100px var(--pad-x) 120px;
    background: linear-gradient(180deg, var(--base) 0%, var(--cream) 40%, var(--lavender) 80%, var(--peach) 100%);
}

    .o_sponsor-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.o_sponsor-head {
    text-align: center;
    margin-bottom: 56px;
}

.o_sponsor-head h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    color: var(--text);
    margin-top: 16px;
    letter-spacing: 0.01em;
}

/* === 카드 그리드 - 중앙 정렬 + 확장 가능 === */
.o_sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* 중앙 정렬 - 2개여도 안 휑함 */
    gap: 24px;
    max-width: 900px;          /* 적은 개수일 때 너무 퍼지지 않게 */
    margin: 0 auto;
}

/* 카드 1개 */
.o_sponsor-card {
    flex: 1 1 360px;           /* 최소 360px, 공간 나면 늘어남 */
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 16px rgba(0, 61, 122, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.o_sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(168, 55, 124, 0.1);
}

/* 카드 라벨 (HOST / OPERATION) */
.o_sponsor-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--magenta-wine);
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(168, 55, 124, 0.07);
    border-radius: 100px;
}

/* 로고 영역 */
.o_sponsor-logo {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.o_sponsor-logo img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

/* 로고 placeholder (이미지 없을 때) */
.o_sponsor-logo-ph {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    padding: 24px 32px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

/* 선택: 카드 설명 (스폰서 한 줄 소개) */
.o_sponsor-card-desc {
    font-size: 13px;
    color: var(--text-sub);
    text-align: center;
    margin-top: -8px;
}

@media (min-width: 1921px) {
    .hero{justify-content: center;}
}
@media (max-width: 900px) {
    .hero-meta {font-size: 11px;}
    .hero-logo{max-width: 420px;}
    .gallery { padding: 80px var(--pad-x); }
    /* 모바일: 영상 위, 사진 아래 */
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
/* 모바일에선 사진 영역 absolute 해제하고 고정 높이 */
    .gallery-photos-col .gallery-photos {position: relative; inset: auto; aspect-ratio: 6 / 3.7;}
    .gallery-photos-scroll {height: 420px;}
    .g_lightbox-prev { left: 12px; }
    .g_lightbox-next { right: 12px; }
    .g_lightbox-nav { width: 44px; height: 44px; }
    .about-grid{grid-template-columns: 1fr;}
    .gallery-grid {grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px);}
    .gallery-main {grid-row: 1; grid-column: 1 / 3;}
    .visit-grid { grid-template-columns: 1fr; }


    .about{padding: 77px var(--pad-x);}
    .about-card-img{aspect-ratio: 4 / 2;}
    .about-card-num{font-size: 48px; margin-bottom: 0;}
    .about-card-title{margin-bottom: 5px;}

    .program{padding: 78px var(--pad-x);}
    .zone-content{padding: 16px 10px;}
    .zone-tag{margin-bottom: 0;}
    .zone-title{margin-bottom: 0;}


    .insta {padding: 80px var(--pad-x);}
    .insta-grid {gap: 18px;}
    .insta-content {padding: 0; text-align: center;}
    .insta-desc {max-width: 100%;}
    .insta-stats {margin-left: auto; margin-right: auto;}
    .insta-handle,
    .insta-cta {align-self: center;}
    .insta-embed-slot{min-height: inherit;}

    .visit{padding: 78px var(--pad-x);}
    .brewery { padding: 80px var(--pad-x); }
    .brewery-head { margin-bottom: 40px; }

    .beer-item {width: 140px; height: 90px; padding: 14px;}

    .marquee-track {gap: 16px;}

    .marquee-ltr .marquee-track,
    .marquee-rtl .marquee-track {animation-duration: 30s;}

    .o_sponsor{padding:78px var(--pad-x) 120px;}
    .o_sponsor-grid{flex-wrap: inherit;}

    .carousel-thumbs { grid-template-columns: repeat(3, 1fr); }
    .carousel-arrow { width: 40px; height: 40px; }
    .slide-content { padding: 32px 24px; }
}
  

@media (max-width: 768px) {
    .o_sponsor {padding: 64px var(--pad-x) 80px;}
    .o_sponsor-grid {gap: 16px; }
    .o_sponsor-card {flex: 1 1 100%; padding: 28px 24px;}
    .blur-card {flex: 0 0 180px; height: 240px;}
    .lock-icon {width: 60px; height: 60px; font-size: 26px;}
}


@media (max-width: 700px) {
  .lineup-tab {
    padding: 10px 16px;
    font-size: 15px;
  }
  .hero-meta{font-size: 10px;}
  .hero-logo{max-width: 360px;}
  .info-value{font-size: 16px;}

  .lineup{padding: 74px var(--pad-x);}
  .zones{grid-template-columns: 1fr;}
  
  .insta-grid {grid-template-columns: 1fr;}
  .insta-card-wrap {order: 2;} 
  .insta-content {order: 1;}
  
}


@media (max-width: 640px) {
    .timer{gap: 7px;}
    .about-head-left .display-text{font-size: clamp(50px, 8vw, 112px);;}
}
@media (max-width: 560px) {
    .video-label {font-size: 22px;}
    .play-btn {width: 64px; height: 64px; font-size: 22px;}

    .hero-meta{display: none;}
    .hero-logo{max-width: 320px;}
    .btn-primary, .btn-ghost{padding: 10px 25px; font-size: 12px;}
    .hero{justify-content: space-around;}
    
    .countdown-head{font-size: 35px; font-family: var(--font-body);}

    .about-head-left .display-text{font-family: var(--font-body);}
    .about-card-num{font-size: 30px;}
    .about-card-title{font-size: 25px;}
    .about-card{padding: 25px;}
    .about::before{font-size: 220px; right: 0;}
    .about-head{margin-bottom: 50px;}

    .program-head{margin-bottom: 50px;}
    .program-head h2{font-family: var(--font-body); font-size: 45px;}

    .gallery-head h2{font-family: var(--font-body); font-size: 45px;}

    .insta-head{font-size: 44px;}
    .insta-handle{font-size: 11px;}
    .insta::after{font-size: 120px; bottom: -20px; left: 0;}
    .visit-head h2{font-family: var(--font-body); font-size: 45px;}

    .slide-tag{font-size: 9px; padding: 3px 9px;}
    .slide-name{font-size: 34px;}
    .slide-name{margin-bottom: 5px;}
    .carousel-arrow.prev{left: 0;}
    .carousel-arrow.next{right: 0;}
    .carousel-counter{top: 13px; right: 13px; font-size: 10px;}

}
@media (max-width: 480px) {
    .countdown-head{font-size: 32px;}
    .countdown-sub{font-size: 14px; margin-bottom: 30px;}
    .countdown{padding: 70px 10px 58px;}
    .timer-num{font-size: 46px; margin-bottom: 2px;}
    .countdown-quote{font-size: 16px;}

    .about{padding: 55px var(--pad-x);}
    .about-head{margin-bottom: 25px;}
    .about-head-left .display-text{font-size: 40px;}
    .about-head-right{font-size: 15px;}
    .eyebrow{font-size: 10px;}
    .about-card-num{font-size: 25px;}
    .about-card-title{font-size: 20px; margin-bottom: 0;}

    .program-head h2{font-size: 40px;}
    .program{padding: 55px var(--pad-x);}
    .gallery-head h2{font-size: 40px;}
    .play-btn{width: 40px; height: 40px; font-size: 17px;}
    .video-badge{font-size: 10px; padding: 6px 10px;}

    .insta{padding: 60px var(--pad-x);}
    .insta-desc{font-size: 15px;}
    .insta-cta{padding: 10px 20px; font-size: 14px;}

    .visit-head h2{font-size: 37px;}
    .visit-head p{font-size: 15px;}
    .visit-head{margin-bottom: 30px;}

    .o_sponsor-card{padding: 14px 13px; gap: 0;}
    .o_sponsor-head h2{font-size: 40px;}

    .slide-content{padding: 12px;}

}
@media (max-width: 381px) {
    .about-head-left .display-text{font-size: 34px;}
    .about-head-right{font-size: 13px;}
    .about-card-num{font-size: 20px;}
    .about-card-title{font-size: 18px;}
    .about-card-desc{font-size: 13px;}
    .about-card{padding: 18px 12px;}

    .program{padding: 40px 16px;}
    .program-head{margin-bottom: 30px;}
    .program-head h2{font-size: 35px;}
    .zone-title{font-size: 28px;}
    .zone-tag{font-size: 10px;}
    .zone-desc{font-size: 12px;}

    .brewery{padding: 40px var(--pad-x);}
    .brewery-head h2{font-size: 45px;}
    .brewery-head .eyebrow{font-size: 10px;}

    .insta-head{font-size: 38px;}

    .slide-name{font-size: 29px;}
    .carousel-counter{padding: 4px 9px;}

}

@media (max-width: 361px) {


}