body {
    margin: 0;
    color: #f2f2f2;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.menu-page {
    min-height: calc(100vh - 170px);
    max-width: 1600px;
    margin: 0 auto;
    padding: 150px 80px 90px;
    box-sizing: border-box;
}

.menu-page > * {
    opacity: 0;
    transform: translateY(24px);
    animation: menuFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.menu-page > *:nth-child(1) { animation-delay: 0.08s; }
.menu-page > *:nth-child(2) { animation-delay: 0.2s; }
.menu-page > *:nth-child(3) { animation-delay: 0.32s; }
.menu-page > *:nth-child(4) { animation-delay: 0.44s; }
.menu-page > *:nth-child(5) { animation-delay: 0.56s; }
.menu-page > *:nth-child(6) { animation-delay: 0.68s; }

.menu-page h1 {
    margin: 0 0 16px;
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.menu-page p {
    margin: 0;
    font-size: clamp(15px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

@keyframes menuFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 .ceo-page {
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: calc(100vh - 170px);
 }

 .ceo-intro {
     width: fit-content;
     max-width: 100%;
     margin: 0 auto;
     display: grid;
     grid-template-columns: auto auto;
     gap: clamp(52px, 6vw, 104px);
     align-items: center;
     justify-content: center;
     transform: none;
 }

 .ceo-portrait-wrap {
     position: relative;
     width: min(100%, 420px);
     margin: 0;
     justify-self: center;
     transform: none;
 }

 .ceo-portrait-wrap::before {
     content: "";
     position: absolute;
     inset: -14% -16%;
     background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.28) 24%, rgba(255, 255, 255, 0.14) 46%, rgba(255, 255, 255, 0) 74%);
     filter: blur(34px);
     opacity: 0.96;
     animation: ceoGlowOrbit 5.6s ease-in-out infinite;
     z-index: 0;
     pointer-events: none;
 }

 .ceo-portrait-wrap::after {
     content: "";
     position: absolute;
     inset: -18% -20%;
     background: radial-gradient(circle at 40% 42%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0) 62%);
     filter: blur(44px);
     opacity: 0.82;
     animation: ceoGlowPulse 4.1s ease-in-out infinite;
     z-index: 1;
     pointer-events: none;
 }

 .ceo-portrait {
     position: relative;
     display: block;
     width: 100%;
     height: auto;
     z-index: 2;
 }

 .ceo-image-badge {
     position: absolute;
    top: 50%;
     left: 50%;
    transform: translate(-50%, -50%);
     width: clamp(86px, 8.4vw, 112px);
     aspect-ratio: 1;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.16);
     border: 1px solid rgba(255, 255, 255, 0.32);
     box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     color: #111111;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     font-size: clamp(11px, 0.84vw, 13px);
     font-weight: 600;
     line-height: 1.35;
     padding: 14px;
     box-sizing: border-box;
     z-index: 3;
 }

 .ceo-copy {
     max-width: 620px;
     justify-self: center;
     text-align: left;
     padding-left: 0;
    --ceo-quote-gap: 10px;
 }

 .ceo-copy > * {
     opacity: 0;
     transform: translateY(22px);
     animation: ceoTextReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
 }

 .ceo-copy > *:nth-child(1) { animation-delay: 0.08s; }
 .ceo-copy > *:nth-child(2) { animation-delay: 0.2s; }
 .ceo-copy > *:nth-child(3) { animation-delay: 0.32s; }
 .ceo-copy > *:nth-child(4) { animation-delay: 0.44s; }
 .ceo-copy > *:nth-child(5) { animation-delay: 0.56s; }
 .ceo-copy > *:nth-child(6) { animation-delay: 0.68s; }

 .ceo-copy h1 {
     margin: 0 0 40px;
     font-size: clamp(28px, 3.6vw, 46px);
     line-height: 1.14;
     letter-spacing: -0.03em;
     background: linear-gradient(90deg, #3d4148 0%, #72767e 8%, #ffffff 22%);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     color: transparent;
 }

 .ceo-name {
    margin: 0;
     padding-top: 22px;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     font-size: clamp(16px, 1.32vw, 19px) !important;
     font-weight: 700 !important;
     color: rgba(255, 255, 255, 1) !important;
     letter-spacing: -0.02em;
 }

 .ceo-role {
     margin: 6px 0 0;
     font-size: 13px !important;
     color: rgba(255, 255, 255, 0.54);
     letter-spacing: 0.04em;
     text-transform: none;
 }

.ceo-copy .ceo-quote-mark {
    margin: 0;
    font-size: clamp(42px, 3.9vw, 62px) !important;
    line-height: 1 !important;
    color: rgba(255, 255, 255, 1) !important;
    font-family: "Times New Roman", "Georgia", serif;
    font-weight: 700;
    letter-spacing: -0.06em;
    display: block;
    height: 1em;
    width: fit-content;
}

.ceo-copy .ceo-quote-mark.ceo-quote-mark-bottom {
    margin: 0;
}

 .ceo-message {
    margin: 0;
     max-width: 620px;
     font-size: clamp(16px, 1.32vw, 19px);
     line-height: 1.95;
     color: rgba(255, 255, 255, 0.82);
     word-break: keep-all;
 }

.ceo-copy .ceo-quote-mark + .ceo-message {
    margin-top: calc(var(--ceo-quote-gap) - 14px);
}

.ceo-copy .ceo-message + .ceo-quote-mark-bottom {
    margin-top: var(--ceo-quote-gap);
}

.ceo-copy .ceo-quote-mark-bottom + .ceo-name {
    margin-top: var(--ceo-quote-gap);
}

 @keyframes ceoGlowOrbit {
     0%,
     100% {
         transform: translate3d(-2%, 0, 0) scale(0.94);
         opacity: 0.76;
     }
     35% {
         transform: translate3d(3%, -2%, 0) scale(1.08);
         opacity: 1;
     }
     65% {
         transform: translate3d(-1%, 3%, 0) scale(0.98);
         opacity: 0.9;
     }
 }

 @keyframes ceoGlowPulse {
     0%,
     100% {
         transform: scale(0.9);
         opacity: 0.52;
     }
     50% {
         transform: scale(1.14);
         opacity: 0.92;
     }
 }

 @keyframes ceoTextReveal {
     from {
         opacity: 0;
         transform: translateY(22px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 980px) {
     .ceo-page {
         min-height: auto;
     }

     .ceo-intro {
         grid-template-columns: 1fr;
         gap: 34px;
         transform: none;
     }

     .ceo-portrait-wrap {
         width: min(100%, 360px);
         margin: 0 auto;
         justify-self: center;
         transform: none;
     }

     .ceo-image-badge {
         top: 50%;
     }

     .ceo-copy {
         justify-self: start;
         padding-left: 0;
         max-width: 100%;
         --ceo-quote-gap: 8px;
     }
 }

 @media (max-width: 768px) {
    .menu-page {
        padding: 120px 20px 70px;
    }

    .menu-page h1 {
        font-size: clamp(24px, 7.2vw, 32px);
    }

     .ceo-copy h1 {
         font-size: clamp(24px, 7.4vw, 34px);
         margin-bottom: 18px;
     }

     .ceo-name {
         margin-top: var(--ceo-quote-gap);
         padding-top: 16px;
         font-size: clamp(16px, 1.32vw, 19px) !important;
     }

     .ceo-role {
         font-size: 13px !important;
         letter-spacing: 0.03em;
     }

    .ceo-copy .ceo-quote-mark {
        font-size: clamp(35px, 8vw, 48px) !important;
        margin: 0;
        line-height: 1 !important;
        height: 1em;
    }

     .ceo-message {
         font-size: 15px;
         line-height: 1.85;
     }
 }