/* ── 공통 페이지 스타일 (about / service / news / photo / video / inquiry / apply) ── */

/* ── 페이지 히어로 (다크) ─────────────────────────── */
.inner-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 60px) 0 70px;
}

/* PC에서 photo/video 등 — 이미지를 컨테이너 높이에 맞추고 좌우 검정 처리
   (about/service는 .hero-bg-fit 클래스가 없어서 영향 없음) */
@media (min-width: 769px) {
  .inner-hero.hero-bg-fit {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #000 !important;
  }
}
.inner-hero .breadcrumb {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inner-hero .breadcrumb a { color: rgba(255,255,255,0.35); transition: color .2s; }
.inner-hero .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.inner-hero .breadcrumb span { opacity:.4; }
.inner-hero .page-title {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 16px;
}
.inner-hero .page-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  letter-spacing: .04em;
  line-height: 1.7;
}

/* ── ABOUT ────────────────────────────────────────── */
.about-intro { padding: 100px 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-text h2 {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-intro-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.about-intro-img {
  position: relative;
}
.about-intro-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--light-gray);
}
.about-intro-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-intro-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#f0ece4,#e8e0d4);
  color: #c0b090;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .15em;
}

.value-section { padding: 80px 0; background: var(--light-gray); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-top: 3px solid var(--accent);
}
.value-card .value-num {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: 3rem;
  color: rgba(200,169,110,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: #666; line-height: 1.7; }

.stat-section { padding: 80px 0; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
}
.stat-box {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-box .big-num {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: 4rem;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 8px;
}
.stat-box .big-num span { color: var(--accent); }
.stat-box .stat-desc { font-size: 13px; color: var(--gray); letter-spacing: .08em; }

/* ── SERVICE ──────────────────────────────────────── */
.service-section { padding: 100px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.service-item {
  padding: 50px 48px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: background .25s;
  cursor: default;
}
.service-item:hover { background: #fafaf8; }
.service-item .service-num {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: 2.5rem;
  color: rgba(200,169,110,0.3);
  line-height: 1;
  margin-bottom: 20px;
}
.service-item h3 {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.service-item p { font-size: 14px; color: #666; line-height: 1.75; }
.service-item ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}
.service-item ul li {
  font-size: 13px;
  color: #777;
  padding: 4px 0 4px 14px;
  position: relative;
}
.service-item ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
}

.process-section { padding: 80px 0; background: var(--dark); }
.process-section .section-title { color: var(--white); }
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 56px;
  counter-reset: step;
}
.process-step {
  flex: 1;
  padding: 32px 28px;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.process-step:first-child { border-left: none; }
.process-step .step-num {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: 3.5rem;
  color: rgba(200,169,110,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── NEWS ─────────────────────────────────────────── */
.news-list-section { padding: 80px 0 100px; }
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.news-list-card {
  display: flex;
  flex-direction: column;
}
.news-list-card .news-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light-gray);
  margin-bottom: 20px;
}
.news-list-card .news-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.news-list-card:hover .news-img-wrap img { transform: scale(1.04); }
.news-list-card .news-img-placeholder,
.news-list-card .news-img-wrap > div:not(.news-img-placeholder) {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg,#eeece8,#e2ddd5);
  color:#bbb;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing:.1em;
  position: relative;
  z-index: 1;
}
/* news.html 카드 이미지 overflow 처리 */
.news-list-card .news-img-wrap { background: #222; overflow:hidden; position:relative; }
.news-list-card .news-img-wrap img { position:relative; z-index:1; width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.news-list-card:hover .news-img-wrap img { transform:scale(1.04); }
/* style.css ::before 가상요소 덮어쓰기 (news-img-wrap의 gray overlay 숨기기) */
.news-list-section .news-img-wrap::before { display:none; }
.news-cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 8px;
}
.news-list-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--dark);
}
.news-list-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.news-list-card .news-date {
  font-family: var(--font-en);
  font-size: 11px;
  color: #aaa;
  letter-spacing: .05em;
}
.news-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.news-filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  background: transparent;
  transition: all .2s;
}
.news-filter-btn.active,
.news-filter-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ── PHOTO / VIDEO ────────────────────────────────── */
.works-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.works-filter-btn {
  padding: 7px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 11px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  background: transparent;
  transition: all .2s;
  text-transform: uppercase;
}
.works-filter-btn.active,
.works-filter-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.photo-gallery-section { padding: 60px 0 100px; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.photo-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--light-gray);
}
.photo-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.photo-item img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity .3s;
}
.photo-item:hover .photo-item-overlay { opacity: 1; }
.photo-item-overlay .brand { font-family: var(--font-en); font-size: 14px; font-weight: 700; letter-spacing: .1em; color: var(--white); }
.photo-item-overlay .type  { font-family: var(--font-en); font-size: 11px; letter-spacing: .15em; color: var(--accent); }
.photo-item-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg,#e8e4de,#ddd8cf);
  color: #bbb;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .1em;
}
/* photo-item 내 실제 img 처리 */
.photo-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.video-section { padding: 60px 0 100px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.video-card {
  cursor: pointer;
}
.video-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  margin-bottom: 16px;
}
.video-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; opacity:.85; }
.video-card:hover .video-thumb img { transform: scale(1.04); opacity: 1; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn svg {
  width: 56px; height: 56px;
  fill: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform .2s;
}
.video-card:hover .video-play-btn svg { transform: scale(1.1); }
.video-thumb-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background: #1c1c1c;
}
/* 비디오 썸네일 img 처리 */
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: opacity .3s, transform .4s ease;
}
.video-thumb { position: relative; }
.video-card:hover .video-thumb img { opacity: 1; }
.video-play-btn { position: absolute; inset: 0; z-index: 2; }
.video-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.video-card .video-meta { font-size: 12px; color: var(--gray); font-family: var(--font-en); letter-spacing: .05em; }

/* ── INQUIRY / APPLY ──────────────────────────────── */
.contact-page-section { padding: calc(var(--header-h) + 60px) 0 100px; }
.contact-page-section .page-title {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 12px;
}
.contact-page-section .page-sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 56px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 24px;
}
.contact-info-item {
  margin-bottom: 20px;
}
.contact-info-item .ci-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gray);
  font-family: var(--font-en);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}
.contact-info-item a { color: var(--dark); transition: color .2s; }
.contact-info-item a:hover { color: var(--accent); }
.contact-info-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 28px 0;
}

/* 폼 공통 */
.form-wrap {}
.form-section-title {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gray);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: .03em;
}
.form-field label .req { color: var(--accent); margin-left: 2px; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.14);
  font-family: var(--font-ko);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  border-radius: 2px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-check-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}
.form-check-group input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--accent);
}
.form-submit-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  margin-top: 16px;
}
.form-submit-btn:hover { background: var(--accent); }
.form-agree {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}
.form-agree a { color: var(--accent); text-decoration: underline; }

.file-upload-area {
  border: 2px dashed rgba(0,0,0,0.15);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
  position: relative;
}
.file-upload-area:hover { border-color: var(--accent); }
.file-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width:100%; height:100%;
}
.file-upload-area svg { width: 32px; height: 32px; stroke: #ccc; fill:none; stroke-width:1.5; margin-bottom:8px; }
.file-upload-area p { font-size: 13px; color: #aaa; }
.file-upload-area small { font-size: 11px; color: #bbb; }

/* ── ABOUT — DIVISION ────────────────────────────── */
.division-section { padding: 100px 0; }
.division-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(0,0,0,0.09);
}
.division-card {
  padding: 48px 32px;
  border-right: 1px solid rgba(0,0,0,0.09);
  transition: background .25s;
}
.division-card:last-child { border-right: none; }
.division-card:hover { background: #faf9f7; }
.division-icon {
  width: 48px; height: 48px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.division-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.division-card h3 {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 12px;
  color: var(--dark);
}
.division-card p { font-size: 13px; color: #777; line-height: 1.7; }
.division-card ul { list-style: none; padding: 0; margin-top: 16px; }
.division-card ul li {
  font-size: 12px; color: #999; padding: 3px 0 3px 12px;
  position: relative;
}
.division-card ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--accent);
}

/* ── ABOUT — HISTORY TIMELINE ─────────────────────── */
.history-section { padding: 100px 0; background: var(--dark); }
.history-section .section-title,
.history-section .label { color: var(--white); }
.history-section .label { color: var(--accent); }
.timeline {
  margin-top: 64px;
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.timeline-item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  width: 100px;
  flex-shrink: 0;
  padding-top: 2px;
}
.timeline-content { flex: 1; padding-left: 48px; }
.timeline-content ul { list-style: none; padding: 0; margin: 0; }
.timeline-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.6;
}
.timeline-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── ABOUT — TEAM / CEO ──────────────────────────── */
.team-section { padding: 100px 0; }
.ceo-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ceo-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light-gray);
}
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; }
.ceo-info .ceo-title {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 10px;
}
.ceo-info h3 {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.ceo-info .ceo-name-ko {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
}
.ceo-quote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  margin-bottom: 24px;
}
.ceo-info p { font-size: 14px; color: #666; line-height: 1.8; }

.org-section-title {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gray);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.org-dept {
  padding: 24px 24px 20px;
  border: 1px solid rgba(0,0,0,0.09);
}
.org-dept-name {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.org-dept ul { list-style: none; padding: 0; margin: 0; }
.org-dept ul li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.org-dept ul li:last-child { border-bottom: none; }
.org-dept ul li .count {
  font-size: 11px;
  color: #bbb;
  font-family: var(--font-en);
}

/* ── ABOUT — CLIENTS ─────────────────────────────── */
.clients-section { padding: 100px 0; background: var(--light-gray); }
.client-filter-bar {
  display: flex;
  gap: 6px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.client-filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 11px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  background: transparent;
  transition: all .2s;
}
.client-filter-btn.active,
.client-filter-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.client-logo-item {
  background: var(--white);
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all .2s;
  cursor: default;
  overflow: hidden;
}
.client-logo-item:hover { background: var(--dark); }
.client-logo-item span {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #999;
  text-align: center;
  line-height: 1.3;
  transition: color .2s;
  text-transform: uppercase;
}
.client-logo-item:hover span { color: var(--accent); }
.client-logo-item[style*="display:none"] { display: none !important; }

/* ── ABOUT — OFFICE GALLERY ──────────────────────── */
.office-gallery-section { padding: 100px 0; }
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  margin-top: 56px;
}
.office-img {
  overflow: hidden;
  background: var(--light-gray);
}
.office-img.tall { grid-row: span 2; }
.office-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.office-img:hover img { transform: scale(1.04); }
.office-img.tall { aspect-ratio: auto; min-height: 480px; }
.office-img:not(.tall) { aspect-ratio: 16/9; }

/* ── 라이트박스 (photo) ───────────────────────────── */
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.lb-backdrop.open { opacity: 1; visibility: visible; }
.lb-backdrop img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close-btn {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.lb-close-btn:hover { color: #fff; }
.lb-arr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 36px;
  padding: 12px;
  transition: color .2s;
}
.lb-arr-btn:hover { color: #fff; }
.lb-arr-btn.prev { left: 16px; }
.lb-arr-btn.next { right: 16px; }

/* 활성 메뉴 색상 */
.gnb-link.active-nav { color: var(--accent) !important; }

/* ── 반응형 ───────────────────────────────────────── */
@media (max-width: 960px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { flex-wrap: wrap; }
  .process-step { min-width: 50%; border-top: 1px solid rgba(255,255,255,0.08); border-left: none; margin-top: 1px; }
  .news-list-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-item.wide { grid-column: span 2; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  /* about new */
  .division-grid { grid-template-columns: repeat(2, 1fr); }
  .division-card:nth-child(2) { border-right: none; }
  .division-card:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.09); }
  .division-card:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.09); }
  .timeline::before { left: 72px; }
  .timeline-year { width: 72px; font-size: 1.8rem; }
  .timeline-content { padding-left: 32px; }
  .ceo-wrap { grid-template-columns: 220px 1fr; gap: 40px; }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .office-img.tall { grid-row: span 1; min-height: auto; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .inner-hero { padding: calc(var(--header-h) + 32px) 0 48px; }
  .value-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .news-list-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .photo-item.wide { grid-column: span 2; aspect-ratio: 4/3; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .contact-page-section { padding-top: calc(var(--header-h) + 32px); }
  /* about new */
  .division-grid { grid-template-columns: 1fr; }
  .division-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.09); }
  .timeline::before { display: none; }
  .timeline-item { flex-direction: column; gap: 8px; }
  .timeline-year { width: auto; }
  .timeline-content { padding-left: 0; }
  .ceo-wrap { grid-template-columns: 1fr; }
  .ceo-photo { aspect-ratio: 4/3; }
  .org-grid { grid-template-columns: 1fr; }
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .office-grid { grid-template-columns: 1fr; }
  .office-img.tall { aspect-ratio: 4/3; min-height: auto; }
}

/* ── 모바일(폰) 전용 타이포 / CEO 사진 — 태블릿 영향 없음 ── */
@media (max-width: 480px) {
  .inner-hero .page-title { font-size: clamp(2rem, 10vw, 3rem); letter-spacing: .03em; }
  .inner-hero .page-subtitle { font-size: 13px; }

  .team-section { padding: 60px 0; }
  .ceo-wrap {
    gap: 28px;
    margin-top: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .ceo-photo { aspect-ratio: 4/5; max-height: 340px; }
  .ceo-photo img { object-position: center top; }
  .ceo-info h3 { font-size: clamp(1.5rem, 7vw, 2rem); line-height: 1.1; }
  .ceo-info .ceo-title { font-size: 10px; margin-bottom: 8px; }
  .ceo-info .ceo-name-ko { font-size: 13px; margin-bottom: 20px; }
  .ceo-quote {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 14px;
    border-left-width: 2px;
    margin-bottom: 18px;
  }
  .ceo-info p { font-size: 13px; line-height: 1.75; }

  /* ── 통계 박스 — "1,200+" 셀 밖으로 튀어나가는 문제 해결 ── */
  .stat-section { padding: 60px 0; }
  .stat-box {
    padding: 28px 8px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .stat-box .big-num {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1;
    margin-bottom: 6px;
    white-space: nowrap;
  }
  .stat-box .stat-desc { font-size: 11.5px; letter-spacing: .04em; }
}
