@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-ExtraLight.woff2);
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-Light.woff2);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-SemiBold.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-Bold.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-Light.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-ExtraLight.woff2);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-SemiBold.woff2);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'MaruBuri';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/MaruBuri/MaruBuri-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}


/* 회사소개 페이지 스타일 */

body {
    background: #fff;
}

/* Company Page */
.company-page {
    background: #fff;
    --company-accent-primary: #b58374;
    --company-accent-secondary: #ffc9b9;
    --company-accent-dark: #8c4b1f;
}

/* Hero Section */
.hero-section {
    padding: 130px 0;
    background: url(https://d1gwlf1t9hpxea.cloudfront.net/static/images/user/bg-company.jpg);
    border-bottom: 1px solid #f0f0f0;
    background-position:70%;
    background-size:cover;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    color: #fff; 
    line-height: 1.1;
    font-family:'MaruBuri'
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--company-accent-primary);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.hero-ceo {
    font-size: 24px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
}

.hero-ceo span {
    font-weight: 800;
    font-size: 28px;
    color: #1a1a1a;
    margin-left: 8px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.content-image {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.company-intro {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-intro > li {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.company-intro > li:last-child {
    border-bottom: none;
    margin-bottom: 60px;
    padding-bottom: 0;
}

.company-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.company-intro p:last-child {
    margin-bottom: 0;
}

.company-intro strong {
    color: var(--company-accent-primary);
    font-weight: 700;
}

.signature {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 3px solid var(--company-accent-primary);
    text-align: right;
}

.signature p {
    font-size: 18px;
    color: #666; 
    line-height: 1.6;
}

.signature p:last-child {
    margin-bottom: 0;
}

.signature strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 20px;
}

/* Brand Section */
.brand-section {
    padding: 90px 0;
    background: #f7f0ee;
    /* border-top: 1px solid rgba(217, 96, 59, 0.2); */
}

.brand-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--company-accent-dark);
}

.brand-subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: rgba(140, 75, 31, 0.8);
    word-break: keep-all;
}

.brand-narrative {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-narrative p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.brand-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #eceef5;
}

.brand-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer {margin-top:0;}


/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0;
    }

    .hero-wrapper {
        gap: 60px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-ceo {
        font-size: 20px;
    }

    .hero-ceo span {
        font-size: 24px;
    }

    .content-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 50px;
    }

    .colors-list {
        gap: 24px;
    }

    .color-box {
        width: 90px;
        height: 90px;
    }


    .company-intro p {
        font-size:16px;
    }

}

@media (max-width: 768px) {

    .hero-section {
        padding: 80px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .hero-ceo {
        font-size: 18px;
    }

    .hero-ceo span {
        font-size: 22px;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-image {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }

    .company-intro > li {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .signature {
        margin-top: 40px;
        padding: 24px 0;
    }

    .signature p {
        font-size: 16px;
    }

    .signature strong {
        font-size: 18px;
    }

    .brand-section {
        padding: 60px 0;
    }

    .brand-intro {
        margin-bottom: 40px;
    }

    .brand-intro p {
        font-size: 17px;
    }

    .brand-logo {
        margin-bottom: 60px;
        padding: 40px;
    }

    .brand-logo img {
        height: 50px;
    }

    .colors-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .colors-list {
        gap: 20px;
    }

    .color-box {
        width: 80px;
        height: 80px;
    }

    .color-code {
        font-size: 12px;
    }

    .brand-title {
        font-size:30px;
    }



}

@media (max-width: 480px) {


    .hero-section {
        padding: 60px 0;
    }

    .hero-wrapper {
        gap: 30px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .hero-ceo {
        font-size: 16px;
    }

    .hero-ceo span {
        font-size: 19px;
    }

    .hero-image {
        max-width: 100%;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-image {
        max-width: 70%;
    }

    .company-intro > li {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .company-intro p {
        font-size: 15px;
    }

    .signature {
        margin-top: 30px;
        padding: 20px 0;
    }

    .signature p {
        font-size: 15px;
    }

    .signature strong {
        font-size: 17px;
    }

    .brand-section {
        padding: 40px 0;
    }

    .brand-intro {
        margin-bottom: 30px;
    }

    .brand-intro p {
        font-size: 16px;
    }

    .brand-logo {
        margin-bottom: 40px;
        padding: 30px 20px;
    }

    .brand-logo img {
        height: 40px;
    }

    .colors-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .colors-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .color-box {
        width: 120px;
        height: 70px;
    }

    .color-code {
        font-size: 12px;
    }



    .brand-narrative {
        padding:20px;
    }

    .brand-narrative p {
        font-size:15px;
    }

    .brand-title {font-size:26px;}



}
