/* ============================================
   BRAND OWN PAGE (자사 브랜드)
   ============================================ */

/* 키 비주얼 히어로 */
.own-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.own-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/rorasay-hero.jpeg');
    background-size: cover;
    background-position: center;
}
.own-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}
.own-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
        margin-bottom: 30vh;
}
.own-brand-tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.own-brand-name {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 12px;
}
.own-brand-name-en {
    font-family: var(--font-en);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--mid);
    margin-bottom: 32px;
}
.own-brand-desc {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* 브랜드 소개 */
.own-about {
    padding: 100px 0;
    background: var(--white);
}
.own-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.own-about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.own-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lighter);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--mid);
}
.own-img-placeholder i { font-size: 48px; color: var(--primary-light); }
.own-img-placeholder p { font-size: 14px; }

.own-desc {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.9;
    margin-bottom: 36px;
}
.section-desc {
    max-width: 1920px;
}
.own-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.own-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.own-value-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.own-value h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.own-value p {
    font-size: 13px;
    color: var(--mid);
}

/* 제품 라인업 */
.own-products {
    padding: 100px 0;
    background: var(--lighter);
}
.own-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.own-product-placeholder {
    height: 320px;
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--mid);
    transition: var(--transition);
}
.own-product-placeholder:hover {
    border-color: var(--primary-light);
}
.own-product-placeholder i { font-size: 40px; color: var(--primary-light); }
.own-product-placeholder p { font-size: 13px; }

/* 반응형 */
@media (max-width: 1024px) {
    .own-about-grid { grid-template-columns: 1fr; gap: 48px; }
    .own-about-img { height: 360px; }
}
@media (max-width: 768px) {
    .own-product-grid { grid-template-columns: 1fr 1fr; }
    .own-hero { min-height: 500px; }
}
@media (max-width: 480px) {
    .own-product-grid { grid-template-columns: 1fr; }
}