@charset "UTF-8";


:root {
    --main-font: 'Montserrat', sans-serif;
    --title-font: 'Playfair Display', serif;

    --color-bg: #F4EFE8;
    --color-text: #f5f5f5;
    --color-accent: #d4af37; 
    --color-primary: #1b0426; 
    --main-color: #ed485c;

    --container-width: 1200px;
    --large-width: 1000px;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

    --bg-color: var(--color-bg);
    --text-bright-color: var(--color-text);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

body {
    margin: 0;
    font-family: var(--main-font);
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Header */
header {
    position: absolute;
    top: 0; left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255,255,255,0.9);
}

/* headerA : 로고 */
.headA{
    display: inline-block;
    line-height: 100px;
    padding: 20px;
}
.logo img {
    width: 220px;
    height: auto;
    display: block;
}

/* headerB : 네비게이션 */
.headB ul {
    margin: 0;
    padding: 0;
}

.headB a {
    position: relative;
    display: inline-block;
    padding: 15px;
    font-size: 12px;
    color: #111;                 
    text-decoration: none;
    transition: color 0.3s ease;
}

/* 하단 바 */
.headB a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--main-color); 
    transition: width 0.3s ease;
}

/* hover 글자색 + 하단바 */
.headB a:hover {
    color: var(--main-color);
}
.headB a:hover::after {
    width: 100%;
}

/* 드롭다운 기준 */
.headB ul li { position: relative; }

/* 서브메뉴 숨김 */
.headB .sub-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    min-width: 180px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
    padding: 10px 0;
    z-index: 200;
}

/* 서브메뉴 링크 */
.headB .sub-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 11px;
    white-space: nowrap;
    color: #111;
}

/* collection hover 시 */
.headB li.has-sub:hover > .sub-menu {
    display: block;
}

/* 꽃 아이콘 */
.headB .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 12px; height: 12px;
    transform: translateY(-50%) scale(0.3);
    opacity: 0;
    background-image: url("img/icon2.png");
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* 서브메뉴는 밑줄 제거 */
.headB .sub-menu li a::after { display: none; }

/* hover 시 아이콘/텍스트 */
.headB .sub-menu li a:hover {
    padding-left: 28px;
    color: var(--main-color);
}
.headB .sub-menu li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* PC 메뉴 배치 */
@media (min-width: 768px) {
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: var(--large-width);
        margin: auto;
    }
    .headB ul {
        display: flex;
    }
}

/* MOBILE (햄버거/슬라이드 메뉴) */
@media (max-width: 768px) {

    header .container-small {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 16px 0;
    }

    .headA {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        padding: 0;
    }

    .logo img { width: 230px; }

    .headC {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        font-size: 28px;
        opacity: 0.5;
        cursor: pointer;
    }
    .headC:hover { opacity: 0.3; }

    .headB { display: none; }

    .headB .sub-menu {
        position: static;
        border: none;
        min-width: auto;
        padding: 8px 0 0;
        margin: 0 0 8px 16px;
        background: transparent;
        display: none;
    }

    .headB li.has-sub.open > .sub-menu {
        display: block;
    }

    .headB .sub-menu li a {
        padding: 6px 0;
        font-size: 12px;
        line-height: 2.4;
        margin-left: 16px;
    }
}

@media (min-width:768px) {
    .headC { display: none; }
    .headB { display: block !important; }
}



/* headerC : 토글 버튼 - 모바일 전용 */
@media (max-width: 768px) {

	/* 헤더 안 작은 컨테이너 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: center;   /* 로고를 가운데로 */
		position: relative;
		padding: 16px 0;           /* 헤더 높이 확보 */
	}

	/* 로고 쪽 (가운데 정렬 – 이제 absolute 안 씀) */
	.headA {
		position: static;          /* 다시 기본 흐름으로 */
		left: auto;
		transform: none;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
		padding: 0;
	}

	.logo img {
		width: 230px;              /* 모바일용 로고 크기 */
		height: auto;
		display: block;
	}
	

	/* 햄버거 버튼 – 오른쪽에 고정 */
	.headC {
		position: absolute;
		right: 16px;
		top: 50%;
		transform: translateY(-50%);
		margin-right: 0;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}

	.headC:hover {
		opacity: 0.3;
	}

	/* 모바일에서 메뉴는 기본 숨김 */
	.headB {
		display: none;
	}
	.headB .sub-menu {
		position: static;
		border: none;
		min-width: auto;
		padding: 0;
	}

  	/* 모바일에서는 아래로 자연스럽게 밀리도록 static */
  	.headB .sub-menu {
    	position: static;
    	border: none;
    	padding: 8px 0 0;
    	margin: 0 0 8px 16px;    /* 왼쪽으로 살짝 들여쓰기 */
    	background: transparent;
    	display: none;           /* 기본은 숨김 */
  	}

  	/* COLLECTION(li.has-sub)에 .open 클래스가 붙었을 때만 보이게 */
  	.headB li.has-sub.open > .sub-menu {
    	display: block;
  	}	

  	.headB .sub-menu li a {
    	padding: 6px 0;
    	font-size: 12px;
    	line-height: 2.4;
		margin-left: 16px;  
  	}

}


@media (min-width:768px) {	
	/* pc 전용 */
	.headC {
		display: none;
	}
	.headB {
		display: block !important;
	}
}


/* 콘텐츠A: main-banner-image 히어로 이미지 Mobile */
.conA {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 450px;
	background-image: /* linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.1)), */ url(img/banner-2.jpg);
	background-position: center;
	background-size: cover;
	color:#fff;
	color:var(--text-bright-color);
	text-align: center;
}

/* Utility: Fade Up Animation Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER --- */
header {
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s;
}

header.scrolled {
    background: rgba(5, 3, 8, 0.8);
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 24px;
}

.gnb ul { display: flex; gap: 40px; }
.gnb a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
}
.gnb a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0%; height: 1px; background: var(--color-accent);
    transition: 0.4s var(--ease-out);
}
.gnb a:hover::after { width: 100%; }

/* Mobile Menu Button */
.menu-trigger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* --- [3] HERO SECTION (ConA) --- */
.conA {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image Background */
.hero-bg {
    position: absolute; inset: 0;
    background: url('img/index-miss4-2.jpg') center/cover no-repeat; /* 대표 이미지 */
    z-index: -1;
    filter: brightness(0.7);
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(5,3,8,1) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding-top: 10vh;
}

.hero-content h1 {
    font-family: var(--title-font);
    font-size: clamp(3rem, 8vw, 6rem); /* 반응형 폰트 사이즈 */
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
    color: var(--color-accent);
}

/* Scroll Indicator */
.scroll-down {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
    font-size: 12px; letter-spacing: 0.2em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}


.conB {
    position: relative;
    background: #fff; /* 밝은 반전 */
    color: #111;
    padding: 120px 0 100px;
    border-top-left-radius: 50% 100px; /* 돔 형태 */
    border-top-right-radius: 50% 100px;
    margin-top: -80px; /* Hero 섹션 위로 살짝 겹침 */
    z-index: 10;
}

.conB .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 768px){
  .philosophy-grid{
    grid-template-columns: 1fr; 
    gap: 36px;
  }
  .phil-icon{ margin-top: 20px; }  
}


.phil-item {
    text-align: center;
}

.phil-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-top: 50px;
    margin-bottom: 24px;
    transition: 0.3s;
}

.phil-item h3 {
    font-family: var(--title-font);
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.phil-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.phil-item:hover .phil-icon {
    color: var(--main-color);
    transform: scale(1.1);
}


/* Collection Preview in ConB */
.collection-preview {
    position: relative;
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cp-bg {
    margin-top: 80px;
    position: absolute; inset: 0;
    background: url('img/index-2025.jpeg') center/cover no-repeat;
    transition: transform 10s ease;
}
.collection-preview:hover .cp-bg { transform: scale(1.1); }

.cp-content {
    margin-top: 80px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    max-width: 600px;
    /* Glassmorphism */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5);
}

.cp-content h2 {
    font-family: var(--title-font);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.btn-link {
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 4px;
}

.btn-link:hover {
  color: var(--main-color);
}


/*  ConC  */
.conC {
    padding: 150px 0;
    background-color: var(--color-bg); /* 다시 어두운 배경 */
    background-image: radial-gradient(circle at 50% 0%, #1b0426 0%, #050308 60%);
}

.section-title {
    text-align: center;
    margin-bottom: 100px;
}

.section-title h2 {
    font-family: var(--title-font);
    font-size: 36px;
    color: var(--main-color);
    margin-bottom: 10px;
}
.section-title span {
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.works-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.work-item {
    width: 260px;
    height: 400px;
    position: relative;
    border-radius: 150px; /* 알약 모양 */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s var(--ease-out);
    border: 1px solid rgba(212, 175, 55, 0.3); /* 얇은 금색 테두리 */
}

/* 리듬감 있는 배치 (짝수 아이템 내리기) */
.work-item:nth-child(even) { margin-top: 80px; }

.work-img-wrap { width: 100%; height: 100%; position: relative; }
.work-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

/* Hover Overlay */
.work-overlay {
    position: absolute; inset: 0;
    background: rgba(27, 4, 38, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}
.work-overlay span {
    color: #fff; border: 1px solid #fff;
    padding: 10px 20px; border-radius: 30px;
    font-size: 12px; letter-spacing: 0.1em;
}

.work-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-color: var(--color-accent); }
.work-item:hover .work-img-wrap img { transform: scale(1.1); }
.work-item:hover .work-overlay { opacity: 1; }


/* ConD */
.conD {
    padding: 100px 0;
    background: #08060a;
}
.conD .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.news-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.1);
}

.news-image {
    height: 500px;
    background: url('img/index-miss2-2.jpg') center/cover no-repeat;
    position: relative;
}
.news-image::before {
    content: 'LATEST NEWS';
    position: absolute; top: 30px; left: 30px;
    font-size: 10px; letter-spacing: 0.2em;
    background: #fff; color: #000; padding: 5px 10px;
}

.news-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.news-text h3 {
    font-family: var(--title-font);
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.news-text p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 40px;
}


/* Custom Button */
.btn-outline {
    color: #fff;       
    text-decoration: none;
    align-self: flex-start;
    padding: 12px 30px;
    border: 1px solid #f1f1f1;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.btn-outline:hover {
    background: #fff; color: var(--main-color); border-color: #fff;
}


/* ConE */
.conE {
    position: relative;
    height: 60vh;
    background: fixed url('img/index-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.conE::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.6);
}
.conE-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}
.conE-content h2 {
    font-family: var(--title-font);
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}
.conE-content p {
    font-size: 16px;
    color: #f1f1f1;
    margin-bottom: 30px;
}






/* about 페이지 : post 작성 */

.about-page {
  background: #fff;
  margin-top: 110px;
}

/* 최대 너비 가이드 */
.about-hero-inner,
.about-intro-inner,
.about-arches-inner,
.about-global-dome {
  max-width: var(--large-width);
  margin: 0 auto;
}

/* 상단 프로필 히어로 */
.about-hero {
  padding-top: 120px;
  padding-bottom: 40px;
  background-image: url(img/fiower-bg.png);
  background-size: cover;
}

.about-hero-inner {
  position: relative;
  text-align: center;
}

.about-dot-top {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a5a5a5;
  margin-bottom: 24px;
}

/* 타원형 프로필 이미지 영역 */
.about-profile {
  width: 320px;
  height: 400px;
  margin: 0 auto 24px;
  border-radius: 50% / 60%;
  border: 8px solid #f0f0f0;
  box-shadow: 0 0 0 3px rgb(218, 167, 86);
  overflow: hidden;
}

.about-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-title {
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

/* 브랜드 / 창립자 소개 */
.about-intro {
  padding: 80px 0 100px;
  background: #ffffff;
}

.about-intro-inner {
  text-align: center;
}

.about-intro-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a5a5a5;
  margin-bottom: 18px;
}

.about-intro-line {
  width: 160px;
  height: 3px;
  background: #dedede;
  margin: 0 auto 40px;
}

.about-intro-text h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.about-intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* 아치형 카드 섹션 */
.about-arches {
  padding: 80px 0 120px;
  background-image: url("img/bg2.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
}

.about-arches-inner {
  padding: 0 20px;
}

.arches-row {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.arch-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  color: #fff;
}

.arch-shape {
  width: 100%;
  height: 300px;
  border-radius: 120px 120px 0 0;
  margin: 0 auto 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arch-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.arch-card:hover .arch-shape {
  transform: translateY(-10px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.04),
    0 28px 60px rgba(248, 138, 194, 0.1);
}

.arch-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.arch-card p {
  font-size: 13px;
  line-height: 1.8;
}

/* ==================================== */
/* 0. 변수 */
/* ==================================== */
:root {
    --main-pink: #E66779;
    --text-dark: #333;
    /* 추가적인 색상 변수나 폰트 변수를 여기에 정의할 수 있습니다. */
}

/* ==================================== */
/* 1. 섹션 배경 (이미지 적용) */
/* ==================================== */
.about-global {
    /* ★ 배경 이미지 설정 */
    background-image: url(img/banner-1.jpg); /* 여기에 실제 이미지 경로 입력 */
    background-size: cover; /* 배경 이미지가 섹션을 꽉 채우도록 */
    background-position: center center; /* 이미지 중앙 정렬 */
    background-repeat: no-repeat; /* 이미지 반복 방지 */
    
    /* 배경 이미지 위에 오버레이를 씌워 텍스트 가독성 높임 */
    position: relative;
    z-index: 1; /* 다른 요소 위에 오버레이가 오도록 */

    padding: 120px 0; /* 섹션 상하 여백 조정 */
}

/* 배경 이미지 위에 어두운 오버레이 추가 (가독성 및 분위기 조절) */
.about-global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% 불투명도 검은색 오버레이 */
    z-index: -1; /* 내용을 가리지 않도록 뒤로 보냄 */
}

/* 2. 메인 내용 (카드형 중앙 배치) */
.about-global-dome {
    background-color: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(5px); /* 은은한 블러 효과 */
    
    width: 100%;
    max-width: 800px; /* 카드 최대 폭 설정 */
    margin: 0 auto; /* ★ 가운데 정렬 */
    
    border-radius: 12px; /* 카드의 모서리 둥글게 */
    
    /* 상단 마진으로 배경 이미지와 카드 사이의 간격 조정 */
    margin-top: 50px; 
    /* 하단 마진으로 카드와 다음 섹션/푸터 사이의 간격 조정 */
    margin-bottom: 50px; 
    
    padding: 60px 50px; /* 카드 내부 패딩 */
    position: relative;
    z-index: 0; /* 오버레이보다 위로 */
    
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2); /* 카드의 그림자 강조 */
    border: 1px solid rgba(255, 255, 255, 0.7); /* 카드의 미세한 테두리 */
}

/* 3. 내부 텍스트 및 레이아웃 */
.about-global-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-global-text h2 {
    font-size: 28px; /* 제목 크기 키움 */
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.about-global-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #fff; 
    margin-bottom: 40px;
    font-weight: 300;
}

/* 가상의 상단 라인 */
.about-global-line-top {
    width: 60px;
    height: 2px; /* 살짝 두껍게 */
    background-color: var(--main-pink, #E66779);
    margin: 0 auto 35px;
}

.about-global-link {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--main-pink, #E66779); 
    color: var(--main-pink, #E66779); 
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border-radius: 6px; /* 버튼 모서리 둥글게 */
    font-weight: 500;
    text-decoration: none;
}

.about-global-link:hover {
    background-color: var(--main-pink, #E66779);
    color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(230, 103, 121, 0.4); 
    transform: translateY(-3px); /* 더욱 부각 */
}



/* 반응형 */
@media (max-width: 768px) {

  .about-hero {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .about-profile {
    width: 240px;
    height: 320px;
    border-width: 6px;
  }

  .about-hero-title {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .about-intro {
    padding: 60px 0 70px;
  }

  .about-arches {
    padding: 60px 0 90px;
  }

  .arches-row {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .arch-card {
    max-width: 280px;
  }

  .arch-shape {
    height: 220px;
  }

  .about-global {
        padding: 80px 0; /* 모바일 상하 패딩 조정 */
    }
    
    .about-global-dome {
        max-width: calc(100% - 40px); /* 좌우 여백 */
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 40px 25px; /* 모바일 패딩 조정 */
    }

    .about-global-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-global-text p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .about-global-line-top {
        margin-bottom: 25px;
    }

    .about-global-link {
        padding: 12px 30px;
        font-size: 15px;
    }
}


/* Collection 소개 */
:root{
  --maxw: 1000px;
  --stroke: #dcdcdc;
  --text: #111;
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:#fff;
}

/* 공통 section 폭 */
.section{
  width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.title-block{
  text-align:center;
  margin-top:100px;
  margin-bottom: 30px;
  padding-bottom:20px;
}
.title-block h1{ font-size:24px; margin:0; }
.title-block p{ margin-top:10px; opacity:.7; }


/* HERO MEDIA */
.hero-media{
  position: relative;
  width: 100%;
  max-width: 1000px;   
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-media .hero-video{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 스트록 */
.double-line{
  position:relative;
  padding:20px 0;
  margin-top:25px;
}
.double-line::before,
.double-line::after{
  content:"";
  position:absolute; left:0; right:0;
  height:1px; background:var(--stroke);
}
.double-line::before{
  top:0;
  box-shadow:0 6px 0 var(--stroke);
}
.double-line::after{
  bottom:0;
  box-shadow:0 -6px 0 var(--stroke);
}

/* 시즌 탭 텍스트형 */
.season-tabs{
  display:flex;
  justify-content:center;
  gap: 28px;
  margin-top: 25px;
  padding: 16px 0;
}

.tab{
  background: none;
  border: none;
  font-size: 15px;
  color: #777;
  cursor: pointer;
  padding: 6px 0;
  transition: color .25s ease, border .25s ease;
  letter-spacing: .01em;
}

.tab:hover{
  color: var(--main-color);
}

.tab.active{
  color: var(--main-color);
  font-weight: 600;
  border-bottom: 2px solid var(--main-color);   /* 🔥 텍스트만 강조 */
  padding-bottom: 4px;
}


/* Intro */
.intro{ text-align:center; margin-top:40px; }
.intro h2{ margin-bottom:14px; }
.intro-text{
  width:80%;
  margin:0 auto;
  line-height:1.6;
  font-size:14px;
  opacity:.8;
}

/* Circles */

.intro-circles{
  margin-top: 80px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* 아치 컨테이너 */
.intro-circles .circle{
  width: 260px;          
  aspect-ratio: 4 / 5;  
  border-radius: 999px; 
  overflow: hidden;      
  position: relative;

  outline: 2px solid var(--accent-gold);
  outline-offset: 8px;  
}

/* circle 안에 img가 있을 때 */
.intro-circles .circle img{
  width: 100%;
  height: 100%;          
  object-fit: cover;
  display: block;
}


/* LOOK LIST (4열) */
.look-list{ 
  margin-top:45px; 
  margin-bottom: 50px;
}

.look-ul{
  list-style:none; padding:0; margin:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.look-li{
  aspect-ratio:3/4.2;
  overflow:hidden;
}
.look-li img{
  width:100%; height:100%; object-fit:cover;
}

.look-li {
  position: relative;
  overflow: hidden;
}

.look-li img {
  transition: 0.3s ease;
}

.look-li:hover img {
  filter: brightness(70%);
  transform: scale(1.02);
}

/* MODAL */
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.img-modal img {
  max-width: 85%;
  max-height: 85%;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  user-select: none;
}

.nav-btn.prev { left: 30px; }
.nav-btn.next { right: 30px; }

.nav-btn:hover {
  color: #f0c8ff;
}



/* RESPONSIVE */
@media(max-width:900px){
  .section{ width:92%; }
  .look-ul{ grid-template-columns:repeat(3,1fr); }
}
@media(max-width:640px){
  .look-ul{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:430px){
  .look-ul{ grid-template-columns:1fr; }
}

/* 모바일에서만 좌우 여백 제거 + 화면 꽉 채우기 (비율 유지) */
@media (max-width: 768px){
  .hero-media{
    width: 100vw;              
    max-width: 100vw;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}


/* Press 소개 */

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

body {
    font-family: 'Montserrat', sans-serif;
    background: none;
    color: var(--text);
}

.feature--white {
    background-color: #ffffff !important;  /* 완전 화이트 */
    background-image: none !important;     /* 배경 텍스처 비활성화 */
}

/* 아래 EDITORIALS 슬라이더( feature--white ) 화살표만 위로 올리기 */
.feature--white .arrow {
    top: -50%;                 /* 숫자 줄일수록 더 위로 올라감 (40~30 사이에서 조절) */
    transform: translateY(-50%);
}


.page {
    padding-top: 100px;
    padding-bottom: 120px;
    max-height: 1000px;
    height: auto;
    overflow: visible;
}

.feature {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.press-bridge {
    width: 100%;
    height: 1000px;                 /* 원하는 이미지 높이 */
    overflow: hidden;
    position: relative;
    margin-top: -500px;
}

.press-bridge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);      /* 톤 맞출 때 유용 */
}


/* SLIDER BASE */
.slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* 텍스트 */
.feature-text {
    margin-top: 80px;
    width: 100%;
    max-width: 760px;
    text-align: center;
    line-height: 1.5;
}

.feature2-text {
    margin-top: 80px;
    width: 100%;
    max-width: 760px;
    text-align: center;
    line-height: 1.5;
}

/* 텍스트 위 / 슬라이더 아래 */
.feature-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    margin-bottom: 5px;
}

.feature2-text h2 {
    font-size: 22px;
    margin-top: -550px;
    margin-bottom: 10px;
}


.arch-row {
    position: relative;
    height: 420px;
    width: 100%;
    --side-offset: 265px;  
    margin-top: 80px;
}


.arch {
    position: absolute;
    overflow: hidden;
    background: #f1f1f1;
    opacity: 0;  /* 기본 0 */
    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.2,.8,.2,1),
        left .6s ease;
    z-index: 1;
}

.arch.is-center,
.arch.is-left,
.arch.is-right {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arch { 
    width: 280px; 
    height: 360px; 
}

.arch--top {
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
}

.arch--bottom {
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
    margin-top: -480px;
}

/* 가운데 기준 좌/중/우 배치 (PC용) */
.arch.is-center {
    left: 50%;
    transform: translateX(-50%) scale(1.18);
    z-index: 3;
}

.arch.is-left {
    left: calc(50% - var(--side-offset));
    transform: translateX(-50%) scale(1);
    z-index: 2;
}

.arch.is-right {
    left: calc(50% + var(--side-offset));
    transform: translateX(-50%) scale(1);
    z-index: 2;
}

.arch.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


/* hover overlay */
.arch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease;
}

.arch:hover .arch-overlay { 
    opacity: 1; 
}

.arch-name {
    color: #fff;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: flex;          
    align-items: center;
    justify-content: center;
}

/* SVG 아이콘 스타일 */
.arrow-svg {
    width: 22px;
    height: 22px;
    stroke: #666;   /* ★ 기본 화살표 색 */
    transition: transform .3s ease, stroke .3s ease;
}

.arrow--left { 
    left: -18px; 
}

.arrow--right { 
    right: -18px; 
}

.arrow:hover .arrow-svg {
    stroke: #000;           /* ★ hover 시 진하게 */
    transform: scale(1.1);
}


/* RESPONSIVE (브레이크포인트 980px) */
@media(max-width:980px) {
    .page { 
        width: 100%; 
    }

    .feature-text,
    .feature2-text {
        margin: 0 auto;
        text-align: center;
        font-size: 12px;
    }

    .arrow--left { 
        left: -18px; 
    }

    .arrow--right { 
        right: -18px; 
    }

    .arch-row { 
        --side-offset: 230px; 
    }
}


@media(max-width:780px){

    /* ⛔ PC 슬라이더 텍스트 offset 제거 */
    .feature2-text h2{
        margin-top: 20px !important;
    }

    /* ⛔ press-bridge 배경이 너무 커서 텍스트와 겹침 → 모바일에서 고정 높이 제거 */
    .press-bridge{
        height: auto !important;
        margin-top: 0 !important;
    }

    .press-bridge img{
        height: auto !important;
        max-height: 260px;
        object-fit: cover;
    }

    /* ⛔ 페이지 하단 패딩 줄여서 푸터와 공백 사라지게 */
    .page{
        padding-bottom: 40px !important;
        max-height: none !important;
    }

    /* ⛔ feature 아래쪽 여백 축소 */
    .feature{
        padding: 50px 16px !important;
    }

    /* ================
       🔥 ARCH SLIDER → MOBILE 2 GRID
       ================ */

    /* 부모를 2열 grid화 */
    .arch-row{
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        padding: 0 12px !important;
        height: auto !important;
        margin-top: 40px !important;
        --side-offset: 0 !important;
    }

    /* 아치 이미지 – 완전히 일반 카드처럼 변환 */
    .arch{
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3/4 !important;
        border-radius: 18px !important; /* 둥근 모서리로 아치 느낌 유지 */
    }

    /* 위/아래 아치 형태 제거 (모양 깨짐 방지) */
    .arch--top,
    .arch--bottom{
        border-radius: 18px !important;
        margin-top: 0 !important;
    }

    /* JS 클래스들 무시 */
    .arch.is-center,
    .arch.is-left,
    .arch.is-right,
    .arch.is-hidden{
        opacity: 1 !important;
        transform: none !important;
        left: 0 !important;
        visibility: visible !important;
    }

    /* hover overlay 모바일에서는 비활성화 */
    .arch-overlay{
        display: none !important;
    }

    /* 화살표 감추기 */
    .arrow{
        display: none !important;
    }

    /* ============================
       🔥 Footer mobile alignment
       ============================ */

    footer .container{
        padding: 40px 20px !important;
    }

    footer{
        text-align: center !important;
    }

    /* 푸터 3열 → 모바일 1열 */
    .footer-3col{
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-col{
        width: 100% !important;
        text-align: center !important;
    }

    .col-right .footD ul{
        justify-content: center !important;
    }

    .footer-bottom{
        padding: 20px 0 !important;
        text-align: center !important;
    }
}




/* contact */

/* 0. Common Variables & Reset */
:root {
  /* 필요하면 다른 페이지에서도 재사용 가능 */
  --contact-bg: #fff8f6;           /* 섹션 전체 배경 */
  --contact-arch-bg: #ffffff;      /* 아치 박스 배경 */
  --contact-border: #f1d4dd;       /* 기본 인풋 테두리 */
  --contact-focus: #f08ea7;        /* 포커스 컬러 */
  --contact-shadow: rgba(0, 0, 0, 0.04);
}

/* 섹션 래퍼 */
.contact-section {
  max-width: var(--large-width, 1000px); 
  margin: 300px auto 100px;
  padding: 0 20px;
  background: var(--contact-bg);
  border-radius: 420px 420px 0 0;       /* 배경도 아치 느낌 살짝 주기 */
}

/* 제목 */
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 -240px; 
  text-align: center;
  letter-spacing: 1px;
  color: var(--main-color);          /* 진한 로즈 */
}

/* 폼 박스 스타일 */
.contact-box {
  border-radius: 480px 480px 12px 12px;  
  background-color: var(--contact-arch-bg); 
  padding: 480px 40px 40px; 
  box-shadow:
    0 18px 45px var(--contact-shadow),
    0 0 0 1px rgba(241, 212, 221, 0.7);
}

/* ----------------------------------------------- */
/* ★ 항목 분할 레이아웃 (First/Last Name 등) */
/* ----------------------------------------------- */
.contact-row {
  margin-bottom: 25px; 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
}

/* 폼 그룹 (각 입력 필드와 라벨을 감싸는 컨테이너) */
.form-group {
  flex: 1; 
  min-width: 250px; 
}

/* 분할되지 않은 항목(이메일, 제목 등)은 100% 폭 사용 */
.contact-row:not(.split) > .form-group {
  flex-basis: 100%; 
}

/* 라벨 */
.contact-row label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

/* 인풋 / 셀렉트 / 텍스트에어리어 */
.contact-row input[type="text"],
.contact-row select,
.contact-row textarea {
  width: 100%;
  padding: 14px 16px; 
  border: 1px solid var(--contact-border);
  border-radius: 6px; 
  box-sizing: border-box;
  margin-top: 6px;
  resize: vertical;
  font-size: 15px;
  background-color: #fffdfd; 
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

/* 셀렉트 박스 스타일 - 화살표 커스텀 안 쓰는 가장 안전한 버전 */
.contact-row select {
  appearance: none;
  background-color: #fffdfd;
  padding-right: 35px;
}

/* 인풋 포커스 시 강조 효과 */
.contact-row input[type="text"]:focus,
.contact-row select:focus,
.contact-row textarea:focus {
  border-color: var(--contact-focus); 
  box-shadow:
    0 0 0 1px var(--contact-focus),
    0 0 0 6px rgba(240, 142, 167, 0.18); 
  outline: none;
  background-color: #fff; 
}

/* 제출 버튼 스타일 */
.btn-wrap {
  width: 100%;
  text-align: center;
  margin-top: 50px; 
}

.btn-wrap input[type=submit] {
  padding: 14px 40px;
  border-radius: 999px; 
  border: 2px solid var(--contact-focus); 
  background: linear-gradient(135deg, #ffffff, #ffe8f0); 
  color: var(--main-color); 
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Playfair Display', serif; 
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-wrap input[type=submit]:hover {
  background: var(--main-color); 
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(231, 99, 116, 0.35); 
}

/* ================================================= */
/* 3. Mobile Responsive Adjustments (항목 분할 해제) */
/* ================================================= */
@media (max-width: 768px) {
  .contact-section {
    margin: 120px auto 50px; 
    padding: 0 16px 30px;
    border-radius: 260px 260px 0 0;
  }

  .contact-title {
    font-size: 26px;
    margin: 0 0 -180px; 
  }

  .contact-box {
    padding: 280px 20px 30px; 
    border-radius: 300px 300px 10px 10px; 
    box-shadow:
      0 12px 32px var(--contact-shadow),
      0 0 0 1px rgba(241, 212, 221, 0.7);
  }
  
  /* 모바일: 분할된 항목(First/Last Name)을 세로로 재배치 */
  .contact-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    min-width: 100%;
    margin-bottom: 20px;
  }
}


/* conVE 비디오 및 컨테이너 */
.conVE {
    background-color: #000;
    color: var(--text-bright-color);
    padding-bottom: 0; /* 푸터와의 간격 제거 */
    margin-bottom: 0; 
    margin-top: 10px;
}

/* 텍스트 영역 스타일 */
.conVE .text {
    padding: 20px;
    max-width: 1000px; /* PC 너비와 일치시키거나 적절히 설정 */
    margin: 0 auto; 
}

.conVE h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.conVE p { 
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.conVE video {
    width: 100%; 
    height: auto; /* <--- 이 부분이 비율 유지 및 잘림 방지 핵심 */
    display: block; 
}


/* pc-콘텐츠VE: 컨테이너 너비 1000px 고정 (min-width: 768px 기준) */
@media (min-width: 768px) {
  .conVE .container {
    display: block;
    width: 1200px; /* <--- 요청하신 대로 1000px로 고정 */
    margin: 0 auto; /* 중앙 정렬 */
    margin-top: 120px;
  }
}




/* footer */
.miss-sohee-footer-compact {
    background-color: var(--main-color); /* 하단 바 색상 유지 */
    color: #FFFFFF;
    font-family: 'Playfair Display', serif; /* 세리프 폰트 유지 */
    padding: 0; /* 전체 푸터의 상단 패딩 제거 */
    margin-bottom: 0;
}

.footer-container-compact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 40px 35px; /* 상하 패딩을 줄여 높이 축소 */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: none; /* 하단 구분선(스트로크) 제거 */
}

/* 좌측 브랜드 및 연락처 정보 */
.footer-left-compact {
    flex: 1;
    min-width: 280px;
    margin-right: 40px;
}

.footer-logo-compact {
    font-size: 1.8em;
    margin-bottom: 18px; /* 간격 축소 */
    font-weight: 500;
    letter-spacing: 1px;
}

.address-compact,
.email-compact {
    font-size: 0.9em;
    line-height: 1.4; /* 줄 간격 축소 */
    margin-bottom: 6px; /* 간격 축소 */
    opacity: 0.8;
}

.email-compact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.email-compact a:hover {
    opacity: 1;
}

.social-icons-compact {
    margin-top: 25px; /* 간격 축소 */
}

.social-icons-compact a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 1.1em;
    margin-right: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icons-compact a:hover {
    opacity: 1;
}

/* 우측 정책 링크 (데스크톱 기본 스타일) */
.footer-right-compact {
    min-width: 180px;
    margin-top: 0.2em;
}

.policy-links-mobile-compact {
    display: flex;
    flex-direction: column; /* 데스크톱에서는 세로 정렬 유지 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-links-mobile-compact a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 10px; /* 데스크톱 링크 간격 축소 */
    transition: opacity 0.3s;
}

.policy-links-mobile-compact a:hover {
    opacity: 1;
}


/* 하단 저작권 바 */
.footer-bottom-bar-compact {
    padding: 20px 40px; /* 상하 패딩을 줄여 높이 축소 */
    text-align: center;
    font-size: 0.8em;
    opacity: 0.9;
}

/* 모바일 반응형 디자인 (max-width: 768px 이하) */
@media (max-width: 768px) {
    .footer-container-compact {
        flex-direction: column;
        align-items: center;
        padding: 30px 40px; /* 모바일 상하 패딩 조정 */
        text-align: center;
    }

    .footer-left-compact {
        margin-right: 0;
        margin-bottom: 30px; /* 모바일 섹션 간 간격 축소 */
        width: 100%;
    }
    
    .footer-right-compact {
        min-width: unset;
        width: 100%;
        margin-top: 0;
    }

    .footer-logo-compact {
        margin-bottom: 15px;
    }

    .social-icons-compact {
        margin-top: 20px;
    }

    .policy-links-mobile-compact {
        flex-direction: row; /* 가로 정렬 */
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 15px; /* 모바일 정책 링크 하단 간격 축소 */
    }

    .policy-links-mobile-compact a {
        margin: 0 8px;
        margin-bottom: 0;
        position: relative;
        padding: 0;
    }

    .policy-links-mobile-compact a:not(:last-child)::after {
        content: "|";
        position: relative;
        left: 8px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9em;
    }
}

/* 추가적인 모바일 화면 최적화 */
@media (max-width: 480px) {
    .footer-container-compact,
    .footer-bottom-bar-compact {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-logo-compact {
        font-size: 1.6em;
    }
    .social-icons-compact a {
        margin-right: 15px;
    }
    .policy-links-mobile-compact a {
        font-size: 0.85em;
    }
    .policy-links-mobile-compact a:not(:last-child)::after {
        left: 6px;
    }
}