@charset "UTF-8";

  /* ================================
    기본 색상 & 타이포 스케일
    ================================ */
  :root {
    --main-color: #171616;
    --accent-color: #9d8aae;
    --dark-main-color: #3e6974;
    --text-bright-color: #fff;
    --icon-color: #fff;
    --icon-bk-color: #ddd;
    --gray-color: #ddd;
    --large-width: 1000px;
    --middle-width: 800px;
  }

  @media (max-width: 599px) {
    :root { font-size: 14px; }
  }
  @media (min-width: 600px) and (max-width: 799px) {
    :root { font-size: 16px; }
  }
  @media (min-width: 800px) {
    :root { font-size: 18px; }
  }

  body { font-size: 16px; }

  /* ================================
    페이지 공통 설정
    ================================ */
  body {
    margin: 0;
    font-family: 'Roboto Flex', sans-serif;
    background-color: #171616;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  html, body {
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }

  /* ================================
    메인 히어로(conA)
    ================================ */
  .conA {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 450px;
    overflow: hidden;
    color: var(--text-bright-color);
    text-align: center;
  }
  .bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
  }
  .conA .container {
    position: relative;
    z-index: 1;
    
  }
  
  .conA::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
  }
  .conA h1 {
    margin: 0 0 10px;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 580;
    letter-spacing: -0.02em;
    margin-left: 0.2em;
    font-size: 14vw;
    line-height: 0.85;
    height: 200px;
  }
  .conA p {
    margin: 0;
    font-size: 18px;
  }
  @media (min-width: 768px) {
    .conA h1 { font-size: 115px; }
    .conA p { font-size: 24px; }
  }

  /* ================================
    섹션 B, C, D (기존 템플릿)
    ================================ */
  .conB .container {
    padding-top:80px;
    padding-bottom:20px;
  }
  .conB .text {
    padding: 0 20px 60px;
    text-align: center;
  }
  .conB h2 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  .conB p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
  }
  .conB a { text-decoration: none; }
  .conB a:hover { text-decoration: underline; }
  .conB i {
    font-size: 50px;
    color: #31523c;
    margin-bottom: 10px;
    transform: scale(0.98);
    transition: 0.3s;
  }
  .conB i:hover { transform: scale(1.2); }

  @media (min-width: 768px) {
    .conB .container {
      display: flex;
      max-width: var(--large-width);
      margin: 0 auto;
    }
    .conB .text { flex: 1; }
  }

  /* C */
  .conC {
    color: var(--text-bright-color);
  }
  .conC .text { padding: 20px; }
  .conC h2 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  .conC p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
  }
  .conC a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    border: solid 3px currentColor;
    border-radius: 6px;
    color: var(--text-bright-color);
    font-size: 14px;
    text-decoration: none;
  }
  .conC a:hover {
    background-image: linear-gradient(
      rgba(255,255,255,0.2),
      rgba(255,255,255,0.2)
    );
  }
  .conC .photo {
    min-height: 300px;
    background-image: url(img/art.jpg);
    background-position: center;
    background-size: cover;
  }
  @media (min-width: 768px) {
    .conC .container {
      display: flex;
      max-width: var(--large-width);
      margin: 0 auto;
    }
    .conC .photo { flex: 3; }
    .conC .text {
      flex: 2;
      padding: 50px;
    }
  }

  /* D */
  .conD .container { padding-top: 2px; }
  .conD .text { padding: 20px; }
  .conD h2 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  .conD p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
  }
  .conD a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    box-shadow: 0 0 0 1px #888;
    border: solid 3px currentColor;
    border-radius: 6px;
    background-color: var(--accent-color);
    color: var(--text-bright-color);
    font-size: 14px;
    text-decoration: none;
  }
  .conD a:hover {
    background-image: linear-gradient(
      rgba(255,255,255,0.2),
      rgba(255,255,255,0.2)
    );
  }
  .conD .photo {
    min-height: 300px;
    background-image: url(img/h.jpg);
    background-position: center;
    background-size: cover;
  }
  @media (min-width: 768px) {
    .conD .container {
      display: flex;
      flex-direction: row-reverse;
      max-width: var(--large-width);
      margin: 0 auto;
      padding: 40px 0;
    }
    .conD .photo { flex: 0 0 400px; }
    .conD .text { flex: 1; padding: 50px; }
  }

  /* ================================
    기본 footer (옛 구조, 필요시 사용)
    ================================ */
  footer {
    color: var(--text-bright-color);
    background-color: #171616;
  }
  footer .container {
    padding: 40px 20px;
  }
  @media (min-width: 768px) {
    footer .container {
      display: flex;
      flex-wrap: wrap;
      max-width: var(--large-width);
      margin: 0 auto;
    }
    .footA { flex: 0 0 40%; }
    .footB { flex: 0 0 60%; }
    .footC { flex: 0 0 100%; }
  }
  .footA { margin-bottom: 30px; }
  .footA h2 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    letter-spacing: 0.12em;
  }
  .footA p {
    margin: 0;
    font-size: 14px;
  }
  .footA a {
    color: inherit;
    text-decoration: none;
  }
  .footB div { margin-bottom: 20px; }
  .footB h3 {
    margin: 0 0 10px;
    border-bottom: solid 1px currentColor;
    font-size: 14px;
  }
  .footB ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footB a {
    display: block;
    padding: 5px;
    color: inherit;
    font-size: 12px;
    text-decoration: none;
  }
  .footB a:hover {
    background-color: rgba(0,0,0,0.3);
  }
  @media (min-width: 768px) {
    .footB {
      display: flex;
    }
    .footB div { flex: 1; }
    .footB div:not(:first-child) {
      margin-left: 40px;
    }
  }
  .footC {
    font-size: 12px;
    text-align: center;
  }
  .footD { margin-top: 20px; }
  .footD ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footD a {
    display: block;
    margin-right: 8px;
    padding: 0;
    color: inherit;
    font-size: 16px;
    text-decoration: none;
    border: solid 1px currentColor;
    width: 2em;
    line-height: 2em;
    border-radius: 12px;
    text-align: center;
  }
  .footD a:hover {
    background-color: rgba(0,0,0,0.3);
  }

  /* ================================
    HEADER (자동 대비)
    ================================ */
  header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
  }
  header .headA,
  header .headB a,
  header .headC .line {
    mix-blend-mode: difference;
    color: #fff;
  }
  header.menu-open .headA,
  header.menu-open .headB a {
    mix-blend-mode: normal;
    color: #000;
  }
  header.menu-open .headC .line {
    mix-blend-mode: normal;
    background: #000;
  }

  /* 로고 */
  .headA {
    display: inline-block;
    line-height: 70px;
    padding: 0 20px;
    background-color: transparent;
    color: inherit;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 600;
    font-size: 24px;
    text-decoration: none;
    margin-left: 13vw;
  }
  @media (max-width: 767px) {
    .headA { margin-left: 0; }
  }

  /* 네비게이션 */
  .headB ul {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    justify-content: space-between;
  }
  .headB a {
    display: block;
    padding: 15px;
    color: inherit;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
  }

  @media (min-width: 768px) {
    header .container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90%;
      margin: 0;
    }
    .headB {
      flex: 1;
      margin-left: auto;
    }
    .headB a { white-space: nowrap; }
    .headB ul {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      gap: 3vw;
      padding: 0 5vw;
      margin: 0;
    }
    .headB li {
      flex: 0 0 auto;
      text-align: center;
    }
  }

  /* 하단 bottom-menu (히어로 위) */
  .bottom-menu li{
    flex: 0 0 auto;
    text-align: center;
  }
  .bottom-menu a{
    color: inherit;
    text-decoration: none;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  .bottom-menu{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.2vh;
    z-index: 2;
  }
  .bottom-menu ul{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    gap: 0;
    padding: 0 6vw;
    margin: 0;
    list-style: none;
  }
  .bottom-menu a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    mix-blend-mode: difference;
  }
  /* 📱 모바일 인덱스에서 하단 메뉴 숨기기 */
@media (max-width: 767px) {
  body.page-index .bottom-menu {
    display: none !important;
  }
}

  /* 모바일 헤더 */
  @media (max-width: 767px) {
    header .container-small {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    header {
      background-color: transparent;
      color: #ffffff;
      transition: background-color 0.25s ease, color 0.25s ease;
    }
    .menu-overlay {
      
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 0;
      background-color: #ffffff;
      z-index: 50;
      pointer-events: none;
      transition: height 0.4s linear;
    }
    .headC {
      margin-right: 10px;
      padding: 0;
      border: none;
      outline: none;
      background: none;
      position: relative;
      width: 32px;
      height: 24px;
      cursor: pointer;
    }
    .headC .line {
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background-color: #ffffff;
      mix-blend-mode: difference;
      transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.25s ease;
      
    }
    .headC .line1 { top: 5px; }
    .headC .line2 { bottom: 5px; }
    .headC.open .line1 {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }
    .headC.open .line2 {
      bottom: auto;
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
    }
    .headB { display: none; }
    header.menu-open { color: #000000; }
    header.menu-open .headB { background-color: #ffffff; }
    header.menu-open .headB a { color: inherit; }
    header.menu-open .headC .line { background-color: #000000; }
  }
  @media (min-width: 768px) {
    .headC { display: none; }
    .headB { display: block !important; }
  }

  header > *:not(.menu-bg) {
    position: relative;
    z-index: 1;
  }

  /* 상단 메뉴 active 상태 */
  .headB a.active {
    color: #777777 !important;
  }
  header:not(.menu-open) .headB a.active {
    mix-blend-mode: normal !important;
  }

  /* Dark / Light 섹션에서 JS로 토글 */
  header.header-dark .headA,
  header.header-dark .headB a,
  header.header-dark .headC .line{
    color: #fff;
    background-color: #fff;
    mix-blend-mode: normal;
  }
  header.header-light .headA,
  header.header-light .headB a,
  header.header-light .headC .line{
    color: #000;
    background-color: #000;
    mix-blend-mode: normal;
  }

  /* ================================
    About 페이지: post, divider, media
    ================================ */
  .post .container {
    width: 98vw;
    max-width: none;
    margin: 0;
    text-align: left;
    padding: 120px 0 10px;
    padding-left: 12vw;
    padding-right: 2vw;
  }
  .post h1 {
    padding-left: 0.5rem;
    font-size: 70px;
    line-height: 1.00;
    color: #ffffff;
  }
  .post p {
    font-size: 1rem;
    line-height: 2;
    color: #ffffff;
  }

  .post-divider {
    width: 97.3vw;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 20px auto 40px;
  }

  /* post-media 구조: 왼 라벨 + 오른 이미지 */
  .post-media{
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin-top: 0;
  }
  .post-subtitle{
    flex: 0 0 12vw;
    padding-left: 3.2vw;
    padding-top: 0;
    box-sizing: border-box;
  }
  .post-subtitle h2{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: -13px;
    margin-left: -25px;
  }

  /* ✅ 최종 post-img-wrap – 이 버전만 사용 */
  .post-img-wrap{
    flex: 1;
    margin: 0;
    padding-left: 0;
    padding-right: 1vw;
    display: block;
  }
  .post-img-wrap img,
  .post-img-wrap video{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: -10px;
  }

  /* 모바일 About */
  @media (max-width: 767px){
    .post-media{
      flex-direction: column;
    }
    .post-subtitle{
      flex: none;
      width: 100%;
      padding: 12px 6vw 8px;
      margin-left: 15px;
      margin-bottom: 25px;
      margin-top: -20px !important;
    }
    .post-img-wrap{
      padding: 0 20px;
    }
    .post-divider {
      width: auto;
      margin-left: 20.2px;
      margin-right: 20.2px;
    }
  }

  /* About split (카피 + 본문) */
  .about-split {
    width: 100%;
    margin-top: 40px;
  }
  .about-split-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6vw;
    padding-left: 12vw;
    padding-right: 3vw;
    align-items: start;
  }
  .about-left h3 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .about-left-line {
    margin-top: 18px;
    width: 95%;
    height: 1px;
    background: rgba(255,255,255,0.25);
  }
  .about-right p {
    margin: 2px 100px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
  }

  @media (max-width: 767px) {
    .about-split-inner {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 0 20px 50px;
    }
    .about-left-line { width: 100%; }
    .about-left h3 { font-size: 26px; }
    .about-right p {
      font-size: 13px;
      margin: 0;
    }
  }

  /* 모바일: About h1 좌측 라인 맞추기 */
  @media (max-width: 767px) {
    .post h1 {
      padding-left: 20px !important;
      margin-left: 0 !important;
      font-size: 40px;
      line-height: 1.1;
    }
    .post .container{
      max-width: none;
      width: 100%;
      margin: 0;
      padding: 100px 20px 10px;
      text-align: left !important;
    }
    .post h1{
      padding-left: 0 !important;
      margin: 0;
      text-align: left !important;
      font-size: 40px;
      line-height: 1.1;
    }
  }

  /* About 하단 그리드 리스트 */
  .about-gridlist{
    width: 97.3vw;
    margin: 0 auto;
  }
  .about-gridlist-inner{
    display: grid;
    grid-template-columns: 12vw 1fr;
    align-items: start;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .gridlist-table{
    width: 82.27%;
    margin-left: 15vw;
    margin-top: -13px;
  }
  .gridlist-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .gridlist-row:first-child{
    padding-top: 0;
  }
  .gridlist-row:last-child{
    border-bottom: none;
    padding-bottom: 2px;
    margin-bottom: 0;
  }

  @media (max-width: 767px){
    .about-gridlist-inner{
      grid-template-columns: 1fr;
      padding: 0 20px 30px;
    }
    .gridlist-row{
      grid-template-columns: repeat(3, 1fr);
      font-size: 12px;
      padding: 14px 0;
    }
    .gridlist-label{
      padding-left: 0 !important;
      margin-bottom: 15px;
      margin-top: -20px !important;
    }
  }

  /* Selected Works 라벨 */
  .gridlist-label{
    padding-left: 0;
    padding-top: 0;
    box-sizing: border-box;
  }
  .selected-title{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: -13px;
    margin-left: 0;
    margin-bottom: 10px;
  }

  @media (max-width: 767px){
    .about-gridlist{
      width: auto;
      margin: 0;
    }
    .about-gridlist-inner{
      grid-template-columns: 1fr;
    }
    .selected-title{
      margin: 0 0 16px 0;
    }
    .gridlist-table{
      width: 100%;
      margin-left: 0 !important;
      margin-top: -6px;
      padding: 0;
    }
    .gridlist-row{
      padding-left: 0;
      padding-right: 0;
    }
  }

  /* About 팀 카드 */
  .about-team{
    width: 100%;
    margin-top: 0;
  }
  .about-team-inner{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5vw;
    padding-left: 12vw;
    padding-right: 0.8vw;
    align-items: start;
  }
  .team-card{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: -26px;
  }
  .team-photo{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
  }
  .team-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-text{ padding-top: 6px; }
  .team-name{
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .team-role{
    margin: 6px 0 12px;
    font-size: 14px!important;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .team-desc{
    margin: 0;
    font-size: 14px!important;
    line-height: 1.8;
    color: rgba(255,255,255,0.7)!important;
  }

  @media (max-width: 767px){
    .about-team-inner{
      grid-template-columns: 1fr;
      gap: 26px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .team-desc{
      margin-bottom: 40px;
    }
  }

  /* TEAM 라벨 (PROCESS / WALLS 등) */
  .team-label-wrap{
    width: 97.3vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 12vw 1fr;
    padding: 0;
  }
  .team-label{
    padding-left: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: -13px;
    margin-left: 0;
    margin-bottom: 10px;
  }
  @media (max-width: 767px){
    .team-label-wrap{
      grid-template-columns: 1fr;
      width: auto;
      padding: 0 20px 30px;
      margin-top: -20px;
    }
    .team-label{
      margin: 0 0 16px 0;
      padding-left: 0;
    }
  }

  /* 작은 텍스트 타이틀 (WHY 등) */
  .why-title {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    margin: 25px 0 10px !important;
    padding-left: 12vw !important;
    text-transform: uppercase;
  }

  /* ================================
    HISTORY / LIST / CONTACT / LOCATION
    (기존 템플릿 – 내용은 필요에 따라 사용)
    ================================ */
  .history {
    background-color: #171616;
    color: var(--text-bright-color);
  }
  .history .text { padding: 20px; }
  .history h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
  }
  .history .photo {
    min-height: 500px;
    background-image: url(img/plant.jpg);
    background-position: center;
    background-size: cover;
  }
  .history table {
    border-collapse: collapse;
    border-top: solid 1px var(--gray-color);
    font-size: 0.875rem;
    width: 100%;
  }
  .history th, .history td {
    padding: 1.8rem 0;
    border-bottom: solid 1px var(--gray-color);
  }
  .history th {
    padding-right: 1rem;
    text-align: start;
    word-break: keep-all;
  }
  @media (min-width: 768px) {
    .history .container {
      display: flex;
      max-width: var(--large-width);
      margin: 0 auto;
    }
    .history .photo { flex: 3; }
    .history .text { flex: 2; padding: 50px; }
  }

  /* 리스트 A */
  .listA h1{
    font-size: 2rem;
    text-align: center;
  }
  .listA .container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--large-width);
    margin: 30px auto;
  }
  .listA article {
    flex: 1 1 300px;
    display: flex;
  }
  .listA a {
    flex: 1;
    margin: 10px;
    display: block;
    border: solid 1px var(--gray-color);
    color: inherit;
    text-decoration: none;
  }
  .listA a:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .listA .photo {
    min-height: 200px;
    background-position: center;
    background-size: cover;
  }
  .listA .text { margin: 10px; }
  .listA h2 { font-size: 18px; }
  .listA p {
    font-size: 14px;
    color: inherit;
  }

  /* 리스트 B */
  .listB h1{
    font-size: 2rem;
    text-align: center;
  }
  .listB .container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--large-width);
    margin: 30px auto;
  }
  .listB article {
    flex: 1 1 384px;
    display: flex;
  }
  .listB a {
    flex: 1;
    margin: 10px;
    display: flex;
    border: solid 1px var(--gray-color);
    color: inherit;
    text-decoration: none;
  }
  .listB a:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .listB .photo {
    flex: 2;
    min-height: 0;
    background-position: center;
    background-size: cover;
  }
  .listB .text {
    flex: 3;
    margin: 10px;
  }
  .listB h2 { font-size: 18px; }
  .listB p {
    font-size: 14px;
    color: inherit;
  }
  @media (max-width: 384px) {
    .listB .photo { flex: 1; }
    .listB p { display: none; }
  }

  /* 문의 */
  .contact {
    margin: 20px 0;
    padding: 20px;
    border: solid 1px var(--gray-color);
    text-align: center;
  }
  .contact span {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.2rem;
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    color: var(--icon-color);
  }
  .contact h2 {
    margin-top: 0;
    font-size: 1.2rem;
  }
  .contact a {
    font-size: 1.4rem;
    color: inherit;
    text-decoration: none;
  }
  @media (min-width: 768px) {
    .contact-wrap {
      display: flex;
    }
    .contact{
      flex: 1;
    }
    .contact:first-child {
      margin-right: 20px;
    }
  }

  /* 위치 */
  .location iframe {
    width: 100%;
    height: 400px;
    vertical-align: bottom;
  }
  .location h2 {
    margin: 0;
    padding: 20px 0;
    background-color: var(--main-color);
    color: var(--text-bright-color);
    font-size: 1.5rem;
    text-align: center;
  }

  /* ================================
    타이핑 애니메이션
    ================================ */
  .typing { position: relative; }
  .typing::after {
    content: "";
    display: inline-block;
    width: 0.08em;
    height: 0.9em;
    margin-left: 0.08em;
    background: currentColor;
    vertical-align: -0.08em;
    animation: blink 0.9s step-end infinite;
  }
  .typing.typing-done::after {
    animation: none;
    opacity: 0;
  }
  @keyframes blink {
    50% { opacity: 0; }
  }

  /* ================================
    CONTACT SPLIT 레이아웃
    ================================ */
  .contact-split{
    position: relative;
    display: grid;
    grid-template-columns: clamp(240px, 32vw, 420px) 1fr;
    min-height: 100vh;
    background: var(--main-color);
    color: #fff;
    overflow: hidden;
  }
  .contact-media{
    position: relative;
    overflow: hidden;
    background: #000;
    z-index: 1;
  }
  .contact-media::after{
  content: "";
  position: absolute;
  inset: 0;                /* top:0 right:0 bottom:0 left:0 같은 의미 */
  background: rgba(0,0,0,0.45);   /* ← 어둡기 조절 (0.25~0.55 사이 추천) */
  z-index: 2;              /* 영상 위 */
  pointer-events: none;    /* 클릭 막히지 않게 */
  }
  .contact-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .media-caption{
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.4;
  }
  .contact-stage{
    position: relative;
    background: var(--main-color);
    overflow: hidden;
    z-index: 1;
  }
  .contact-content{
    position: relative;
    z-index: 4;
    padding:
      clamp(110px, 12vh, 160px)
      clamp(18px, 2.5vw, 36px)
      clamp(15px, 8vh, 15px);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* bigword */
  .contact-bigword{
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: grid;
    place-items: center;
    opacity: 1;
    transform: translateY(-12%);
  }
  .bigword-track{
    display: inline-flex;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 84px;
    color: #fff;
    mix-blend-mode: normal;
    text-transform: uppercase;
  }
  .bigword-item{
    padding-right: 2vw;
  }

  /* 정보 그리드 */
  .contact-info-grid{
    margin-top: auto;
    margin-bottom: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 60px);
    align-items: start;
    padding: clamp(70px, 14vh, 160px) 0 clamp(30px, 6vh, 80px);
    transform: translateY(clamp(20px, 6vh, 70px));
  }
  .info-col{
    display: grid;
    gap: clamp(18px, 3vh, 28px);
  }
  .info-block h2{
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
  }
  .info-block a,
  .info-block p{
    margin: 0;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
  }
  .info-block a:hover{
    opacity: 0.7;
    text-decoration: underline;
  }

  /* 하단 바 (PC) */
  @media (min-width: 768px){
    main.contact-split .contact-bottombar{
      display: flex !important;
      justify-content: flex-end !important;
      align-items: flex-end !important;
      gap: 12vw !important;
      padding: 0 5vw !important;
      line-height: 1.6 !important;
      min-height: calc(1.6em * 2) !important;
      height: calc(1.6em * 2) !important;
      margin-top: auto !important;
    }
    main.contact-split .contact-bottombar > .cb-left,
    main.contact-split .contact-bottombar > .cb-center{
      height: 100% !important;
      display: flex !important;
      align-items: flex-end !important;
      margin: 0 !important;
      padding: 0 !important;
      line-height: 1.6 !important;
      font-size: 14px !important;
      font-weight: 400 !important;
    }
    main.contact-split .contact-bottombar .cb-center{
      display: flex !important;
      flex-direction: row !important;
      justify-content: flex-end !important;
      align-items: flex-end !important;
      gap: 12vw !important;
    }
    main.contact-split .contact-bottombar .cb-center a{
      display: block !important;
      line-height: 1.6 !important;
      margin: 0 !important;
      padding: 0 !important;
      color: inherit;
      text-decoration: none;
    }
    main.contact-split .contact-bottombar .cb-center a:hover{
      opacity: 0.7;
      text-decoration: underline;
    }
  }

  /* CONTACT 모바일 전체 레이아웃 – ✅ 최종 버전 */
  @media (max-width: 767px){
    .contact-split{
      position: relative;
      display: block;
      min-height: 100vh;
    }
    .contact-media{
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: 1;
      background: #000;
    }
    .contact-video{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .contact-stage{
      position: relative;
      z-index: 2;
      background: transparent;
      min-height: 100vh;
    }
    .contact-bigword{
      position: fixed;
      inset: 0;
      z-index: 3;
      display: grid;
      place-items: start center;
      padding-top: 18vh;
      transform: none;
      opacity: 1;
      pointer-events: none;
    }
    .bigword-track{
      font-size: clamp(38px, 10vw, 64px);
      color: #fff;
      mix-blend-mode: normal;
      font-weight: 600;
      white-space: nowrap;
    }
    .contact-content{
      position: relative;
      z-index: 4;
      height: 100vh;
      padding: 18vh 20px 12vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }
    .contact-info-grid{
      grid-template-columns: 1fr;
      padding: 40px 0;
      transform: none;
      margin: 0;
    }
    .info-col{ gap: 22px; }
    .info-block h2{
      font-size: 12px;
      letter-spacing: 0.12em;
      opacity: 0.9;
    }
    .info-block a,
    .info-block p{
      font-size: clamp(18px, 5vw, 24px);
      line-height: 1.45;
    }
    .contact-bottombar{
      margin-top: 8vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      min-height: auto;
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.9;
      line-height: 1.4;
    }
    .cb-center{
      display: block;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      font-size: 14px;
      font-weight: 400;
    }
    .cb-center a{
      display: block;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: inherit;
      text-decoration: none;
      line-height: 1.4;
    }
    .cb-center a:hover{ opacity: 0.7; }
    .media-caption{
      left: 20px;
      right: 20px;
      bottom: 18px;
      text-align: left;
      font-size: 11px;
    }
  }

  /* ================================
    스크롤바 숨기기
    ================================ */
  ::-webkit-scrollbar{
    width: 0;
    height: 0;
  }

  /* 페이지 전환 wipe */
  .page-wipe{
    position: fixed;
    inset: 0;
    background: var(--main-color);
    z-index: 99999;
    transform: translateY(100%);
    pointer-events: none;
  }
  .page-wipe.is-active{
    transition: transform 700ms cubic-bezier(.7,0,.2,1);
    transform: translateY(0);
  }
  body.is-wiping{
    transition: transform 700ms cubic-bezier(.7,0,.2,1);
    transform: translateY(-100vh);
  }

  /* ================================
    FOOTER – CHEW 스타일 + 빅 이미지
    ================================ */
  .footer-chew{
    position: relative;
    background: #171616;
    color: #fff;
    width: 100%;
    height: min(65vh, 1200px);
    padding: 28px 24px;
    overflow: hidden;
  }
  /* PC: footer-top/bottom 기본 레이아웃 */
  .footer-top{
    position: relative;   /* 오타 수정 */
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;

    /* 🔥 선 여백과 완전 동일 정렬 */
    width: 97.3vw;
    margin: 0 auto 14px;  /* 이미지랑 거리 */
    padding: 0;
}
.footer-top a{
    color: inherit;
    text-decoration: none;
}
.footer-top a:hover{ opacity: 0.7; }

.ft-left{
    font-weight: 500;
    line-height: 1.4;
}

.ft-center{
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

.ft-right{
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    text-align: right;
}

  /* 초대형 이미지 */
  .footer-bigword{
    position: absolute;
    left: 50%;
    top: 33.5%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
  }
  /* PC 기본 이미지 크기 */
  .footer-bigword img{
    width: auto;
    height: 830px;
    object-fit: cover;
    display: block;
  }

  /* 하단 카피 */
  .footer-bottom{
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .fb-center{ text-align: center; }
  .fb-right{ text-align: right; }

  /* footer-chew – 모바일 크기 전용 */
  @media (max-width: 767px){
    .footer-chew{
      height: 70vh;
      padding: 20px;
    }
  }

  /* footer 이미지 모바일 튜닝 */
  @media (max-width: 767px) {
    .footer-bigword img{
      height: 60vh;
      width: auto;
      object-fit: cover;
      transform: translateY(70px);
    }
  }

  /* 푸터 top/bottom – 모바일 전체 중앙 정렬 */
  @media (max-width: 767px){

    .footer-top{
      grid-template-columns: 1fr;
      gap: 10px;
      font-size: 14px;
      text-align: center;
      justify-items: center;
    }

    .ft-center{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex-wrap: nowrap;
    }

    .ft-right{
      text-align: center;
    }

    .footer-bottom{
      left: 20px;
      right: 20px;
      grid-template-columns: 1fr;
      gap: 6px;
      text-align: center;
      justify-items: center;
    }

    .fb-center,
    .fb-right{
      text-align: center;
    }
  }

  /* ================================
    FOOTER CONTACT STRIP (푸터 위)
    ================================ */
  .footer-contact{
    background: #171616;
    color: #fff;
    padding: 60px 6vw 80px;
  }
  .footer-contact-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1.2fr;
    column-gap: 6vw;
    align-items: flex-start;
    font-family: 'Roboto Flex', sans-serif;
  }
  .fc-col p{ margin: 0; }
  .fc-label{
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .fc-main{
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
  .fc-sub{ margin-top: 24px; }

  /* footer-contact – 모바일 */
  @media (max-width: 767px){
    .footer-contact{
      padding: 40px 20px 50px;
    }
    .footer-contact-inner{
      max-width: none;
      grid-template-columns: 1fr;
      row-gap: 28px;
    }
    .fc-main{
      font-size: 18px;
    }
    .footer-contact-inner,
    .fc-col{
      text-align: center;
    }
    .fc-col{
      align-items: center;
      display: flex;
      flex-direction: column;
    }
    /* SNS 영역(ft-right)가 모바일에서 세로스택 중앙 */
    .ft-right{
      display: flex;
      flex-direction: column;
      align-items: center;
    justify-content: center;
      gap: 6px;
      flex-wrap: nowrap;
    }
  }

  /* footer-contact – PC 정렬 미세 튜닝 */
  @media (min-width: 768px){
    .footer-contact{
      padding: 60px 6vw 80px;
    }
    .footer-contact-inner{
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 4vw;
      align-items: flex-start;
    }
    .fc-col-left{
      text-align: left;
      justify-self: flex-start;
    }
    .fc-col-center{
      text-align: center;
      justify-self: center;
    }
    .fc-col-right{
      text-align: right;
      justify-self: flex-end;
    }
  }

  /* ================================
    WORK PAGE
    ================================ */
  .work-page{
    background: var(--main-color);
    color: #fff;
    min-height: 100vh;
  }
  .work-hero{
    padding-top: 110px;
  }
  .work-hero-inner{
    width: 97.3vw;
    margin: 0 auto;
  }
  .work-hero-label{
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 18px;
  }
  .work-hero-title{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 9vw, 92px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* 중앙 메타 바 */
  .work-meta-bar{
  position: sticky;
  top: 70px;
  z-index: 40;
  background: var(--main-color);
  padding-top: 22px;
  padding-bottom: 6px;
}
  .work-meta-inner{
    width: 97.3vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
  }
  .work-meta-left{ text-align: left; }
  .work-meta-center{ text-align: center; }
  .work-meta-right{
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
  }
  .work-meta-line{
    width: 97.3vw;
    height: 1px;
    margin: 10px auto 0;
    background: rgba(255,255,255,0.22);
  }

  /* work shot 스트림 */
  .work-stream{
    width: 100%;
    padding-bottom: 0;
    background: var(--main-color);
  }
  /* ================================
   WORK SHOT – 좌우 이미지 + 반대편 텍스트
   ================================ */
.work-shot{
  width: 97.3vw;
  margin: 0px auto;
}

.work-shot-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3vw;
}

/* 이미지 영역 */
.work-shot-media{
  flex: 0 0 52vw;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.work-shot-media img,
.work-shot-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 텍스트 영역 (작게) */
.work-shot-text{
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.work-shot-text h3{
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.work-shot-text p{
  margin: 0;
  font-size: 12px;
  opacity: 0.85;
}

/* 왼쪽 이미지 → 오른쪽 텍스트 */
.work-shot--left .work-shot-inner{
  flex-direction: row;
}
.work-shot--left .work-shot-text{
  text-align: left;
  margin-right: 10.7vw;
}

/* 오른쪽 이미지 → 왼쪽 텍스트 */
.work-shot--right .work-shot-inner{
  flex-direction: row-reverse;
}
.work-shot--right .work-shot-text{
  text-align: right;
  margin-left: 10.7vw;
}

/* 모바일에서는 위아래로 쌓이게 */
@media (max-width: 767px){
  .work-shot{
    width: 100%;
    margin: 40px auto;
  }
  .work-shot-inner{
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .work-shot-media{
    flex: none;
    width: 88vw;
  }
  .work-shot-text{
    margin: 0;
    text-align: center !important;
    font-size: 11px;
  }
  .work-shot-text h3{
    font-size: 5px;
  }
}

  @media (max-width: 767px){
    .work-hero{
      padding-top: 90px;
    }
    .work-hero-inner{
      width: 100%;
      padding: 0 20px;
    }
    .work-meta-bar{
      top: 64px;
    }
    .work-meta-inner{
      width: 100%;
      padding: 0 20px;
      grid-template-columns: 1fr;
      row-gap: 4px;
      font-size: 11px;
    }
    .work-meta-left,
    .work-meta-center,
    .work-meta-right{
      text-align: left;
    }
    .work-meta-right{
      justify-content: flex-start;
      gap: 16px;
    }
    .work-meta-line{
      width: auto;
      margin-left: 20px;
      margin-right: 20px;
    }
    .work-shot{
    width: 100%;
    margin: 0 0 0; /* 위아래 정리 */
  }

  /* 모바일 이미지 크기 줄임: 브라우저 폭의 88~90% */
  .work-shot-media{
    width: 65vw;               /* 🔥 이미지 크기 줄이는 핵심 */
    aspect-ratio: 16/9;
    height: auto;
  }

  /* 왼쪽 배치 이미지 → 왼쪽 divider 기준(20px) */
  .work-shot--left .work-shot-media{
    margin-left: 20px;
    margin-right: auto;
  }

  /* 오른쪽 배치 이미지 → 오른쪽 divider 기준(20px) */
  .work-shot--right .work-shot-media{
    margin-right: 20px;
    margin-left: auto;
  }
}


/* 오른쪽 패널(스프레이 기준 부모) */
.contact-stage{
  position: relative;
  background: var(--main-color);
  overflow: hidden;
  z-index: 1;
}

/* 실제 콘텐츠는 위에 올라오게 */
.contact-content{
  position: relative;
  z-index: 2;
}

/* 🔥 스프레이 전체 레이어: 오른쪽 패널 전체 덮기 */
#stencil-wrapper{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 마우스 이벤트는 아래로 통과 */
}

/* 캔버스도 전체 덮기 */
#stencilCanvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 텍스트는 여전히 안 보이게 (마스크용) */
.stencil-text{
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 11vw, 160px);  /* 🔥 너무 안 커지게 상한 줄임 */
  text-transform: uppercase;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  pointer-events: none;
  letter-spacing: -0.04em;

  color: transparent;
  opacity: 0;     /* 마스크용이라 안 보이게 */

  width: 100%;
  max-width: 480px;      /* 🔥 우측 영역에서 차지할 폭 */
  white-space: normal;
  word-break: break-word;
  line-height: 0.35;
}

.stencil-text span{
  display:block;
  text-align: center;
}

.stencil-text span {
  display: block;
  margin: -0.05em 0;  /* 🔥 줄 간격 직접 제어 */
}


.conA .typing {
	font-size: 7vw; /* 🔥 여기 값 줄이면 크기 조정됨 */
	line-height: 0.8; /* 줄 간격도 필요하면 같이 조절 */
	font-weight: 600; /* 옵션 */

  color: #fff;
  text-shadow:
    0.2px 0px 0px #000,
    -0.2px 0px 0px #000,
    0px 0.2px 0px #000,
    0px -0.2px 0px #000,
    0.2px 0.2px 0px #000,
    -0.2px -0.2px 0px #000,
    0.2px -0.2px 0px #000,
    -0.2px 0.2px 0px #000;
}


/* 🔥 WORK 페이지: 메타 바 고정 풀고 같이 스크롤되게 강제 */
.work-page .work-meta-bar{
  position: static !important;
  top: auto !important;
}
  

/* 📱 Mobile: work 섹션에서 설명 텍스트 숨기기 */
@media (max-width: 767px){
  .work-shot-text p{
    display: none;
  }
}


  

/* 🔽 320px 모바일 최적화 (햄버거 안 잘리게) */
@media (max-width: 320px) {

  header .container {
    width: 100%;
    margin: 0;
    padding: 0 0px;  /* 좌우 여백만 살짝 주고 꽉 채우기 */
  }

  .headA {
    margin-left: 0;
    padding: 0 6px;          /* 로고 좌우 패딩 줄이기 */
    font-size: 18px;         /* 글자 크기 살짝 줄여서 자리 확보 */
    line-height: 56px;       /* 헤더 높이도 살짝 낮춰주기 */
  }

  header {
    height: 56px;
  }

  .headC {
    margin-right: 0;         /* 오른쪽 여백 제거 */
    transform: scale(0.9);   /* 햄버거 버튼 약간 축소 */
  }
}




html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;   /* 가로 스크롤 강제 제거 */
}

/* 혹시 래퍼가 있으면 같이 클램프 */
.site-wrapper,
.page-wrapper,
.index-hero {
  max-width: 100vw;
  overflow-x: hidden;
}

/* 공통 헤더 */
.site-header,
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;         /* => 폭이 항상 화면 폭이랑 같음 */
  z-index: 9999;
}

/* 햄버거 버튼 */
.header-menu-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10000;
}

/* 320px 근처에서 크기/위치 살짝 조정 */
@media (max-width: 390px) {
  .header-menu-btn {
    top: 10px;
    right: 12px;
    transform: scale(0.85);
  }
}

/* 📱 CONTACT 모바일에서 스프레이/빅워드 전부 끄기 */
@media (max-width: 767px){
  #stencil-wrapper,
  .contact-bigword {
    display: none !important;
  }
}

/* 📱 CONTACT 모바일 최종 오버라이드 – 영상 풀프레임 + 텍스트 오버레이 */
@media (max-width: 767px) {

  /* 섹션 래퍼 */
  body .contact-split{
    position: relative !important;
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  /* 왼쪽 영상 영역 → 모바일에선 화면 전체 배경 */
  body .contact-media{
    position: absolute !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1 !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  body .contact-video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* 스프레이 / 빅워드 효과는 모바일에서 완전히 끄기 */
  body #stencil-wrapper,
  body .contact-bigword{
    display: none !important;
  }

  /* 텍스트 들어가는 오른쪽 영역 → 오버레이 컨테이너 */
  body .contact-stage{
    position: relative !important;
    z-index: 2 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: transparent !important;
    padding: 0 !important;
  }

  /* 텍스트를 화면 중앙에 오버레이 */
  body .contact-content{
    position: absolute !important;
    z-index: 3 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 90vw !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    justify-content: center !important;
    text-align: center !important;
    color: #fff !important;
  }

  /* 안에 정보 그리드는 세로 한 줄로만 */
  body .contact-info-grid{
    margin: 0 !important;
    padding: 0 !important;
    grid-template-columns: 1fr !important;
    transform: none !important;
  }

  /* 하단 바는 화면 아래에 고정 */
  body .contact-bottombar{
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 20px !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: auto !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
    line-height: 1.4 !important;
  }

  body .cb-center{
    display: block !important;
    font-size: 12px !important;
    font-weight: 400 !important;
  }

  body .cb-center a{
    display: block !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.08em !important;
    color: inherit !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
  }

  /* 캡션도 영상 위에 위치 */
  body .media-caption{
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
    font-size: 11px !important;
    z-index: 3 !important;
    color: #fff !important;
    text-align: left !important;
    
  }
}

@media (max-width: 767px){
  body .media-caption{
    display: none !important;
  }
}