/* ============================================================
   GENTLEMANIAC — Subculture × Cinematic
   Design system per 웹리뉴얼 기획서 v1.0
   ============================================================ */
:root {
  --base:        #07070A;
  --gold:        #F4A91C;
  --gold-bright: #FFC756;
  --teal:        #34E3C4;
  --surface:     #0B0B10;
  --surface-2:   #13131A;
  --border:      #23232C;
  --border-2:    #2A2A33;
  --img-border:  #565B6B;   /* 이미지 박스 기본 테두리 (쿨 스틸 — 배경 위 가시성용) */
  --img-ring:    rgba(0,0,0,.55); /* 박스 바깥 어두운 분리 링 */
  --text:        #F5F5F7;
  --text-sub:    #9A9AA6;
  --text-faint:  #6E6E78;
  --gnb-h:       72px;
  --maxw:        1280px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(244,169,28,.1), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(52,227,196,.08), transparent 26%),
    linear-gradient(180deg, #07070A 0%, #0A0A0F 48%, #07070A 100%);
  color: var(--text);
  font-family: "Noto Sans KR", "Arial", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .32;
}

body::after {
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.03) 0 1px, transparent 1px 5px);
  opacity: .22;
}

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0B0B10; }
::-webkit-scrollbar-thumb {
  background: #26262F;
  border: 2px solid #0B0B10;
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #000; }

/* ---------- shared display font ---------- */
.section-kicker, .title-tab, .gnb__logo-text,
.title-panel__info h3, .footer__logo {
  font-family: "Space Grotesk", "Oswald", "Noto Sans KR", sans-serif;
  letter-spacing: .04em;
}

.hero__eyebrow, .hero__ticker, .btn, .news-card__date, .hw-section-title, .lang-btn {
  font-family: "Space Mono", "Noto Sans KR", monospace;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 13px 28px;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  border-radius: 0;
  transition: all .25s var(--ease);
  cursor: pointer; white-space: nowrap;
  text-transform: uppercase;
}
.btn--gold {
  background: var(--gold); color: #07070A; border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(244,169,28,.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: rgba(17,17,24,.5); color: var(--text); border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(244,169,28,.08);
  transform: translateY(-2px);
}

/* ============ GNB ============ */
.gnb {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--gnb-h);
  background: rgba(7,7,10,0);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.gnb.is-scrolled {
  background: rgba(7,7,10,.9);
  border-bottom-color: var(--border);
  backdrop-filter: blur(10px);
}
.gnb:has(.gnb__nav a:hover) {
  background: var(--gold);
  border-bottom-color: var(--gold);
  color: #07070A;
  box-shadow: 0 0 34px rgba(244,169,28,.28);
}
.gnb__inner {
  max-width: var(--maxw); height: 100%; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.gnb__logo {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  margin-left: -10px;
  border: 1px solid transparent;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.gnb__logo:hover { border-color: rgba(7,7,10,.35); }
.gnb__logo:hover .gnb__logo-mark,
.gnb:has(.gnb__nav a:hover) .gnb__logo-mark { filter: brightness(0); }
.gnb__logo-mark {
  display: block; width: auto; height: 32px;
  object-fit: contain;
  transition: filter .18s var(--ease);
}
.gnb__logo-text { font-size: 18px; font-weight: 700; }

.gnb__nav { display: flex; gap: 6px; margin-left: 16px; }
.gnb__nav a {
  font-size: 14px; font-weight: 700; letter-spacing: .08em;
  color: var(--text-sub); position: relative; padding: 8px 14px;
  border: 1px solid transparent;
  transition: color .18s, background-color .18s, border-color .18s;
}
.gnb:has(.gnb__nav a:hover) .gnb__logo,
.gnb:has(.gnb__nav a:hover) .gnb__nav a,
.gnb:has(.gnb__nav a:hover) .lang-btn,
.gnb:has(.gnb__nav a:hover) .gnb__lang-sep {
  color: #07070A;
}
.gnb__nav a::after {
  content: ""; position: absolute; left: 8px; right: 8px; bottom: 3px;
  width: auto; height: 1px; background: currentColor;
  opacity: 0; transform: scaleX(.2);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.gnb__nav a:hover {
  color: #07070A;
  background: transparent;
  border-color: transparent;
}
.gnb__nav a:hover::after { opacity: .45; transform: scaleX(1); }

.gnb__right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.gnb__social { display: flex; align-items: center; gap: 16px; }
.gnb__social a { display: flex; align-items: center; color: var(--text-sub); transition: color .2s, transform .2s; }
.gnb__social a:hover { color: var(--gold); transform: translateY(-2px); }

.gnb__lang { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  background: none; border: 1px solid transparent; cursor: pointer;
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  color: var(--text-sub); font-family: inherit;
  transition: color .18s, background-color .18s, border-color .18s; position: relative; padding: 4px 8px;
}
.lang-btn.is-active { color: var(--gold); }
.gnb:has(.gnb__nav a:hover) .lang-btn.is-active { color: #07070A; }
.lang-btn.is-active::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2px; background: var(--gold);
}
.gnb:has(.gnb__nav a:hover) .lang-btn.is-active::after { background: #07070A; }
.lang-btn:hover {
  color: #07070A;
  background: var(--gold);
  border-color: var(--gold);
}
.gnb:has(.gnb__nav a:hover) .gnb__hamburger span { background: #07070A; }
.gnb__lang-sep { color: var(--border); }

.gnb__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.gnb__hamburger span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* ============ HERO (corporate / CI) ============ */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: var(--base); }
.hero--brand {
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; background: #050507;
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.08) contrast(1.1) brightness(.62);
  transform: scale(1.02);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,10,.86) 0%, rgba(7,7,10,.34) 46%, rgba(7,7,10,.9) 100%),
    linear-gradient(180deg, rgba(7,7,10,.58) 0%, rgba(7,7,10,.18) 44%, rgba(7,7,10,.9) 100%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 42%, rgba(244,169,28,.2), transparent 70%),
    radial-gradient(ellipse at 76% 14%, rgba(52,227,196,.14), transparent 42%),
    radial-gradient(ellipse at 50% 120%, rgba(244,169,28,.1), transparent 60%);
}
.hero__grid,
.hero__scanlines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero__grid {
  background-image:
    linear-gradient(rgba(244,169,28,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,169,28,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .26;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 72%);
}
.hero__scanlines {
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 1px, transparent 1px 5px);
  opacity: .28;
}
.hero__corners {
  display: none;
}
.hero__side-label {
  position: absolute;
  top: 50%;
  z-index: 4;
  font-family: "Space Mono", monospace;
  font-size: 10.5px;
  letter-spacing: .34em;
  color: #4D4D57;
  white-space: nowrap;
  pointer-events: none;
}
.hero__side-label--left {
  left: 34px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
}
.hero__side-label--right {
  right: 34px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}
.hero__brand {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0 24px;
  animation: heroRise 1s var(--ease) both;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__eyebrow {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}
.hero__ci {
  width: min(680px, 84vw); height: auto;
  filter: drop-shadow(0 8px 50px rgba(244,169,28,.34));
}
.hero__tagline {
  margin-top: 10px; font-size: clamp(15px, 2vw, 19px); font-weight: 500;
  letter-spacing: .04em; color: var(--text-sub);
}
.hero__cta { margin-top: 52px; display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.hero__cta .btn { padding: 17px 40px; font-size: 16px; }

.hero__scroll {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 68px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .25em; color: var(--text-sub);
}
.hero__scroll-arrow {
  width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-arrow::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 14px;
  background: var(--gold); animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { transform: translateY(-14px);} 100% { transform: translateY(46px);} }

.hero__ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(244,169,28,.45);
  border-bottom: 1px solid rgba(244,169,28,.24);
  background: rgba(7,7,10,.78);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.hero__ticker-track {
  display: inline-flex;
  gap: 34px;
  padding: 13px 0;
  animation: tickerMove 32s linear infinite;
}
.hero__ticker span::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-left: 34px;
  background: var(--teal);
  vertical-align: middle;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION SHARED ============ */
section { position: relative; }
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }
.section-kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .3em; color: var(--gold);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: .75em;
}
.section-kicker::before {
  content: "//";
  color: var(--teal);
  font-family: "Space Mono", monospace;
  letter-spacing: .1em;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -.01em; }

.title-section, .news, .about, .recruit { padding: 110px 0; }
.title-section,
.about {
  background: linear-gradient(180deg, rgba(17,17,24,.18), rgba(7,7,10,.46));
}
.news,
.recruit,
.greeting {
  background:
    linear-gradient(180deg, rgba(7,7,10,.92), rgba(12,12,17,.96)),
    radial-gradient(circle at 12% 0%, rgba(244,169,28,.08), transparent 36%);
}
.recruit::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(244,169,28,.12), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.about,
.greeting,
.news,
.recruit {
  overflow: hidden;
  border-bottom: 1px solid #1B1B22;
}

.section-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  opacity: .68;
  filter: saturate(1.12) contrast(1.03) brightness(1.18);
}

.section-visual::before,
.section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.section-visual::before {
  background:
    radial-gradient(135% 105% at 16% 6%, rgba(7,7,10,.18), rgba(7,7,10,.58) 60%, #07070A 94%),
    linear-gradient(90deg, rgba(7,7,10,.76), rgba(7,7,10,.24), rgba(7,7,10,.82));
}

.section-visual::after {
  background: linear-gradient(180deg, #07070A 0%, transparent 10%, transparent 90%, #07070A 100%);
}

.section-visual--about {
  background-image: url('assets/market-a.jpg');
  background-position: center 38%;
  opacity: .86;
}

.section-visual--news {
  background-image: url('assets/horizon-walker-keyart.png');
  background-position: center 24%;
  opacity: .78;
}

.section-visual--news::before {
  background:
    radial-gradient(135% 105% at 80% 5%, rgba(7,7,10,.16), rgba(7,7,10,.58) 62%, #07070A 94%),
    linear-gradient(90deg, rgba(7,7,10,.82), rgba(7,7,10,.26), rgba(7,7,10,.72));
}

.about .section-head,
.about__inner,
.greeting .section-head,
.greeting__inner,
.news .section-head,
.news__grid,
.recruit .section-head,
.recruit__values,
.recruit__cta {
  position: relative;
  z-index: 1;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ TITLE SECTION (tabs) ============ */
.title-section { overflow: hidden; }
.title-section__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.title-section__bg-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity .8s var(--ease), transform 12s linear;
}
.title-section__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,10,.65) 0%, rgba(7,7,10,.34) 45%, rgba(7,7,10,.74) 100%),
    linear-gradient(90deg, rgba(7,7,10,.86), rgba(7,7,10,.36), rgba(7,7,10,.88));
}
.bg-horizon { background-image: url('assets/horizon-walker-keyart.png'); background-position: center 28%; }
.bg-madaeja { background-image: url('assets/madaeja-01.jpg'); background-position: center 30%; }
.title-section.tab-horizon .bg-horizon { opacity: .32; transform: scale(1); }
.title-section.tab-madaeja .bg-madaeja { opacity: .34; transform: scale(1); }
.title-section .section-head,
.title-section .title-tabs,
.title-section .title-panel { position: relative; z-index: 1; }

.title-tabs {
  max-width: var(--maxw); margin: 38px auto 0; padding: 0 48px;
  display: flex; gap: 4px; border-bottom: 1px solid var(--border);
}
.title-tab {
  background: none; border: none; cursor: pointer;
  font-size: 17px; font-weight: 600; letter-spacing: .05em;
  color: var(--text-sub); padding: 16px 28px; position: relative;
  font-family: "Oswald", sans-serif; transition: color .25s, background-color .25s;
}
.title-tab.is-active { color: var(--text); background: rgba(244,169,28,.06); }
.title-tab::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 3px;
  background: var(--gold); transition: width .3s var(--ease);
}
.title-tab.is-active::after { width: 100%; }

.title-panel {
  display: none;
  max-width: var(--maxw); margin: 0 auto; padding: 48px 48px 0;
  grid-template-columns: 1.35fr 1fr; gap: 56px;
}
.title-panel.is-active { display: grid; animation: fadeSlide .45s var(--ease); }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(-14px);} to { opacity: 1; transform: none; } }

.title-panel__keyart {
  width: 100%; border-radius: 0; border: 2px solid var(--img-border);
  aspect-ratio: 16 / 9; object-fit: cover; object-position: center 25%;
  box-shadow: 0 0 0 1px var(--img-ring), 0 24px 90px rgba(0,0,0,.42);
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), filter .35s var(--ease);
}
.title-panel__keyart:hover {
  transform: scale(1.015);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--img-ring), 0 0 26px rgba(244,169,28,.4), 0 24px 90px rgba(0,0,0,.42);
  filter: saturate(1.08) contrast(1.04);
}
.title-panel__keyart--placeholder {
  display: grid; place-items: center; background: var(--surface);
  color: var(--text-sub); text-align: center; font-size: 15px; line-height: 1.7;
}
.title-panel__gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px;
}
.shot {
  aspect-ratio: 16 / 10; border-radius: 0; border: 2px solid var(--img-border);
  box-shadow: 0 0 0 1px var(--img-ring);
  background-size: 0 0 !important; background-position: center; background-repeat: no-repeat; cursor: pointer;
  transition: transform .35s var(--ease), border-color .25s, box-shadow .25s; position: relative;
  overflow: hidden;
}
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: inherit;
  background-repeat: no-repeat;
  transition: transform .4s var(--ease), filter .4s var(--ease);
  transform: scale(1);
  z-index: 0;
}
.shot:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--img-ring), 0 0 20px rgba(244,169,28,.38);
}
.shot:hover::before {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.06);
}
.title-panel__keyart { cursor: pointer; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(5,5,5,.92); backdrop-filter: blur(6px);
  padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; animation: lbFade .25s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 100%; max-height: 92vh;
  border-radius: 8px; border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
  animation: lbZoom .25s var(--ease);
}
@keyframes lbZoom { from { transform: scale(.96); } to { transform: scale(1); } }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(26,26,26,.8); border: 1px solid var(--border);
  color: var(--text); font-size: 30px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.shot--1 { background-image: url('assets/market-a.jpg'); background-position: center; }
.shot--2 { background-image: url('assets/market-b.jpg'); background-position: center; }
.shot--3 { background-image: url('assets/market-c.jpg'); background-position: center; }
.shot--md1 { background-image: url('assets/madaeja-01.jpg'); background-position: 0% 70%; }
.shot--md2 { background-image: url('assets/madaeja-02.jpg'); background-position: center 80%; }
.shot--md3 { background-image: url('assets/madaeja-01.jpg'); background-position: 100% 70%; }
.shot--ph { background: var(--surface); }
.title-panel__keyart--madaeja { object-position: center 20%; }

.title-panel__trailer-main {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 90px rgba(0,0,0,.42);
}
.title-panel__trailer-main::before,
.title-panel__trailer-main::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.title-panel__trailer-main::before {
  left: 10px;
  top: 10px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
}
.title-panel__trailer-main::after {
  right: 10px;
  bottom: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.title-panel__trailer-main iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.title-panel__video { margin-top: 14px; }
.title-panel__video iframe {
  border: 2px solid var(--img-border) !important;
  box-shadow: 0 0 0 1px var(--img-ring);
}
.video-placeholder {
  position: relative; aspect-ratio: 16 / 9; border-radius: 0;
  border: 2px solid var(--img-border);
  box-shadow: 0 0 0 1px var(--img-ring);
  background: linear-gradient(135deg, #171720, #09090d);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.video-placeholder span { font-size: 13px; color: var(--text-sub); letter-spacing: .03em; }
.video-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: #0A0A0A; border: none; cursor: pointer;
  font-size: 22px; display: grid; place-items: center; padding-left: 4px;
  transition: transform .2s, box-shadow .2s;
}
.video-play:hover { transform: scale(1.08); box-shadow: 0 0 30px rgba(244,169,28,.5); }

.title-panel__info h3 { font-size: 34px; font-weight: 700; letter-spacing: .02em; }
.title-panel__meta {
  margin: 12px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
  color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: .05em;
}
.title-panel__desc { color: #D4D4DC; font-size: 17px; line-height: 1.75; }
.title-panel__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Dynamic section dividers */
.hw-divider { border: 0; height: 1px; background: var(--border); margin: 32px 0 16px; }
.hw-section-title { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 16px; letter-spacing: -0.02em; }
.title-panel__community { display: flex; gap: 16px; margin-top: 8px; }
.title-panel__community a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(17,17,24,.82); border: 1px solid var(--border); color: var(--text); transition: border-color .2s, transform .2s, background-color .2s, color .2s; }
.title-panel__community a:hover { border-color: var(--teal); color: var(--teal); background: rgba(52,227,196,0.1); transform: translateY(-3px); }

/* ============ NEWS ============ */
.news .section-head {
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
}
.news__grid {
  max-width: 1320px; margin: 48px auto 0; padding: 0 40px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.news-card {
  position: relative;
  background: rgba(11,11,16,.94);
  border: 2px solid var(--img-border); border-radius: 0;
  box-shadow: 0 0 0 1px var(--img-ring);
  display: flex;
  flex-direction: column;
  overflow: hidden; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease); cursor: pointer;
}
.news-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .25s var(--ease);
  z-index: 2;
}
.news-card:hover::before { width: 100%; }
.news-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 0 0 1px var(--img-ring), 0 0 22px rgba(244,169,28,.32), 0 18px 60px rgba(0,0,0,.34); }
.news-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10; background-size: 0 0 !important; background-position: center; background-repeat: no-repeat;
  overflow: hidden;
}
.news-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: inherit;
  background-repeat: no-repeat;
  transition: transform .4s var(--ease), filter .4s var(--ease);
  transform: scale(1);
  z-index: 0;
}
.news-card:hover .news-card__thumb::before {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06);
}
.news-card__thumb--1 { background-image: url('assets/horizon-walker-keyart.png'); background-position: 20% 30%; }
.news-card__thumb--2 { background: linear-gradient(135deg, #2a2113, #0c0c0c); }
.news-card__thumb--3 { background: linear-gradient(135deg, #1d1d22, #0c0c0c); }
.news-card__body {
  position: relative;
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(11,11,16,.98);
  z-index: 1;
}
.news-card__date {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  color: #07070A;
  background: var(--gold);
  padding: 4px 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
}
.news-card__body h3 { font-size: 17px; font-weight: 700; margin-top: 0; line-height: 1.5; }
.news-card__read {
  margin-top: auto;
  padding-top: 16px;
  font-family: "Space Mono", "Noto Sans KR", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text-faint);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.news-card:hover .news-card__read {
  color: var(--gold);
  transform: translateX(4px);
}

/* ============ ABOUT ============ */
.about .section-head {
  max-width: 1180px;
  padding-left: 40px;
  padding-right: 40px;
}
.about__inner { max-width: 1180px; margin: 0 auto; padding: 22px 40px 0; }
.about__lead { font-size: clamp(18px, 2.1vw, 24px); font-weight: 500; line-height: 1.6; max-width: 1120px; }
.about__lead::first-line { color: var(--text); }
.about__vision-label {
  margin-top: 56px; font-family: "Oswald", sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .3em; color: var(--gold);
}
.about__vision {
  margin-top: 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.vision-card {
  position: relative;
  background: rgba(11,11,16,.94);
  border: 1px solid #23232C; border-radius: 0;
  min-height: 100%;
  padding: 30px 26px 32px; transition: border-color .3s, transform .3s, box-shadow .3s var(--ease);
}
.vision-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.vision-card::after {
  content: "";
  position: absolute;
  right: -1px; top: -1px;
  width: 26px; height: 26px;
  border-top: 2px solid rgba(52,227,196,.7);
  border-right: 2px solid rgba(52,227,196,.7);
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.vision-card:hover { border-color: var(--teal); transform: translateY(-4px) scale(1.01); box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.vision-card:hover::before { width: 100%; }
.vision-card:hover::after { opacity: 1; }
.vision-card__num { color: var(--gold); font-size: 14px; font-weight: 700; font-family: "Oswald"; letter-spacing: .1em; }
.vision-card h4 { font-size: 20px; font-weight: 700; margin: 14px 0 10px; }
.vision-card p { color: #C8C8D0; font-size: 17px; line-height: 1.75; }

/* ============ GREETING (인사말) ============ */
.greeting { padding: 110px 0; }
.greeting__inner {
  max-width: 1180px; margin: 48px auto 0; padding: 0 40px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px;
}
.greet-card {
  position: relative;
  background: rgba(11,11,16,.94);
  border: 1px solid #23232C; border-radius: 0;
  padding: 34px 32px; transition: border-color .3s, transform .3s, box-shadow .3s var(--ease);
}
.greet-card::after {
  content: "";
  position: absolute;
  right: -1px; top: -1px;
  width: 34px; height: 34px;
  border-top: 2px solid rgba(52,227,196,.7);
  border-right: 2px solid rgba(52,227,196,.7);
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.greet-card:hover { border-color: var(--gold); transform: translateY(-4px) scale(1.01); box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.greet-card:hover::after { opacity: 1; }
.greet-card__name {
  margin: 0 0 16px; font-size: 22px; font-weight: 700;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.greet-card__name span { color: var(--gold); font-size: 15px; font-weight: 600; }
.greet-card__msg { color: #D4D4DC; font-size: 17px; line-height: 1.8; }

/* ============ RECRUIT ============ */
.recruit__values {
  max-width: 1180px; margin: 48px auto 0; padding: 0 40px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
  align-items: start;
}
.value-card {
  position: relative;
  text-align: left; padding: 30px 28px;
  border: 1px solid var(--border); border-radius: 0;
  background: rgba(11,11,16,.94);
  height: 310px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s, max-height .3s ease, background-color .3s, box-shadow .3s var(--ease);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px) scale(1.01); box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.value-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.value-card__icon { display: block; color: var(--gold); line-height: 0; margin-bottom: 16px; }
.value-card__icon svg { width: 32px; height: 32px; display: block; }
.value-card h4 {
  font-size: 21px; font-weight: 700; margin: 0 0 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.value-card p {
  color: #D4D4DC; font-size: 17px; line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  pointer-events: none;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s ease;
}
.value-card::after {
  content: "+";
  position: absolute;
  right: 24px; bottom: 20px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--gold); border: 1px solid var(--border); border-radius: 50%;
  font-size: 20px; line-height: 1;
  background: #0D0D12;
}
.value-card.is-expanded {
  height: auto;
  min-height: 310px;
  background: rgba(15,15,22,.98);
}
.value-card.is-expanded p {
  display: block;
  overflow: visible;
}
.value-card:hover::before,
.value-card.is-expanded::before { opacity: 1; }
.value-card.is-expanded::after { content: "-"; }
.recruit__cta { text-align: center; margin-top: 48px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); padding: 56px 0 40px; background: #07070A; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 48px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand .gnb__logo-text { font-family: "Oswald"; font-size: 16px; }
.footer__social { display: flex; gap: 22px; margin-left: 20px; }
.footer__social a { color: var(--text-sub); font-size: 14px; font-weight: 600; transition: color .2s; }
.footer__social a:hover { color: var(--gold); }
.footer__contact { margin-left: auto; }
.footer__contact a { color: var(--text-sub); font-size: 14px; transition: color .2s; }
.footer__contact a:hover { color: var(--gold); }
.footer__copy { width: 100%; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-sub); font-size: 12.5px; letter-spacing: .03em; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .title-panel { grid-template-columns: 1fr; gap: 36px; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .gnb__nav, .gnb__social { display: none; }
  .gnb.is-open .gnb__nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--gnb-h); left: 0; right: 0;
    background: rgba(10,10,10,.98); border-bottom: 1px solid var(--border);
    padding: 8px 0; margin: 0;
  }
  .gnb.is-open .gnb__nav a { padding: 14px 32px; }
  .gnb__hamburger { display: flex; }
  .gnb__inner { padding: 0 20px; gap: 12px; }
  .hero__corners, .hero__side-label { display: none; }
  .hero__scroll { display: none; }
  .section-head, .title-tabs, .title-panel, .news__grid,
  .about__inner, .greeting__inner, .recruit__values, .footer__inner { padding-left: 24px; padding-right: 24px; }
  .news__grid, .about__vision, .greeting__inner, .recruit__values { grid-template-columns: 1fr; }
  .title-section, .news, .about, .greeting, .recruit { padding: 72px 0; }
  .footer__contact { margin-left: 0; width: 100%; }
  .footer__social { margin-left: 0; }
}
