/* 모든 요소의 기본 여백 제거 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 부드러운 스크롤 */
html {
    scroll-behavior: smooth;
}


/* 홈페이지 전체 설정 */
body {
    background-color: #ffffff;
    color: #111111;
    font-family: Arial, "Noto Sans KR", sans-serif;
}


/* 링크 기본 밑줄 제거 */
a {
    color: inherit;
    text-decoration: none;
}


/* 버튼 기본 스타일 제거 */
button {
    border: none;
    background: none;
    cursor: pointer;
}


/* =========================
   상단 헤더
========================= */

.header {
    width: 100%;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background-color: #ffffff;

    position: relative;
    z-index: 10;
}


/* 로고 */
.logo {
    width: 300px;
    display: block;
    transition: 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}


/* 메뉴 */
.nav {
    display: flex;
    align-items: center;
    gap: 60px;
}


/* 메뉴 글씨 */
.nav a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
}





/* 오른쪽 햄버거 버튼 */
.menu-button {
    width: 32px;
    height: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* 햄버거 선 */
.menu-button span {
    width: 100%;
    height: 1px;

    display: block;

    background-color: #111111;
}


/* =========================
   메인 첫 화면
========================= */

.hero {
    min-height: 680px;

    display: grid;
    grid-template-columns: 43% 57%;

    background-color: #f8f8f8;

    margin-bottom:24px;
}


/* 왼쪽 텍스트 영역 */
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 11vw;
    padding-right: 40px;
}


/* 작은 제목 */
.hero-small-title {
    margin-bottom: 28px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #333333;
    font-weight: 500;
}


/* 큰 제목 */
.hero h1 {
    font-size: clamp(58px, 5.8vw, 98px);
    line-height: 0.9;
    letter-spacing: -3px;
    font-weight: 800;
}


/* 설명 */
.hero-description {
    margin-top: 44px;
    max-width:460px;
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
}


/* ABOUT US 링크 */
.hero-link {
    width: 165px;

    margin-top: 36px;
    padding-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #111111;

    font-size: 14px;
    font-weight: 600;
}


/* 화살표 */
.hero-link span {
    font-size: 23px;

    transition: transform 0.3s ease;
}


/* 링크에 마우스 올리기 */
.hero-link:hover span {
    transform: translateX(7px);
}


/* 오른쪽 이미지 영역 */
.hero-image{
    position: relative;

    overflow: hidden;

    min-height:680px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform 1.5s ease;
    object-position: 60% center;
}


/* =========================
   가치 영역
========================= */

.values {
    display: grid;
       grid-template-columns:1fr 1.15fr 1fr;


    padding: 80px 8vw;

    background-color: #fcfbf8;
    border-bottom: 1px solid #eeeeee;
}



/* 각 가치 항목 */
.value-item {

    min-height: 170px;

    padding: 0 45px;

    border-right: 1px solid #e8e8e8;

    display: flex;
    flex-direction: column;
}

/* 첫 번째 칸 */
.value-item:first-child {
    padding-left: 0;
}


/* 마지막 칸 */
.value-item:last-child {
    padding-right: 0;
    border-right: none;
}


/* 번호 */

.number {

    display: block;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .18em;

    color: #9b7757;

}


/* 제목 */

.value-item h2 {

    margin-bottom: 20px;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .08em;

    color: #111;

}


/* 설명 */

.value-item p {

    font-size: 15px;

    line-height: 1.9;

    color: #555;

}




/* =========================
   태블릿과 모바일
========================= */

@media (max-width: 1000px) {

    .header {
        height: 85px;
        padding: 0 30px;
    }

    .nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-text {
        min-height: 570px;

        padding: 80px 30px;
    }

    .hero-image {
        min-height: 500px;
    }

    .values {
        grid-template-columns: 1fr;

        padding: 30px;
    }

    .value-item {
        min-height: auto;

        padding: 35px 0;

        border-right: none;
        border-bottom: 1px solid #dddddd;
    }

    .value-item:last-child {
        border-bottom: none;
    }

}


@media (max-width: 600px) {

    .logo {
    width: 200px;
}

    .hero-text {
        min-height: 510px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-description br {
        display: none;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image {
        min-height: 360px;
    }

}
/* ==================================================
   MAIN HERO COPY FINAL
================================================== */

.hero-title {
    margin: 24px 0 20px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 6.2vw, 112px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -5px;

    color: #111111;
}

.hero-slogan {
    margin: 0 0 34px;

    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.4px;

    color: #9b7757;
}

.hero-description {
    margin-bottom: 36px;

    font-size: 16px;
    line-height: 1.9;

    color: #4d4a46;
}


/* 태블릿 */

@media (max-width: 1100px) {

    .hero-title {
        font-size: 76px;
        letter-spacing: -4px;
    }

    .hero-slogan {
        font-size: 20px;
    }
}


/* 모바일 */

@media (max-width: 600px) {

    .hero-title {
        margin-top: 20px;

        font-size: 54px;
        line-height: 0.95;
        letter-spacing: -3px;
    }

    .hero-slogan {
        margin-bottom: 28px;

        font-size: 17px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ==================================================
   MAIN HERO 최종 정리
================================================== */

.hero {
    width: 100%;
    min-height: 720px;

    display: grid;
    grid-template-columns: 43% 57%;

    background-color: #f8f7f5;
    overflow: hidden;
    margin-bottom:24px;
}


/* 왼쪽 문구 */

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    

    padding:80px 5vw 80px calc(11vw + 10px);

}


.hero-label{

    margin-bottom:44px;

    font-size:12px;
    font-weight:500;

    letter-spacing:.38em;

    color:#444;

}

.hero-title {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 6vw, 108px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -5px;

    color: #111111;
}

.hero-slogan{

    margin:30px 0 38px;

    font-size:23px;

    font-weight:500;

    line-height:1.6;

    color:#9b7757;

}

.hero-description {
    margin: 0 0 35px;

    font-size: 15px;
    line-height: 1.9;

    color: #4d4a46;
}


/* ABOUT US 링크 */

.hero-about-link {
    width: 170px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 0 14px;

    border-bottom: 1px solid #222222;

    font-size: 13px;
    font-weight: 600;

    color: #111111;
    text-decoration: none;
}

.hero-arrow {
    font-size: 18px;
    font-weight: 400;
}


/* 오른쪽 이미지 */

.hero-image {
    min-width: 0;
    min-height: 720px;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* 태블릿 */

@media (max-width: 1100px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 90px 50px;
    }

    .hero-image {
        min-height: 600px;
    }

    .hero-title {
        font-size: 78px;
    }
}


/* 모바일 */

@media (max-width: 600px) {

    .hero-copy {
        padding: 70px 24px;
    }

    .hero-label {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 55px;
        line-height: 0.94;
        letter-spacing: -3px;
    }

    .hero-slogan {
        margin: 25px 0 28px;
        font-size: 17px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-description br {
        display: none;
    }

    .hero-image {
        min-height: 450px;
    }
}

/* ==================================================
   FULL SCREEN MENU
================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
        circle at 70% 40%,
        #ffffff 0%,
        #f8f4ee 55%,
        #f3ece4 100%
    );

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    transition:
    opacity 0.5s cubic-bezier(.22,.61,.36,1),
    visibility 0.5s ease,
    transform 0.5s cubic-bezier(.22,.61,.36,1);
}


/* 메뉴 열림 */

.menu-overlay.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* 내부 */

.menu-overlay-inner {
    width: min(760px, 85%);

    text-align: center;

     transform: translateY(20px);
}


/* DRIZZLE ENTERTAINMENT */

.overlay-label {
    margin: 0 0 55px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.38em;

    color: #a98260;
}


/* 메뉴 */

.overlay-nav {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 13px;
}


.overlay-nav a {
    position: relative;

    display: flex;
    align-items: baseline;

    min-width: 390px;

    padding: 9px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    color: #181716;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* 번호 */

.overlay-nav a span {
    width: 55px;

    margin-right: 22px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.16em;

    color: #b89572;
}


/* hover */

.overlay-nav a:hover {
    color: #9b7757;

    transform: translateX(8px);
}


/* 하단 */

.overlay-bottom {
    margin-top: 65px;

    display: flex;
    flex-direction: column;

    align-items: center;
}


/* 작은 물방울 */

.overlay-drop {
    display: block;

    width: 18px;
    height: auto;

    margin: 0 auto 14px;
}


.overlay-bottom p {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;
    font-weight: 400;

    letter-spacing: 0.04em;

    color: #8d7967;
}

/* ==================================================
   HAMBURGER ANIMATION
================================================== */

/* ==================================================
   HAMBURGER / CLOSE ANIMATION
================================================== */

.menu-button {
    position: relative;
    z-index: 1001;

    width: 32px;
    height: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 8px;

    padding: 0;
}

.menu-button span {
    width: 100%;
    height: 1px;

    display: block;

    background-color: #111111;

    transform-origin: center;

    transition:
        transform 0.4s cubic-bezier(.22,.61,.36,1),
        background-color 0.3s ease;
}


/* 햄버거 → X */

.menu-button.active span:first-child {
    transform:
        translateY(4.5px)
        rotate(45deg);
}

.menu-button.active span:last-child {
    transform:
        translateY(-4.5px)
        rotate(-45deg);
}


/* 메뉴 열렸을 때 스크롤 막기 */

body.menu-open {
    overflow: hidden;
}


/* ==================================================
   MOBILE FULL MENU
================================================== */

@media (max-width: 700px) {

    .overlay-label {
        margin-bottom: 40px;
    }

    .overlay-nav {
        gap: 15px;
    }

    .overlay-nav a {
        min-width: 280px;

        font-size: 42px;

        letter-spacing: -1px;
    }

    .overlay-nav a span {
        width: 38px;

        margin-right: 15px;

        font-size: 9px;
    }

    .overlay-bottom {
        margin-top: 50px;
    }

}

/* ==================================================
   OVERLAY MENU ITEM ANIMATION
================================================== */

/* 기본 상태: 살짝 아래 + 투명 */
.overlay-nav a {
    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        color 0.3s ease;
}


/* 메뉴가 열렸을 때 등장 */
.menu-overlay.open .overlay-nav a {
    opacity: 1;
    transform: translateY(0);
}


/* 순서대로 등장 */
.menu-overlay.open .overlay-nav a:nth-child(1) {
    transition-delay: 0.08s;
}

.menu-overlay.open .overlay-nav a:nth-child(2) {
    transition-delay: 0.16s;
}

.menu-overlay.open .overlay-nav a:nth-child(3) {
    transition-delay: 0.24s;
}

.menu-overlay.open .overlay-nav a:nth-child(4) {
    transition-delay: 0.32s;
}

.menu-overlay.open .overlay-nav a:nth-child(5) {
    transition-delay: 0.40s;
}

/* ==================================================
   PAGE FADE TRANSITION
================================================== */

/* 페이지가 처음 열릴 때 */
body {
    animation: pageFadeIn 0.22s ease;
}


/* 다른 페이지로 이동하기 직전 */
body.page-leaving {
    opacity: 0;

    transition: opacity 0.22s ease;
}


/* 처음 들어왔을 때 자연스럽게 나타남 */
@keyframes pageFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==================================================
   SCROLL REVEAL
================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        transform .9s cubic-bezier(.22,.61,.36,1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================
   SCROLL REVEAL DELAY
================================================== */

.reveal-delay-1 {
    transition-delay: 0.05s;
}

.reveal-delay-2 {
    transition-delay: 0.10s;
}

.reveal-delay-3 {
    transition-delay: 0.15s;
}

/* ==================================================
   HOVER DETAIL
================================================== */

/* 상단 메뉴 */
.nav a {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav a:hover {
    color: #9b7757;
    
}


/* ABOUT US 같은 텍스트 링크 */
.hero-about-link {
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.hero-about-link:hover {
    color: #9b7757;
    border-color: #9b7757;
}


/* BUSINESS / AUDITION 카드 */
.process-card,
.business-service article {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.process-card:hover,
.business-service article:hover {
    transform: translateY(-4px);
}

.process-card:hover {
    box-shadow: 0 18px 38px rgba(70, 50, 30, 0.08);
}

/* HERO 이미지 움직임 부드럽게 */

.hero-image img,
.about-hero-visual img,
.business-image img,
.audition-image img {
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

/* ==================================================
   MAIN HOVER DETAILS
================================================== */

/* 1. 상단 메뉴 */
.nav a {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav a:hover {
    color: #9b7757;
}


/* 2. ABOUT US 링크 */
.hero-about-link {
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.hero-about-link:hover {
    color: #9b7757;
    border-color: #9b7757;
}


/* ABOUT US 화살표 */
.hero-about-link .hero-arrow {
    transition: transform 0.3s ease;
}

.hero-about-link:hover .hero-arrow {
    transform: translateX(6px);
}


/* 3. 메인 VISION / MISSION / VALUE */
.value-item {
    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.value-item:hover {
    transform: translateY(-4px);
}


/* 번호만 살짝 진하게 */
.value-item .number {
    transition: color 0.3s ease;
}

.value-item:hover .number {
    color: #7f5f44;
}


/* 제목 */
.value-item h2 {
    transition: color 0.3s ease;
}

.value-item:hover h2 {
    color: #9b7757;
}

/* ==================================================
   NAV UNDERLINE FINAL
================================================== */

/* ==================================================
   COMMON HEADER NAV FINAL
================================================== */

.header .nav {
    display: flex;
    align-items: center;
    gap: 52px;
}

.header .nav a {
    position: relative;

    padding: 0;

    font-family: Arial, "Noto Sans KR", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;

    color: #111111;

    transition: color 0.3s ease;
}

.header .nav a:hover {
    color: #9b7757;
}


/* 밑줄 */
.header .nav a::after {
    content: "";

    position: absolute;

    left: -3px;
    right: -3px;

    bottom: -5px;

    width: auto;
    height: 1px;

    background-color: #77726d;

    opacity: 0;

    transition: opacity 0.3s ease;
}


/* Hover */
.header .nav a:hover::after {
    opacity: 1;
}


/* 현재 페이지 */
.header .nav a.active::after {
    opacity: 1;
}

/* ==================================================
   MOBILE HEADER FINAL
================================================== */

@media (max-width: 1000px) {

    .header {
        height: 78px;
        padding: 0 22px;
    }

    /* PC 메뉴 숨기기 */
    .header .nav {
        display: none;
    }

    /* 로고 */
    .header .logo {
        width: 190px;
        display: block;
        flex-shrink: 0;
    }

    .header .logo img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 햄버거 */
    .header .menu-button {
        display: flex;

        width: 29px;
        height: 20px;

        flex-shrink: 0;
    }

}

/* ==================================================
   MAIN MOBILE HERO FINAL
================================================== */

@media (max-width: 600px) {

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }

    .hero-copy {
        min-height: auto;
        padding: 56px 24px 54px;
    }

    .hero-label {
        margin-bottom: 22px;

        font-size: 10px;
        letter-spacing: 0.34em;
    }

    .hero-title {
        font-size: 52px;
        line-height: 0.92;
        letter-spacing: -3px;
    }

    .hero-slogan {
        margin: 24px 0 28px;

        font-size: 16px;
        line-height: 1.6;
    }

    .hero-description {
        margin-bottom: 30px;

        font-size: 13px;
        line-height: 1.85;
    }

    .hero-about-link {
        width: 150px;

        padding-bottom: 10px;

        font-size: 12px;
    }

    .hero-image {
        min-height: 380px;
    }
}

/* ==================================================
   MAIN MOBILE VALUES FINAL
================================================== */

@media (max-width: 600px) {

    .values {
        grid-template-columns: 1fr;
        padding: 18px 20px 28px;
        background-color: #fcfbf8;
    }

    .value-item {
        min-height: auto;

        padding: 30px 0;

        border-right: none;
        border-bottom: 1px solid #e2ddd7;
    }

    .value-item:first-child {
        padding-top: 26px;
    }

    .value-item:last-child {
        padding-bottom: 12px;
        border-bottom: none;
    }

    .value-item .number {
        margin-bottom: 12px;

        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .value-item h2 {
        margin-bottom: 12px;

        font-size: 16px;
        letter-spacing: 0.06em;
    }

    .value-item p {
        font-size: 14px;
        line-height: 1.8;
    }

}

/* ==================================================
   EXTRA SMALL MOBILE - 320px
================================================== */

@media (max-width: 340px) {

    .header {
        padding: 0 18px;
    }

    .header .logo {
        width: 165px;
    }

    .hero-copy {
        padding: 50px 20px 48px;
    }

    .hero-label {
        font-size: 9px;
        letter-spacing: 0.28em;
    }

    .hero-title {
        font-size: 46px;
        line-height: 0.92;
        letter-spacing: -2.5px;
    }

    .hero-slogan {
        font-size: 15px;
        margin: 22px 0 24px;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.8;
    }

    .hero-about-link {
        width: 135px;
        font-size: 11px;
    }

    .hero-image {
        min-height: 340px;
    }
}
/* ==================================================
   MOBILE KOREAN TYPOGRAPHY FIX — iPhone / Android
================================================== */
@media (max-width: 600px) {
    .hero-slogan,
    .hero-description {
        word-break: keep-all;
        overflow-wrap: normal;
    }

    .hero-description {
        max-width: 360px;
    }
}
