@import url('https://fonts.googleapis.com/css2?family=Stint+Ultra+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

:root {
    --text-color: #121212;
    --text-body: #515151;
    --bg-color: #ffffff;
    --margin: 16px;
    --font-stint: 'Stint Ultra Condensed', sans-serif;
    --font-body: 'Inter', 'Pretendard', sans-serif;
    --font-mono: 'Source Code Pro', monospace;
}

/* 
   1. GLOBAL RESET & PROMISE 
   STRICT FONT WEIGHT 400 !important
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: -0.02em;
    /* Global -2% spacing for body text as requested */
    font-weight: 400 !important;
}

body {
    font-family: var(--font-stint);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.mobile-break {
    display: none;
}

/* 2. HEADER & FOOTER (PROTECTED) */
header,
footer {
    position: fixed;
    left: 0;
    width: 100%;
    padding: var(--margin);
    display: flex;
    justify-content: space-between;
    z-index: 3000;
    background-color: transparent;
}

header {
    top: 0;
    align-items: center;
    transition: none !important;
}

header *,
.projects-index-overlay,
.projects-index-backdrop {
    transition: none !important;
}

footer {
    bottom: 0;
    align-items: center;
    border-bottom: none;
    border-top: none;
}

.logo-container img {
    height: 32px;
    display: none;
    /* Hide by default */
}

.logo-container .logo-black,
.logo-container .logo-white {
    height: 32px;
    display: none;
}

.logo-container .logo-black {
    display: block;
    /* Show black logo by default */
}

header.header-dark {
    background-color: transparent;
    border-bottom: none;
}

header.header-dark .nav-right a {
    color: var(--text-color);
}

header.header-dark .logo-container .logo-black {
    display: block;
}

header.header-dark .logo-container .logo-white {
    display: none;
}

.nav-close {
    display: none;
    cursor: pointer;
    color: var(--text-color);
    transition: none !important;
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: flex-end;
}

.nav-close:hover {
    opacity: 0.5;
}

header.nav-open .nav-close {
    display: flex;
}

@media (min-width: 769px) {
    header.nav-open .nav-right {
        display: flex;
    }

    header.nav-open .nav-close {
        display: none;
    }
}

@media (max-width: 768px) {
    header.nav-open .nav-right {
        display: flex;
    }

    header.nav-open .nav-close {
        display: none;
    }
}

/* Projects Index Overlay */
.projects-index-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: #ffffff;
    color: #121212;
    z-index: 2500;
    /* Increased to stay above brand text (1500) and slider (100) */
    opacity: 0;
    visibility: hidden;
    padding: 128px var(--margin) 48px var(--margin);
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid #e9e9e9;
    transition: none;
}

.projects-index-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 2400;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.projects-index-overlay.active,
.projects-index-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
}

.overlay-index-title {
    grid-column: span 12;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 4px;
    /* 4px margin + 8px grid gap = 12px total */
    font-family: var(--font-stint);
    color: #121212;
}

.overlay-grid {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
}

.overlay-col {
    grid-column: span 3;
    /* 4 categories = 3 cols each */
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Reduced from 8px to 4px */
}

.col-label {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 0;
    /* Margin removed to use parent gap */
    color: #121212;
    font-family: var(--font-stint);
}

.col-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure items only take up text width */
}

.col-item {
    font-size: 20px;
    line-height: 1.2;
    color: #121212;
    font-family: var(--font-stint);
    opacity: 1;
}

.col-item:hover {
    opacity: 0.5;
    /* 50% transparency on hover */
}

.nav-right,
.footer-left,
.footer-right {
    display: flex;
    gap: 16px;
    font-size: 20px;
    line-height: 24px;
}

/* 
   3. SINGLE 12-COLUMN GRID SYSTEM 
   The 'main' container acts as the master grid for all elements.
*/
main,
.projects-container,
.info-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 8px;
    row-gap: 8px;
    /* Master Row Gap for PC (8px + 24px margin = 32px total) */
    /* Fixed Master Column Gap */
    padding-top: 128px;
    padding-bottom: 56px;
    padding-left: var(--margin);
    padding-right: var(--margin);
    width: 100%;
}

.detail-description-grid,
.detail-left-content,
.projects-horizontal {
    display: contents;
}

.detail-media-grid {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 8px;
    row-gap: 8px;
}

.projects-grid {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
    row-gap: 56px;
}

/* 4. TYPOGRAPHY & BLOCKS (PC) */
.main-title {
    font-size: 64px;
    line-height: 72px;
    grid-column: span 12;
    margin-bottom: 4px;
    /* Fixed 4px gap for PC */
    position: relative;
    z-index: 1500;
}

.description {
    font-size: 32px;
    line-height: 40px;
    grid-column: span 12;
    position: relative;
    z-index: 1500;
    margin-bottom: 32px;
    /* Over slider */
}

/* Main Page Project Grid Wrapper */
.main-projects-horizontal {
    grid-column: span 12;
    display: contents;
    /* Let children use the main grid */
}

.main-projects-horizontal::-webkit-scrollbar {
    display: none;
}

.project-item-main {
    flex: 0 0 calc((100% - 24px) / 4);
    /* Precise 4-column split with 8px gaps */
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-item-main .project-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    /* Create stacking context for overlay */
    cursor: pointer;
}

.project-view-hint {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    color: #ff0000;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: none;
    /* Removed transition to eliminate delay */
    z-index: 20;
    pointer-events: none;
    white-space: nowrap;
    border: 0.5px solid rgba(0, 0, 0, 0.05);
}

/* Extra bottom padding only for Project Detail pages */
main:has(.detail-media-grid) {
    padding-bottom: 112px;
}

.project-item:hover .project-view-hint,
.project-item.is-active .project-view-hint {
    opacity: 1;
    visibility: visible;
}

.project-item-main .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}


.project-item .project-info-block {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    /* Image to Title gap */
}

.project-item .project-title {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: normal;
    /* Match body text rhythm */
    color: var(--text-color);
}

.project-item .project-desc {
    display: none !important;
}

.project-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.project-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.project-thumb img,
.project-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: normal;
    margin-top: 8px;
}

/* 
   5. PROJECT DETAIL LOGIC (PC)
   Elements are placed directly on the 12-column master grid.
*/
.detail-header {
    grid-column: span 12;
}

.detail-scope {
    grid-column: span 6;
}

.scope-title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 0;
    /* Align with body text */
}

.scope-list {
    font-size: 20px;
    line-height: 24px;
    margin-top: 4px;
}

.detail-text-content {
    grid-column: 7 / span 6;
    /* Fixed right allocation */
    display: flex;
    flex-direction: column;
}

.description-item {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--text-body);
    margin-top: 0;
    /* Align top with scope title */
}

.description-item.ko {
    order: 1;
    margin-bottom: 8px;
    /* Gap between KO and EN */
}

.description-item.en {
    order: 2;
    margin-bottom: 0;
}

/* Media items auto-flow on the grid after the text */
.detail-media-item {
    grid-column: span 3;
    /* 4 per row */
}

/* Create 32px gap from the text content above to the first row of images on PC */
.detail-media-item:nth-child(-n+4) {
    margin-top: 32px;
}

.detail-media-item video,
.detail-media-item img {
    width: 100%;
    display: block;
}

.project-page-navigation {
    grid-column: span 12;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 24px;
    /* 24px margin + 8px grid gap = 32px total */
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    /* Match font height for alignment */
    letter-spacing: -0.02em;
    /* Requested -2% spacing */
    text-transform: uppercase;
}

.project-page-navigation a,
.project-page-navigation .nav-item {
    display: flex;
    align-items: center;
    /* Vertical center alignment */
    gap: 8px;
    /* Gap between arrow and text */
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.project-page-navigation svg {
    width: auto;
    height: 10px;
    /* Precise height for line visual */
    display: block;
}

.project-page-navigation path {
    stroke: currentColor;
    stroke-width: 1.2px;
    stroke-linecap: square;
    fill: none;
    /* Ensure lines only, no fill */
}

.project-page-navigation a:hover {
    color: #aaaaaa;
    /* Requested hover color */
}

.project-page-navigation .disabled {
    color: #d1d1d1;
    /* Requested light color for UX */
    pointer-events: none;
    cursor: default;
}

/* 6. MOBILE RESPONSIVE OPTIMIZATION (6-COLUMN MASTER GRID) */
@media (max-width: 768px) {

    .logo-container .logo-black,
    .logo-container .logo-white {
        height: 24px;
    }

    header {
        padding: 0 var(--margin);
        height: 64px;
        display: flex;
        align-items: center;
        background-color: transparent;
    }

    .logo-container {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nav-right {
        display: flex;
        align-items: center;
        height: 100%;
        gap: 12px;
    }

    .nav-close {
        height: 100%;
        width: 32px;
        display: none;
        align-items: center;
        justify-content: flex-end;
        transition: none !important;
    }

    main,
    .projects-container,
    .info-container {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 4px;
        row-gap: 4px;
        /* Master Row Gap for Mobile (4px + 20px margin = 24px total) */
        /* Fixed Mobile Column Gap */
        padding-top: 80px;
        /* Reduced from 96px to account for header alignment */
        padding-bottom: 56px;
        padding-left: var(--margin);
        padding-right: var(--margin);
    }

    .main-title {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 4px;
        /* Fixed 4px gap for Mobile */
        grid-column: span 6;
        word-break: keep-all;
    }

    .mobile-break {
        display: block;
    }

    .description {
        font-size: 24px;
        line-height: 28px;
        grid-column: span 6;
        /* Fit mobile grid */
        margin-bottom: 28px;
        /* Adjusted for Mobile */
        word-break: keep-all;
    }

    .scope-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 4px;
        /* Requested 4px gap to list */
    }

    .detail-scope {
        margin-bottom: 16px;
        /* Reduced from 24px to 16px (Title side to Body side) */
    }

    .nav-right {
        gap: 12px;
    }

    /* Mobile Project Grid (Nested) */
    .projects-grid {
        grid-column: span 6;
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 4px;
        row-gap: 24px;
    }

    .project-item {
        margin-bottom: 0;
        /* Gaps handled by grid */
    }

    .project-item .project-info-block {
        margin-top: 8px;
    }

    .project-item .project-title {
        font-size: 20px;
        line-height: 24px;
        word-break: keep-all;
        /* Better for Korean */
    }

    .project-item .project-desc {
        font-size: 13px;
        line-height: 18px;
        word-break: keep-all;
        margin-top: 0;
    }

    .project-view-hint {
        display: none;
        /* Hide by default on mobile */
    }

    .project-item.is-active .project-view-hint {
        display: flex !important;
        /* Force show when in-view/active */
        opacity: 1;
        visibility: visible;
    }

    /* Target specific menu items to hide if needed */
    .nav-right a[href*="music.html"] {
        display: none !important;
    }

    /* Mobile Detail Overrides (Vertical Stack) */
    .detail-description-grid {
        grid-column: span 6;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 4px;
        row-gap: 0;
        /* Use margins for precise control as requested */
    }

    .detail-left-content,
    .detail-text-content {
        grid-column: span 6;
    }

    .detail-header,
    .detail-scope {
        grid-column: span 6;
    }

    .detail-text-content {
        margin-top: 0;
        margin-bottom: 16px;
        /* Reduced from 24px to 16px (Body side to Media side) */
        display: flex;
        flex-direction: column;
    }

    .description-item.en {
        order: 2;
        margin-bottom: 0;
    }

    .description-item.ko {
        order: 1;
        margin-bottom: 8px;
    }

    .detail-media-grid {
        grid-column: span 6;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 4px;
        row-gap: 4px;
        margin-top: 0;
    }

    /* Mobile Media Grid (2 Columns) */
    .detail-media-item {
        grid-column: span 3;
        margin-top: 0 !important;
        /* Force reset PC margin for all items */
    }

    .project-page-navigation {
        grid-column: span 6;
        margin-top: 20px;
        /* 20px margin + 4px grid gap = 24px total */
        gap: 24px;
        font-size: 13px;
        /* Matched to PC version */
    }

    /* Index Overlay Mobile */
    .projects-index-overlay {
        height: auto;
        min-height: 100vh;
        padding-top: 96px;
        /* Reduced from 120px to 96px */
    }

    .overlay-content {
        grid-template-columns: repeat(6, 1fr);
        column-gap: 4px;
        row-gap: 4px;
    }

    .overlay-index-title {
        grid-column: span 6;
        font-size: 48px;
        margin-bottom: 8px;
        /* 8px margin + 4px gap = 12px total */
    }

    .overlay-grid {
        grid-column: span 6;
        grid-template-columns: repeat(6, 1fr);
        row-gap: 32px;
        column-gap: 4px;
    }

    .overlay-col {
        grid-column: span 3;
        /* 2 col grid */
        display: flex;
        flex-direction: column;
        gap: 4px;
        /* Total 4px gap between label and sub-items */
    }

    .col-label {
        font-size: 28px;
        margin-bottom: 0;
    }

    .col-item {
        font-size: 20px;
    }

    /* Main Slider Mobile: 4-Col Image in 6-Col Grid */
    .main-projects-horizontal {
        margin-top: 24px;
        padding-bottom: 32px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        overflow-x: auto;
        gap: 8px;
    }

    .project-item-main {
        flex: 0 0 66.66%;
        /* Exactly 4 columns out of 6 */
        scroll-snap-align: start;
        height: auto;
        aspect-ratio: auto;
    }

    .project-item-main .project-thumb {
        aspect-ratio: 3/4;
        width: 100%;
    }

    .project-item-main .project-title {
        font-size: 20px;
        line-height: 24px;
    }

    .project-item-main .project-desc {
        font-size: 13px;
        line-height: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .projects-index-backdrop {
        display: none !important;
    }
}

/* 7. INFO PAGE STYLES */
.info-container {
    /* Top padding inherited from master grid (128px) */
    position: relative;
}

.info-section {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 8px;
    align-items: flex-start;
    border-top: 1px solid #e9e9e9;
    padding-top: 20px;
    margin-top: 40px;
    /* Restored space ABOVE the divider line (PC) */
}

/* Removed margin-top: 0 to restore consistent section spacing */

.info-section:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* Closing gap after Contact Us (Before Divider) */
.info-section.contact {
    border-bottom: none;
}

.info-left {
    grid-column: 1 / span 6;
    /* Start at col 1, take 6 */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-right {
    grid-column: 7 / span 6;
    /* EXACTLY starts at the center (7th column) */
    font-family: var(--font-body);
    /* All right-side contents use Body Font System */
    padding-top: 1.5px;
    /* Visual alignment correction for top-line matching - restored as requested */
    letter-spacing: -0.02em;
    /* Apply -2% letter-spacing as requested */
}

.info-section .main-title {
    grid-column: span 12;
    font-weight: 400 !important;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 12px;
    /* Fixed 12px gap for PC */
}

.section-label {
    font-size: 32px;
    line-height: 40px;
    color: var(--text-color);
}

.intro-text p.ko {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 8px;
    /* Unified gap */
    color: #515151;
    word-break: keep-all;
}

.intro-text p.en {
    font-size: 13px;
    line-height: 18px;
    color: #515151;
}

.ko-block,
.en-block {
    margin-bottom: 8px;
    /* Unified gap */
}

/* Email Copy Interaction */
.copy-feedback {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 11px;
    color: #ff0000 !important;
    opacity: 0;
    transition: opacity 0.2s;
}

.email-copy-btn:hover .copy-feedback {
    opacity: 1 !important;
}

/* Fix for mobile browsers forcing link colors */
a[href^="mailto:"],
.email-text {
    color: var(--text-color) !important;
    -webkit-text-fill-color: var(--text-color) !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .copy-feedback {
        opacity: 1 !important;
        display: inline-block !important;
        color: #ff0000 !important;
        -webkit-text-fill-color: #ff0000 !important;
    }
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
    /* Row gap 24px, Column gap 8px */
}

.scope-item h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600 !important;
    line-height: 18px;
    margin-bottom: 4px;
    /* PC & Mobile unified */
    text-transform: none;
    color: var(--text-color);
}

.scope-item ul {
    list-style: none;
    margin-bottom: 0;
    /* Managed by grid gap */
}

.scope-item li {
    font-size: 13px;
    line-height: 18px;
    color: #515151;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px 8px;
    /* Row gap 12px, Column gap 8px */
    width: 100%;
}

.form-item {
    display: contents;
}

.form-item label {
    grid-column: span 1;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    color: var(--text-color);
    white-space: nowrap;
    align-self: baseline;
    font-weight: 600 !important;
    /* SemiBold as requested */
}

.form-item input,
.form-item textarea {
    grid-column: span 2;
    border: none;
    border-bottom: 0.5px solid #bbb;
    /* Underline as requested */
    background: transparent;
    padding: 0 0 2px 0;
    /* Padding for the underline */
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    color: #515151;
    /* Default text color unified to #515151 */
    width: 100%;
    text-align: left;
    outline: none;
    align-self: baseline;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    color: #515151;
    opacity: 0.6;
}

.form-item input:focus,
.form-item textarea:focus {
    color: #515151;
    /* Color when actively writing as requested */
}

.form-item textarea {
    resize: none;
    height: 18px;
    overflow: hidden;
}

/* Project Details specific: Single row spanning full width with 3 line height */
.project-details-item label {
    grid-column: span 1;
}

.project-details-item textarea {
    grid-column: span 5;
    /* Spans across to match the grid width */
    height: 54px;
    /* 3 lines (18px * 3) */
}

.send-message {
    display: inline-block;
    margin-top: 48px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    font-weight: 600 !important;
    /* SemiBold as requested */
    border-bottom: 0.5px solid var(--text-color);
    padding-bottom: 2px;
    color: var(--text-color);
    text-decoration: none;
}


/* 9. LOGO TECHNICAL INTERACTION (AE/ILLUSTRATOR STYLE) */
/* 9. LOGO TECHNICAL INTERACTION (AE/ILLUSTRATOR STYLE) */
.info-logo-section {
    grid-column: span 12;
    width: 100%;
    border-top: 1px solid #e9e9e9;
    margin-top: 40px;
    padding: 128px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-centered-logo {
    width: 100%;
    max-width: none;
    padding: 0;
    position: relative;
    cursor: default;
}

.animated-logo-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.logo-path {
    fill: none;
    stroke: #aaa !important;
    stroke-width: 1px;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 30000;
    stroke-dashoffset: 30000;
    animation: drawOutline 4.5s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

@keyframes drawOutline {
    0% {
        stroke-dashoffset: 30000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Technical Elements REMOVED */
.logo-interaction-layer,
.live-tracker,
.tracker-circle,
.tracker-cross,
.live-data-x,
.live-data-y,
.vector-circle,
.vector-rect,
.vector-handle {
    display: none !important;
}

@media (max-width: 768px) {
    .info-logo-section {
        grid-column: span 6;
        padding: 64px 0;
    }
}

@media (max-width: 1024px) {
    .info-right {
        grid-column: 7 / span 6;
        /* Fixed overlap - no longer sharing column 6 */
    }
}

@media (max-width: 768px) {
    .info-container {
        /* Top padding inherited from master mobile grid (96px) */
        position: relative;
    }

    .info-section {
        grid-column: span 6;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 4px;
        padding-top: 16px;
        margin-top: 32px;
        /* Restored space ABOVE the divider line (Mobile) */
    }

    .info-left {
        grid-column: 1 / -1;
        margin-bottom: 12px;
        /* Fixed 12px gap between Subtitle and Text */
    }

    .info-right {
        grid-column: 1 / -1;
        padding-top: 0;
        /* Clear alignment hack for mobile */
    }

    .info-section .main-title {
        grid-column: 1 / -1;
        /* Match mobile grid full width */
        font-size: 48px;
        margin-bottom: 8px;
        /* Fixed 8px gap for Mobile */
    }

    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-item.full-width {
        grid-column: span 1;
    }

    .form-item input {
        width: 100%;
    }

    .intro-text p.ko {
        margin-bottom: 8px;
        /* Mobile gap between KO and EN */
    }

    .ko-block,
    .en-block {
        margin-bottom: 8px;
        /* Mobile gap for contact blocks */
    }

    .logo-half {
        grid-column: span 12;
    }

    .logo-svg-text {
        font-size: 120px;
    }

    .info-logo-section {
        grid-column: span 6;
        padding: 64px 0;
        margin-top: 32px;
        /* Mobile: Restored consistent space above divider */
    }
}