/* IDNT.STUDIO Swiss Editorial Minimalist Stylesheet */

:root {
    --bg-color: #dcdcdc;
    --card-bg: #dcdcdc;
    --text-primary: #0a0a0a;
    --text-muted: #555555;
    --border-color: #b5b5b5;
    --border-subtle: #c8c8c8;
    --neon-pink: #ff1493;
    --neon-green: #00e600;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Strict Enforcement: No Rounded Corners, No Shadows, No Gradients */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Indicators */
.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50% !important;
    margin-left: 4px;
    vertical-align: middle;
}

.dot-pink {
    background-color: var(--neon-pink);
}

.dot-green {
    background-color: var(--neon-green);
}

.wrapper {
    max-width: 1600px;
    margin: 0 auto;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 01. HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-logo {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stage-tag {
    color: var(--text-muted);
}

.store-link {
    font-weight: 800;
    transition: opacity 0.2s ease;
}

.store-link:hover {
    opacity: 0.5;
}

/* 02. HERO (Compact Layout matching 사이트시안.png) */
.hero {
    padding: 48px 32px 32px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-left {
    flex: 1;
}

.hero-brand {
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-slogan {
    font-size: clamp(36px, 6.5vw, 88px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.hero-subtext {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.hero-subtext p {
    margin-bottom: 4px;
}

.hero-right {
    text-align: right;
    padding-bottom: 4px;
}

.hero-meta-orbit {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.orbit-title {
    color: var(--text-muted);
    margin-bottom: 4px;
}

.orbit-sub {
    font-size: 13px;
    font-weight: 900;
}

/* 03. PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.product-item {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
    background-color: var(--bg-color);
    transition: background-color 0.2s ease;
}

/* Remove right border on 3rd column */
.product-item:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border on last row */
.product-item:nth-child(n+4) {
    border-bottom: none;
}

.product-item:hover {
    background-color: #cfcfcf;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.item-color {
    color: var(--text-muted);
}

.item-img-wrap {
    padding: 24px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    /* Pure RGBA True Transparency - 100% Zero Box Artifacts */
    mix-blend-mode: normal;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item:hover .product-img {
    transform: scale(1.02);
}

.item-footer {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

/* 04. BRAND / KICK STAGE */
.brand-stage {
    padding: 60px 32px;
    border-bottom: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.stage-left {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.stage-code {
    font-weight: 900;
    margin-bottom: 12px;
    font-size: 13px;
}

.stage-categories {
    margin-bottom: 4px;
}

.stage-base {
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stage-accents {
    color: var(--text-muted);
}

.stage-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-idnt {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
}

.big-statement {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 24px;
}

.small-philosophy {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* 05. STORE CTA */
.store-cta-section {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 48px 32px;
    border-bottom: 1px solid var(--border-color);
}

.enter-store-large {
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -1px;
    transition: opacity 0.2s ease;
}

.enter-store-large:hover {
    opacity: 0.4;
}

/* 06. FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: transparent;
}

.footer-left {
    display: flex;
    gap: 16px;
}

.footer-brand {
    font-weight: 900;
}

.footer-location {
    color: var(--text-muted);
}

.footer-center {
    display: flex;
    gap: 32px;
}

.footer-link {
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.5;
}

.copyright {
    color: var(--text-muted);
    font-size: 10px;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-item:nth-child(3n) {
        border-right: 1px solid var(--border-color);
    }
    .product-item:nth-child(2n) {
        border-right: none;
    }
    .product-item:nth-child(n+4) {
        border-bottom: 1px solid var(--border-color);
    }
    .product-item:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .hero-right {
        text-align: left;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    .product-item:last-child {
        border-bottom: none !important;
    }
    .brand-stage {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px;
    }
    .store-cta-section {
        justify-content: center;
        text-align: center;
        padding: 48px 24px;
    }
    .footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-center {
        gap: 20px;
    }
}
