:root {
  --c-primary: #005a36;
  --c-primary-light: #36ad37;
  --c-primary-dark: #003d24;
  --c-accent: #d4a574;

  --c-bg: #ffffff;
  --c-bg-soft: #f7f7f3;
  --c-bg-dark: #111815;
  --c-surface: #ffffff;
  --c-surface-alt: #f3f3f0;
  --c-border: #e6e6e2;
  --c-border-strong: #cccac4;

  --c-text: #1a1a1a;
  --c-text-soft: #595959;
  --c-text-muted: #8a8a8a;

  /* NanumSquareNeo 기본 적용 */
  --ff-base: "NanumSquareNeo", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ff-display: "NanumSquareNeo", sans-serif;

  --fs-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.78rem + 0.18vw, 0.875rem);
  --fs-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --fs-md: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1.05rem + 0.45vw, 1.375rem);
  --fs-xl: clamp(1.375rem, 1.2rem + 0.85vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.45rem + 1.4vw, 2.5rem);
  --fs-3xl: clamp(2.25rem, 1.75rem + 2.2vw, 3.5rem);
  --fs-4xl: clamp(2.75rem, 2.1rem + 3vw, 4.5rem);
  --fs-5xl: clamp(3.25rem, 2.4rem + 4.2vw, 6rem);
  --fs-6xl: clamp(6rem, 2.4rem + 4.2vw, 12rem);

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-base: 1.55;
  --lh-loose: 1.75;

  --tr-tight: -0.02em;
  --tr-snug: -0.01em;
  --tr-base: 0;
  --tr-wide: 0.04em;
  --tr-wider: 0.12em;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-py: clamp(4rem, 8vw, 8rem);
  --sidebar-w: 240px;
  --mobile-bar-h: 60px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 32px rgba(0, 90, 54, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --d-fast: 180ms;
  --d-base: 320ms;
  --d-slow: 600ms;

  --z-aside: 30;
  --z-mobile-bar: 40;
  --z-backdrop: 50;
  --z-header: 60;
  --z-floating: 70;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--ff-base); font-size: var(--fs-base); line-height: var(--lh-base); color: var(--c-text); background: var(--c-bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; word-break: keep-all; }
body.is-locked { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; transition: color var(--d-fast) var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: var(--lh-tight); letter-spacing: var(--tr-snug); }
p { margin: 0; }
iframe { border: 0; }

.skip-link { position: absolute; top: -100px; left: var(--s-4); padding: var(--s-2) var(--s-4); background: var(--c-primary); color: #fff; z-index: 1000; border-radius: var(--radius-sm); transition: top var(--d-fast) var(--ease); }
.skip-link:focus { top: var(--s-4); }
:focus-visible { outline: 2px solid var(--c-primary-light); outline-offset: 3px; border-radius: 2px; }

/* HEADER */
.site-header { position: fixed; inset: 0 auto 0 0; width: min(82vw, 320px); max-width: 320px; height: 100dvh; background: var(--c-surface); z-index: var(--z-header); transform: translateX(-100%); transition: transform var(--d-base) var(--ease-out); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; box-shadow: var(--shadow-md); }
.site-header.is-open { transform: translateX(0); }
.site-header__inner { padding: var(--s-10) var(--s-6) var(--s-8); display: flex; flex-direction: column; min-height: 100%; }
.site-header__logo { display: block; margin: 0 auto var(--s-6); }
.site-header__logo img { height: clamp(80px, 14vw, 120px); width: auto; margin: 0 auto; }
.lang-switch { display: flex; justify-content: center; gap: 2px; margin-bottom: var(--s-8); }
.lang-switch__btn { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 32px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--tr-wide); color: var(--c-text-soft); background: var(--c-surface-alt); border-radius: var(--radius-sm); }
.lang-switch__btn.is-active { background: var(--c-primary); color: #fff; }

.site-nav { flex: 1; }
.site-nav__list { display: flex; flex-direction: column; }
.site-nav__item { border-bottom: 1px solid var(--c-border); }

.site-nav__link { display: flex; align-items: center; width: 100%; padding: var(--s-4) var(--s-2); font-size: 1rem; font-weight: 700; color: var(--c-text); text-align: left; cursor: pointer; position: relative; transition: color var(--d-fast) var(--ease); }
.site-nav__link::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); margin-left: auto; margin-right: 4px; opacity: 0.4; transition: transform var(--d-base) var(--ease), opacity var(--d-fast) var(--ease); }
.site-nav__item.is-open .site-nav__link { color: var(--c-primary); }
.site-nav__item.is-open .site-nav__link::after { transform: rotate(45deg); opacity: 1; }
.site-nav__link:hover { color: var(--c-primary); }

.site-nav__sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-out); }
.site-nav__sub > ul { overflow: hidden; opacity: 0; transition: opacity 0.3s var(--ease); }
.site-nav__item.is-open .site-nav__sub { grid-template-rows: 1fr; }
.site-nav__item.is-open .site-nav__sub > ul { opacity: 1; padding-bottom: var(--s-4); }
.site-nav__sub a { display: block; padding: var(--s-2) var(--s-2); padding-left: var(--s-4); font-size: 0.95rem; font-weight: 500; color: var(--c-text-soft); }
.site-nav__sub a:hover { color: var(--c-primary); }

/* Social */
.site-social { display: flex; gap: var(--s-2); margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--c-border); }
.site-social a { display: block; width: 40px; height: 40px; border-radius: var(--radius-sm); overflow: hidden; transition: transform var(--d-fast) var(--ease); }
.site-social a:hover { transform: translateY(-2px); }
.site-social img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile Bar */
.mobile-bar { position: fixed; top: 0; left: 0; right: 0; height: var(--mobile-bar-h); background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: var(--z-mobile-bar); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--s-4); border-bottom: 1px solid var(--c-border); }
.mobile-bar__logo img { height: 36px; width: auto; }
.hamburger { width: 44px; height: 44px; position: relative; display: inline-flex; align-items: center; justify-content: center; }
.hamburger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform var(--d-base) var(--ease), opacity var(--d-fast) var(--ease), top var(--d-base) var(--ease); }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Backdrop */
.menu-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); opacity: 0; pointer-events: none; transition: opacity var(--d-base) var(--ease); z-index: var(--z-backdrop); }
.menu-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* Floating CTA (기본적으로 모바일에서 숨김) */
.floating-cta { display: none; position: fixed; right: var(--s-4); bottom: var(--s-4); z-index: var(--z-floating); align-items: center; gap: var(--s-2); padding: var(--s-3) var(--s-5); background: var(--c-primary); color: #fff; font-size: var(--fs-sm); font-weight: 600; border-radius: var(--radius-pill); box-shadow: var(--shadow-glow); transform: translateY(120%); transition: transform var(--d-slow) var(--ease-out), background-color var(--d-fast) var(--ease); }
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta:hover { background: var(--c-primary-dark); }

.site-main { padding-top: 0; }
.site-main section { position: relative; }

/* ---------- Hero Intro ---------- */
.hero-intro { height: 100vh; height: 100dvh; min-height: 600px; display: flex; align-items: center; justify-content: center; background: var(--c-bg); position: relative; overflow: hidden; top: -50px;}
.hero-intro::before, .hero-intro::after { content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.hero-intro::before { width: 480px; height: 480px; background: radial-gradient(circle, rgba(54, 173, 55, 0.18), transparent 70%); top: -120px; left: -120px; }
.hero-intro::after { width: 600px; height: 600px; background: #fff }
.hero-intro__inner { text-align: center; padding: 0 var(--gutter); position: relative; z-index: 2; }
.hero-intro__title { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.1rem, 0.8rem + 2.2vw, 2.25rem); line-height: var(--lh-tight); letter-spacing: var(--tr-tight); display: flex; flex-direction: column; gap: var(--s-2); }
.hero-intro__title .line { display: inline-block; position: relative; min-height: 1em; white-space: nowrap; }
.hero-intro__title .line-2 { color: var(--c-primary-light); font-size: clamp(2.5rem, 1.6rem + 6vw, 7rem); letter-spacing: var(--tr-tight); margin-top: 15px; }
.hero-intro__title .line.is-typing::after { content: ""; display: inline-block; width: 2px; height: 0.9em; background: currentColor; margin-left: 4px; vertical-align: text-bottom; animation: caretBlink 0.7s steps(2) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }

.scroll-indicator { position: absolute; bottom: -25vh; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: var(--s-3); color: var(--c-text); font-size: var(--fs-xs); font-weight: 500; letter-spacing: var(--tr-wider); opacity: 0; animation: fadeUp 5s var(--ease-out) 2.5s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 0.9; transform: translateX(-50%) translateY(0); } }
.scroll-indicator__mouse { width: 24px; height: 38px; border: 1.5px solid currentColor; border-radius: 12px; position: relative; }
.scroll-indicator__mouse .dot { position: absolute; left: 50%; top: 8px; width: 4px; height: 4px; background: currentColor; border-radius: 50%; margin-left: -2px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Visual Slider ---------- */
.visual { width: 100%; height: 100vh; height: 100dvh; min-height: 520px; position: relative; overflow: hidden; }
.visual__swiper, .visual__swiper .swiper-wrapper, .visual__slide { width: 100%; height: 100%; }
.visual__slide { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.visual__bg { position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center top 25%; transform: scale(1.05); transition: transform 3s var(--ease-out); }
.visual__slide.swiper-slide-active .visual__bg { transform: scale(1.1); }
.visual__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%); pointer-events: none; }

.visual__content { position: relative; z-index: 2; width: 100%; height: 100%; padding: var(--gutter); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; }
/* 모바일 제품 로고 숨김 (데스크탑에서만 노출) */
.visual__brand { display: none; margin: 0 auto var(--s-6); height: 56px; width: auto; opacity: 0.9; }
.visual__caption { font-size: var(--fs-2xl); font-weight: 500; margin-bottom: var(--s-4); opacity: 0; transform: translateY(20px); transition: all 0.8s var(--ease-out) 0.3s; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); }
.visual__title { font-size: var(--fs-6xl); font-weight: 900; line-height: 1; letter-spacing: var(--tr-tight); opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out) 0.5s; text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }
.visual__slide.swiper-slide-active .visual__caption, .visual__slide.swiper-slide-active .visual__title { opacity: 1; transform: translateY(0); }

.visual__progress { position: absolute; bottom: var(--s-16); right: var(--s-16); width: 56px; height: 56px; z-index: 5; scale: 1.5;}
.visual__progress svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.visual__progress circle { fill: none; stroke: rgba(255, 255, 255, 0.95); stroke-width: 2.5; stroke-dasharray: 125.6; stroke-dashoffset: calc(125.6 * (1 - var(--progress, 0))); transition: stroke-dashoffset 0.05s linear; }
.visual__progress span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: var(--fs-xs); font-weight: 700; color: #fff; }
.visual__pagination { position: absolute; bottom: var(--s-10)!important; left: var(--s-12) !important; display: flex; gap: var(--s-2); z-index: 5; }
.visual__pagination .swiper-pagination-bullet { width: 28px; height: 5px; border-radius: 0; background: rgba(255, 255, 255, 0.4); opacity: 1; transition: background var(--d-base) var(--ease); }
.visual__pagination .swiper-pagination-bullet-active { background: #fff; width: 48px; }

/* ==========================================================================
   Lineup Section — Premium Cinematic Solution Showcase
   ========================================================================== */
.lineup {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0a0a0a;
  isolation: isolate;
}

.lineup__bgs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.lineup__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1s var(--ease-out), transform 8s linear; will-change: opacity, transform; }
.lineup__bg.is-active { opacity: 1; transform: scale(1); }
.lineup__bgs::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.4) 100%), linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%); z-index: 1; }

.lineup__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--section-py) var(--gutter);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}

.lineup__header { max-width: 720px; }
.lineup__eyebrow { display: inline-flex; align-items: center; gap: var(--s-3); font-size: var(--fs-xs); font-weight: 700; color: var(--c-primary-light); letter-spacing: var(--tr-wider); text-transform: uppercase; margin-bottom: var(--s-4); }
.lineup__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--c-primary-light); }
.lineup__title { font-size: var(--fs-4xl); font-weight: 800; margin-bottom: var(--s-5); line-height: var(--lh-tight); letter-spacing: var(--tr-tight); }
.lineup__desc { font-size: var(--fs-md); color: rgba(255,255,255,0.8); line-height: var(--lh-loose); }

.lineup__body { position: relative; display: flex; flex-direction: column; gap: var(--s-8); }
.lineup__badge { display: none; }

/* 모바일 탭 2x2 그리드 배열 */
.lineup__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  width: 100%;
  position: relative;
}
.lineup__tabs::before{
  content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3);
  position: absolute;
  border-radius: var(--radius-sm); /* 둥근 버튼 유지 */
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(10px);
}
.lineup__tabs li {
  display: flex; /* 버튼을 가득 채우기 위해 */
  padding: var(--s-2) var(--s-3);
}
.lineup__tab {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* 텍스트 중앙 정렬 */
  gap: var(--s-1);
  padding: var(--s-3) var(--s-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill); /* 둥근 버튼 유지 */
  color: #fff;
  font-size: clamp(0.85rem, 3vw, 1rem); /* 좁은 모바일 화면 대응 폰트 축소 */
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--d-base) var(--ease), border-color var(--d-base) var(--ease), color var(--d-base) var(--ease);
}
.lineup__tab-num { font-size: 0.72em; font-weight: 600; opacity: 0.65; letter-spacing: var(--tr-wide); display: none; /* 모바일 그리드에서는 번호 숨김 처리하여 공간 확보 */ }
.lineup__tab-arrow { display: none; /* 모바일 화살표 숨김 */ }
.lineup__tab:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }
.lineup__tab.is-active { background: var(--c-primary-light); border-color: var(--c-primary-light); color: #fff; z-index: 10;}

.lineup__cards { position: relative; width: 100%; }
.lineup__card { display: none; background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.15); color: var(--c-text); }
.lineup__card.is-active { display: block; animation: lineupCardIn 0.7s var(--ease-out); }
@keyframes lineupCardIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.lineup__card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #f7f7f3 0%, #e6e6e2 100%); }
.lineup__card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.2s var(--ease-out); }
.lineup__card.is-active .lineup__card-media img { animation: lineupKenBurns 10s ease-out forwards; }
@keyframes lineupKenBurns { from { transform: scale(1.1); } to { transform: scale(1); } }

.lineup__card-info { padding: var(--s-8) var(--s-6) var(--s-6); }
.lineup__card-brand { display: inline-block; font-size: var(--fs-xs); font-weight: 800; color: var(--c-primary); letter-spacing: var(--tr-wider); text-transform: uppercase; margin-bottom: var(--s-3); position: relative; padding-left: 24px; }
.lineup__card-brand::before { content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 1px; background: var(--c-primary); }
.lineup__card-title { font-size: var(--fs-3xl); font-weight: 800; line-height: var(--lh-tight); letter-spacing: var(--tr-tight); color: var(--c-text); margin-bottom: var(--s-3); }
.lineup__card-desc { font-size: var(--fs-md); color: var(--c-text-soft); line-height: var(--lh-snug); margin-bottom: var(--s-6); }

/* 제품 리스트 호버 이펙트 교체 로직 적용 */
.lineup__card-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); margin-bottom: var(--s-6); }
.lineup__card-products li a { display: flex; align-items: center; justify-content: center; padding: var(--s-3) var(--s-2); background: var(--c-surface-alt); border-radius: var(--radius-md); font-size: var(--fs-sm); font-weight: 700; color: var(--c-text); min-height: 52px; text-align: center; line-height: 1.3; transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease), transform var(--d-fast) var(--ease); }

/* 기본적으로 켜져있는 효과 */
.lineup__card-products li a.is-active { background: var(--c-primary); color: #fff; }

/* 부모 영역에 마우스가 올라가면 켜져 있던 효과 끄기 */
.lineup__card-products:hover li a.is-active { background: var(--c-surface-alt); color: var(--c-text); }

/* 현재 마우스가 위치한 곳에만 색상 부여 */
.lineup__card-products li a:hover { background: var(--c-primary) !important; color: #fff !important; transform: translateY(-2px); }

.lineup__card-more { display: none; align-items: center; gap: var(--s-3); position: relative; padding: 14px 22px 14px 28px; background: var(--c-text, #111815); color: #fff; border-radius: var(--radius-pill); font-weight: 700; letter-spacing: var(--tr-wide); overflow: hidden; max-width: 100%; transition: background var(--d-base) var(--ease); }
.lineup__card-more:hover { background: var(--c-primary); }
.lineup__card-more-track { display: inline-flex; align-items: center; gap: 18px; white-space: nowrap; font-size: var(--fs-sm); animation: lineupRibbon 14s linear infinite; }
.lineup__card-more-track > span { display: inline-block; }
@keyframes lineupRibbon { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lineup__card-more-icon { font-size: 18px !important; flex-shrink: 0; transition: transform var(--d-base) var(--ease); }
.lineup__card-more:hover .lineup__card-more-icon { transform: translateX(4px); }

/* ---------- Contact Band ---------- */
.contact-band { position: relative; padding: var(--section-py) 0; overflow: hidden; color: #fff; }
.contact-band__bg { position: absolute; inset: 0; background-image: url('/images/gnbg.jpg'); background-size: cover; background-position: center; z-index: 0; }

.contact-band__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; gap: var(--s-10); align-items: center; text-align: center; }
.contact-band__text { display: flex; flex-direction: column; gap: var(--s-6); align-items: center; width: 100%; }
.contact-band__title { font-size: var(--fs-2xl); font-weight: 700; line-height: var(--lh-snug); letter-spacing: var(--tr-tight); margin-top: 60px; max-width: 600px; word-break: keep-all;}
.contact-band__cta { display: grid; gap: var(--s-3); max-width: 380px; width: 100%; margin-top: 20px; }
.contact-band__cta a { display: flex; align-items: center; justify-content: space-between; padding: var(--s-6) var(--s-12); background: linear-gradient(135deg, rgba(28, 105, 74, 0.1), rgba(255, 255, 255, 0.05)); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: var(--radius-pill); font-size: var(--fs-base); font-weight: 600; color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all var(--d-base) var(--ease); }
.contact-band__cta a:hover { background: linear-gradient(135deg, rgba(54, 173, 55, 0.5), rgba(255, 255, 255, 0.1)); transform: translateY(-2px); }
.contact-band__cta .material-icons { font-size: 16px; }

.contact-band__info-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px); padding: var(--s-8); border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.9); text-align: left; width: 100%; max-width: 480px; }
.contact-band__label { font-size: var(--fs-sm); font-weight: 600; opacity: 0.85; letter-spacing: var(--tr-wide); margin-bottom: var(--s-2); }
.contact-band__phone { display: block; font-size: var(--fs-3xl); font-weight: 800; letter-spacing: var(--tr-tight); color: #fff; margin-bottom: var(--s-4); }
.contact-band__dl { display: grid; gap: var(--s-1); margin-bottom: var(--s-6); }
.contact-band__dl > div { display: flex; gap: var(--s-3); font-size: var(--fs-sm); }
.contact-band__dl dt { font-weight: 600; opacity: 0.85; min-width: 50px; }
.contact-band__hours { display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-4); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.contact-band__hours .material-icons { font-size: 32px; flex-shrink: 0; }
.contact-band__hours p { font-size: var(--fs-sm); line-height: var(--lh-snug); }

/* ---------- Products Section ---------- */
.products { padding: var(--section-py) 0; background: var(--c-surface-alt); }
.products__inner { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.products__header { text-align: center; margin-bottom: var(--s-10); }
.products__eyebrow { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--tr-wider); color: var(--c-primary-light); margin-bottom: var(--s-3); }
.products__title { font-size: var(--fs-3xl); font-weight: 600; letter-spacing: var(--tr-tight); }
.products__tabs { display: flex; justify-content: center; gap: var(--s-3); margin-bottom: var(--s-10); }
.products__tab { padding: var(--s-3) var(--s-8); background: var(--c-surface); border-radius: var(--radius-pill); font-size: var(--fs-base); font-weight: 600; color: var(--c-text-soft); transition: all var(--d-base) var(--ease); border: 1px solid transparent; }
.products__tab:hover { color: var(--c-primary); }
.products__tab.is-active { background: var(--c-primary-light); color: #fff; }

.products__panel { display: none; position: relative; }
.products__panel.is-active { display: block; }
.products__swiper { padding: var(--s-4) 0; }

.product-card { background: var(--c-surface); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--d-base) var(--ease); height: auto !important; align-self: stretch; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__link { display: flex; flex-direction: column; height: 100%; padding: var(--s-6); }
.product-card__img { width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-md); background: var(--c-surface-alt); margin-bottom: var(--s-5); flex: 1; }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease-out); }
.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-2); }
.product-card__text { flex: 1; }
.product-card__title { font-size: 1.5rem; font-weight: 800; margin-bottom: var(--s-3); letter-spacing: var(--tr-tight); }
.product-card__features { display: flex; flex-direction: column; gap: var(--s-1); }
.product-card__features li { position: relative; padding-left: var(--s-4); font-size: 0.95rem; color: var(--c-text-soft); }
.product-card__features li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; background: var(--c-primary-light); border-radius: 50%; opacity: 0.85; }

.product-card__action { flex-shrink: 0; }
.btn-detail { display: inline-flex; align-items: center; justify-content: center; padding: 8px 16px; background: var(--c-surface-alt); color: var(--c-text); border-radius: 20px; font-size: 0.85rem; font-weight: 700; transition: all 0.3s; white-space: nowrap; }
.product-card:hover .btn-detail { background: var(--c-primary); color: #fff; }

.products__panel .swiper-button-prev, 
.products__panel .swiper-button-next { position: absolute; top: 50%; width: 48px; height: 48px; background: var(--c-surface); color: var(--c-primary); border-radius: 50%; margin-top: -24px; transition: all var(--d-fast) var(--ease); z-index: 10; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.products__panel .swiper-button-prev::after, .products__panel .swiper-button-next::after { font-size: 20px; font-weight: 900; }
.products__panel .swiper-button-prev:hover, .products__panel .swiper-button-next:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.products__panel .swiper-button-prev { left: 0px; }
.products__panel .swiper-button-next { right: 0px; }

/* ---------- Quote Section ---------- */
.quote { padding: var(--section-py) 0; background: var(--c-bg); text-align: center; }
.quote__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; gap: var(--s-12); }
.quote__text { font-size: clamp(1.15rem, 0.6rem + 2.8vw, 3.5rem); font-weight: 700; line-height: var(--lh-snug); letter-spacing: var(--tr-tight); word-break: keep-all; white-space: nowrap; }
.quote__text em { font-style: normal; color: var(--c-primary-light); font-weight: 800; }
.quote__line { width: 1px; height: 100px; background: linear-gradient(to bottom, var(--c-primary), transparent); display: block; }

/* ---------- Video Section ---------- */
.video { padding: var(--section-py) 0; background: var(--c-bg-dark); }
.video__inner { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.video__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video__cta { position: absolute; top: var(--s-4); right: var(--s-4); display: inline-flex; align-items: center; gap: var(--s-2); padding: var(--s-2) var(--s-4); background: #ff0033; color: #fff; font-size: var(--fs-sm); font-weight: 700; border-radius: var(--radius-md); transition: transform var(--d-fast) var(--ease); z-index: 5; }
.video__cta img { height: 18px; width: auto; }
.video__cta:hover { transform: scale(1.05); }

/* ---------- News Section ---------- */
.news { padding: var(--section-py) 0; background: var(--c-primary-dark); color: #fff; overflow: hidden; }
.news__inner { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.news__header { text-align: center; margin-bottom: var(--s-12); }
.news__eyebrow { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--tr-wider); color: var(--c-primary-light); margin-bottom: var(--s-3); }
.news__title { font-size: var(--fs-3xl); font-weight: 600; margin-bottom: var(--s-3); letter-spacing: var(--tr-tight); }
.news__desc { font-size: var(--fs-md); opacity: 0.8; }
.news__swiper { padding-bottom: var(--s-12); overflow: visible; }
.news-card { border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255, 255, 255, 0.03); height: auto !important; transition: all var(--d-base) var(--ease); }
.news-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.3); }
.news-card a { display: flex; flex-direction: column; height: 100%; color: #fff; }
.news-card__img { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__body { padding: var(--s-6); flex: 1; display: flex; flex-direction: column; }
.news-card__title { font-size: var(--fs-md); font-weight: 700; line-height: var(--lh-snug); margin-bottom: var(--s-3); }
.news-card__desc { font-size: var(--fs-sm); line-height: var(--lh-base); opacity: 0.75; margin-bottom: var(--s-5); flex: 1; }
.news-card__more { display: inline-flex; align-items: center; gap: var(--s-2); padding: var(--s-2) var(--s-4); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: var(--radius-pill); font-size: var(--fs-xs); font-weight: 600; align-self: flex-start; transition: all var(--d-fast) var(--ease); }
.news-card__more .material-icons { font-size: 14px; }
.news-card:hover .news-card__more { background: #fff; color: var(--c-primary-dark); border-color: #fff; }
.news__pagination { position: static !important; margin-top: var(--s-6); display: flex; justify-content: center; gap: var(--s-2); }
.news__pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.3); opacity: 1; border-radius: 50%; transition: all var(--d-fast) var(--ease); }
.news__pagination .swiper-pagination-bullet-active { background: #fff; width: 32px; border-radius: 4px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #1a1f1c; color: #fff; }
.site-footer__inner { max-width: var(--container-wide); margin: 0 auto; padding: var(--s-10) var(--gutter); }
.site-footer__top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--s-5); }
.site-footer__logo img { height: 60px; width: auto; }
.site-footer__info { display: grid; gap: var(--s-2); }
.site-footer__info p { font-size: var(--fs-sm); line-height: var(--lh-loose); opacity: 0.85; word-break: keep-all; }
.site-footer__copy { font-size: var(--fs-xs) !important; opacity: 0.5 !important; letter-spacing: var(--tr-wide); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 640px) {
  .lineup__card-info { padding: var(--s-10) var(--s-8) var(--s-8); }
  .lineup__card-products { gap: var(--s-3); }
}

@media (min-width: 768px) {
  :root { --gutter: clamp(2rem, 5vw, 4rem); }
  .news__swiper .swiper-slide { width: 60% !important; }
}

/* ----- Desktop Layout ----- */
@media (min-width: 1024px) {
  .site-header { transform: translateX(-100%); width: var(--sidebar-w); box-shadow: 1px 0 0 var(--c-border); transition: transform var(--d-slow) var(--ease-out); }
  body.is-header-revealed .site-header { transform: translateX(0); }
  .content-wrapper, .site-footer { padding-left: 0; transition: padding-left var(--d-slow) var(--ease-out); }
  body.is-header-revealed .content-wrapper, body.is-header-revealed .site-footer { padding-left: var(--sidebar-w); }

  .site-header__inner { padding: var(--s-8) var(--s-5); }
  .mobile-bar, .menu-backdrop { display: none !important; }
  .site-nav__link { font-size: 1.05rem; padding: var(--s-4) var(--s-2); }
  .site-header__logo img { height: 100px; }
  
  /* 데스크탑 전용 노출 요소 복원 */
  .visual__brand { display: block; margin: 0 auto var(--s-6); height: 72px; position: absolute; left: var(--s-10); top: var(--s-6); }
  .floating-cta { display: inline-flex; right: var(--s-6); bottom: var(--s-2); padding: var(--s-4) var(--s-6); font-size: var(--fs-base); }

  /* ---- Lineup Section: Cinematic Two-Column Layout ---- */
  .lineup__inner { gap: var(--s-12); padding: var(--s-24) var(--gutter); }
  .lineup__header { max-width: 820px; }
  .lineup__title { font-size: var(--fs-5xl); }

  .lineup__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
    gap: var(--s-16);
    align-items: start;
  }

  .lineup__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 124px;
    height: 124px;
    background-color: var(--c-primary);
    border: 6px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    z-index: 3;
    right: calc(440px - 50px);
    top: -40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    pointer-events: none;
  }
  @media (min-width: 1280px) {
    .lineup__badge { right: calc(520px - 60px); width: 144px; height: 144px; top: -50px; }
  }
  .lineup__badge svg { width: 100%; height: 100%; }
  .lineup__badge .rotating-text-group { animation: rotateGroup 15s linear infinite; transform-origin: center center; }
  .lineup__badge .circular-text { font-size: 0.65rem; font-weight: 600; fill: #ffffff; letter-spacing: 0.1em; }

  /* 탭 설정 리셋 (데스크탑 세로 배치용) */
  .lineup__tabs {
    display: flex; /* 그리드 해제 후 세로 정렬 적용 */
    width: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding-bottom: 0;
  }
  .lineup__tab {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: var(--s-5) 0;
    font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: var(--tr-tight);
    opacity: 0.42;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 100%;
    justify-content: flex-start;
    gap: var(--s-4);
    transition: opacity var(--d-base) var(--ease), padding var(--d-base) var(--ease), color var(--d-base) var(--ease);
  }
  .lineup__tab-num {
    display: inline-block; /* 모바일에서 가렸던 번호 다시 노출 */
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: var(--tr-wider);
    margin-right: var(--s-2);
    align-self: flex-start;
    margin-top: 0.6em;
  }
  .lineup__tab-arrow { display: inline-block; /* 화살표 노출 */ margin-left: auto; font-size: 28px !important; color: #fff; }
  .lineup__tab:hover { background: transparent; border-bottom-color: rgba(255,255,255,0.25); opacity: 0.75; padding-left: var(--s-3); }
  .lineup__tab.is-active { background: transparent; border-bottom-color: rgba(255,255,255,0.4); opacity: 1; padding: var(--s-6) 0; color: #fff; }
  .lineup__tab.is-active .lineup__tab-num { color: #fff; }

  .lineup__card-media { aspect-ratio: 16 / 11; }
  .lineup__card-info { padding: var(--s-10) var(--s-10) var(--s-8); }
  .lineup__card-title { font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem); }

  .contact-band__inner { flex-direction: row; justify-content: space-between; align-items: stretch; text-align: left; }
  .contact-band__text { align-items: flex-start; max-width: 50%; }
  .contact-band__info-card { margin-left: auto; max-width: 420px; }
  .contact-band__title { text-align: left; }
  .contact-band__bg { background-attachment: fixed; }

  .products__panel .swiper-button-prev { left: -24px; }
  .products__panel .swiper-button-next { right: -24px; }

  .news__swiper .swiper-slide { width: calc((100% - 64px) / 3) !important; }
  .site-footer__top { flex-direction: row; text-align: left; justify-content: flex-start; gap: var(--s-10); }
}

@keyframes rotateGroup {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (min-width: 1440px) {
  :root { --sidebar-w: 280px; }
  .site-header__logo img { height: 120px; }
  .site-nav__link { font-size: 1.125rem; }
  .lineup__body { grid-template-columns: minmax(0, 1fr) minmax(480px, 560px); gap: var(--s-20); }
}

@media (min-width: 1920px) {
  :root { --gutter: 5rem; --container: 1400px; --container-wide: 1600px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .visual__bg { transform: none !important; }
  .lineup__bg { transform: none !important; }
  .lineup__card-more-track { animation: none !important; }
}

@media print {
  .site-header, .mobile-bar, .floating-cta, .visual, .video, .lineup__badge { display: none !important; }
  .content-wrapper { padding-left: 0 !important; }
}/* ==========================================================================
   [추가 위치] style.css 의 어디든 OK (맨 아래 추가 권장)
   ----------------------------------------------------------------------------
   - .promo        : 메인 모달 (페이지 로드 시 자동 오픈)
   - .promo-mini   : 닫은 뒤 우하단 미니 배지 (다시 열기)
   ========================================================================== */


/* ==========================================================================
   PROMO MODAL — 큰 팝업
   ========================================================================== */
.promo {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}
.promo.is-open {
  display: flex;
  animation: promoFadeIn 0.35s var(--ease-out) both;
}
@keyframes promoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 백드롭 */
.promo__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 12, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

/* 카드 (좌:비주얼 / 우:콘텐츠) */
.promo__card {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: calc(100dvh - 32px);
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;       /* 모바일: 세로 */
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45),
              0 8px 24px rgba(0, 0, 0, 0.2);
  animation: promoZoomIn 0.45s var(--ease-out) both;
}
@keyframes promoZoomIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* 닫기 버튼 */
.promo__close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-text);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform var(--d-fast) var(--ease),
              background var(--d-fast) var(--ease);
}
.promo__close:hover {
  transform: rotate(90deg);
  background: #fff;
}
.promo__close .material-icons { font-size: 22px; }


/* ===== 좌측 비주얼 ===== */
.promo__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.promo.is-open .promo__media img { transform: scale(1.06); }

.promo__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

/* YTN 방송 뱃지 */
.promo__broadcast {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  background: rgba(255, 0, 51, 0.95);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 0, 51, 0.35);
}
.promo__broadcast-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: promoBroadcastPulse 1.6s ease-in-out infinite;
}
@keyframes promoBroadcastPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}


/* ===== 우측 콘텐츠 ===== */
.promo__body {
  padding: var(--s-8) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.promo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-primary-light);
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.promo__eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--c-primary-light);
}

.promo__title {
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: var(--tr-tight);
  color: var(--c-text);
  margin-bottom: var(--s-4);
  word-break: keep-all;
}
.promo__title em {
  font-style: normal;
  color: var(--c-primary);
  position: relative;
  white-space: nowrap;
}
.promo__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 8px;
  background: rgba(54, 173, 55, 0.22);
  z-index: -1;
  border-radius: 2px;
}

.promo__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin-bottom: var(--s-6);
  word-break: keep-all;
}

/* 핵심 포인트 */
.promo__points {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  padding: var(--s-4) var(--s-5);
  background: var(--c-surface-alt);
  border-radius: var(--radius-md);
}
.promo__points li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}
.promo__points-icon {
  font-size: 20px !important;
  color: var(--c-primary);
  flex-shrink: 0;
}

/* CTA */
.promo__actions {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}
.promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--d-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.promo__cta .material-icons { font-size: 18px; }

.promo__cta--primary {
  flex: 1;
  min-width: 0;
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.promo__cta--primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 90, 54, 0.3);
}
.promo__cta--primary:hover .material-icons {
  transform: translateX(3px);
  transition: transform var(--d-fast) var(--ease);
}

.promo__cta--ghost {
  background: transparent;
  color: var(--c-text-soft);
  border: 1px solid var(--c-border);
}
.promo__cta--ghost:hover {
  background: var(--c-surface-alt);
  color: var(--c-text);
}

/* 오늘 하루 보지 않기 */
.promo__hide {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  cursor: pointer;
  user-select: none;
  margin-top: auto;
}
.promo__hide input {
  width: 16px;
  height: 16px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.promo__hide:hover { color: var(--c-text-soft); }


/* ==========================================================================
   PROMO MINI — 닫은 후 우하단 미니 알림
   ========================================================================== */
.promo-mini {
  position: fixed;
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, #ff0033 0%, #d80029 100%);
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(255, 0, 51, 0.35),
              0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform var(--d-base) var(--ease),
              box-shadow var(--d-base) var(--ease);
  animation: promoMiniIn 0.5s var(--ease-out) both;
}
.promo-mini[hidden] { display: none; }

@keyframes promoMiniIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.promo-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 0, 51, 0.45),
              0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-mini__icon {
  font-size: 22px !important;
}

.promo-mini__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}
.promo-mini__text strong {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.promo-mini__text small {
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0.9;
}

/* 펄스 링 */
.promo-mini__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: promoMiniPulse 2s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.6);
}
@keyframes promoMiniPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255, 0, 51, 0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(255, 0, 51, 0); }
  100% { box-shadow: 0 0 0 0   rgba(255, 0, 51, 0); }
}


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

/* ----- 태블릿 이상: 좌우 2분할 ----- */
@media (min-width: 768px) {
  .promo__card {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    max-height: min(640px, calc(100dvh - 32px));
  }
  .promo__media {
    aspect-ratio: auto;
    height: 100%;
  }
  .promo__body {
    padding: var(--s-10) var(--s-8) var(--s-8);
  }
  .promo__title { font-size: 2rem; }
  .promo__br-mobile { display: none; }
}

/* ----- 데스크탑 ----- */
@media (min-width: 1024px) {
  .promo__body {
    padding: var(--s-12) var(--s-10) var(--s-8);
  }
  .promo__title { font-size: 2.15rem; }

  /* 데스크탑에선 좌측 사이드바 헤더 피하기 */
  body.is-header-revealed .promo {
    padding-left: calc(var(--sidebar-w) + var(--s-4));
  }
}

/* ----- 모바일 (좁은 화면 보정) ----- */
@media (max-width: 480px) {
  .promo { padding: 12px; }
  .promo__card { border-radius: var(--radius-lg); }
  .promo__body { padding: var(--s-6) var(--s-5); }

  .promo__title  { font-size: 1.375rem; line-height: 1.3; }
  .promo__desc   { font-size: 0.875rem; }
  .promo__points { padding: var(--s-3) var(--s-4); }
  .promo__points li { font-size: 0.8125rem; }
 
  .promo__broadcast {
    left: var(--s-3);
    bottom: var(--s-3);
    font-size: 0.7rem;
    padding: 6px 10px;

  }

  .promo__actions { flex-direction: column; gap: var(--s-2); }
  .promo__cta { width: 100%; }

  /* 미니 배지: 좁은 화면에선 텍스트 숨기고 동그란 버튼만 */
  .promo-mini {
    padding: 12px;
    gap: 0;
  }
  .promo-mini__text { display: none; }
  .promo-mini__icon { font-size: 24px !important; }

  .hero-intro__title .line {
    font-size: 8vw;
  }
  .hero-intro__title .line-2{
    font-size: 12vw;
  }
  .visual__caption {
    font-size: 4.5vw;
    word-break: keep-all;
  }
  .visual__title {
    font-size: 16vw;
  }
  .visual__progress{
    bottom: var(--s-6); right: var(--s-6);
  }
  .lineup__title{
    font-size: 8vw;
  }
  .lineup__tabs {
    padding: 15px;
  }
  .lineup__tabs li{
      padding: 0;
  }
  .quote__text{
    font-size: 7vw;
  }
}

/* ----- 짧은 화면 (가로 모바일 등) ----- */
@media (max-height: 600px) and (min-width: 768px) {
  .promo__card { max-height: calc(100dvh - 24px); }
  .promo__body { padding: var(--s-6) var(--s-6); }
  .promo__points { padding: var(--s-3) var(--s-4); }
  .promo__points li { font-size: 0.85rem; }
}

/* ----- 스크롤바 깔끔하게 ----- */
.promo__body::-webkit-scrollbar { width: 6px; }
.promo__body::-webkit-scrollbar-track { background: transparent; }
.promo__body::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 3px;
}

/* ----- 모션 감소 환경 ----- */
@media (prefers-reduced-motion: reduce) {
  .promo.is-open,
  .promo__card,
  .promo-mini { animation: none !important; }
  .promo__broadcast-dot,
  .promo-mini__pulse { animation: none !important; }
  .promo.is-open .promo__media img { transform: none !important; }
}
