/* ============================
   OZX — style.css (v54)
   ============================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #000;
    --white: #fff;
    --f-display: 'owners-xwide', sans-serif;
    --f-narrow:  'owners-narrow', sans-serif;
    --f-body:    'Pretendard', sans-serif;
    --pad-x: 28px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

/* GPU 가속: GSAP이 transform 애니메이션하는 핵심 요소들 */
#hero-logo-wrap,
.mvvs-bg,
#loader,
.loader-fill,
#loop-overlay,
.sr-01, .sr-02, .sr-03,
.pt-cards,
.fp-track {
    will-change: transform;
}

/* 페인트 레이어 분리: 핀 섹션들 */
#mvvs, #space, #gplanet, #fp-slider {
    transform: translateZ(0);
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--f-body);
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='40'%3E%3Cpath d='M0 0 L0 28 L7 21 L12 34 L16 32 L11 19 L20 19 Z' fill='%23ffffff'/%3E%3C/svg%3E") 0 0, auto;
}

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

/* 버건디 배경 위에서는 검은색 커서 */
.pt-card-left,
.pt-img-space,
.pt-img-accel,
.pt-img-content,
.mvvs-bg {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='40'%3E%3Cpath d='M0 0 L0 28 L7 21 L12 34 L16 32 L11 19 L20 19 Z' fill='%23ffffff'/%3E%3C/svg%3E") 0 0, auto;
}
em { font-style: normal; }

/* ============================
   LOADER
   ============================ */
#loader {
    position: fixed; inset: 0;
    z-index: 9999;
    overflow: hidden;
}

/* 검은 베이스 레이어 */
.loader-base {
    position: absolute; inset: 0;
    background: #000;
    display: flex; align-items: center; justify-content: center;
}

/* 버건디 필 레이어 */
.loader-fill {
    position: absolute; inset: 0;
    background: #640019;
    clip-path: inset(0 100% 0 0);
    display: flex; align-items: center; justify-content: center;
    transition: clip-path 0.12s linear;
}

.loader-logo {
    width: clamp(140px, 20vw, 260px);
    height: auto;
    display: block;
}

.loader-logo--white {
    filter: brightness(10);
}

.loader-logo--black {
    filter: brightness(0);
}

.loader-counter {
    position: absolute;
    bottom: 48px; right: 48px;
    display: flex; align-items: baseline; gap: 2px;
    font-family: var(--f-narrow); font-weight: 500;
    font-size: 15px; letter-spacing: 0.04em;
    color: #fff;
    z-index: 10;
}

.loader-counter--dark {
    color: #000;
}

.lc-num {
    display: inline-block;
    min-width: 3ch; text-align: right;
    font-variant-numeric: tabular-nums;
}


/* ============================
   PROGRESS BAR
   ============================ */
#progress-track {
    position: fixed; top: 6px; left: 0;
    height: 1.5px; width: 100%;
    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.2) 0px, rgba(255,255,255,0.2) 6px,
        transparent 6px, transparent 12px
    );
    z-index: 9998; pointer-events: none;
}

#progress-bar {
    position: fixed; top: 6px; left: 0;
    height: 1.5px; width: 0%;
    background: repeating-linear-gradient(
        to right,
        #fff 0px, #fff 6px,
        transparent 6px, transparent 12px
    );
    z-index: 9999; pointer-events: none;
    transition: width 0.1s linear;
}

/* ============================
   CURSOR
   ============================ */

/* ============================
   HEADER
   ============================ */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-start;
    padding: 36px var(--pad-x) 20px;
    transition: background .5s, backdrop-filter .5s;
}


.header-left { display: flex; align-items: flex-start; }

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
}

.menu-toggle {
    background: none; border: none; padding: 0;
    cursor: inherit;
    opacity: 0;
    transition: opacity .3s;
}
.menu-toggle:hover { opacity: 0.65 !important; }

.logo-mark-img {
    height: 32px; width: auto; display: block;
    filter: brightness(0) invert(1);
}

/* Nav Menu */
#nav-menu {
    display: flex; flex-direction: row;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
#nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
#nav-menu .nav-a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

#nav-menu .oz-char {
    font-family: var(--f-narrow);
    font-weight: 700;
}

/* 모바일 전체화면 메뉴 — 데스크탑에서 숨김 */
.mobile-menu { display: none; }

/* 모바일 전용 상단 nav — 데스크탑에서 숨김 */
#mobile-nav { display: none; }

.header-center {
    display: flex; align-items: center; justify-content: center;
    padding-top: 2px;
}

.header-brand {
    display: flex;
    align-items: center;
    transition: opacity .3s;
}

.header-brand:hover { opacity: 0.65; }

.header-wordmark-wrap {
    position: relative;
    display: inline-block;
}

.hwm-white {
    height: 20px; width: auto; display: block;
    animation: wmFade 6s ease-in-out infinite;
}

@keyframes wmFade {
    0%, 100% { filter: brightness(0) invert(1); }
    50%      { filter: brightness(0) invert(0.25); }
}

.main-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.nav-a {
    font-family: var(--f-narrow); font-weight: 500;
    font-size: 16px; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    transition: color .3s;
    position: relative; padding-bottom: 1px;
}

.nav-a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: #fff;
    transition: width .35s cubic-bezier(0.16,1,0.3,1);
}

.nav-a:hover { color: #fff; }
.nav-a:hover::after { width: 100%; }

/* ============================
   HERO
   ============================ */
#hero {
    position: relative; width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: #000;
}


.hero-center {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    gap: 24px; text-align: center;
}

.hero-logo-wrap { position: relative; display: inline-block; }
#hero-logo-wrap { opacity: 0; }

.hero-logo-img {
    width: clamp(100px, 15vw, 220px);
    height: auto; display: block;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
    animation: heroGlow 4s ease-in-out infinite alternate;
    will-change: filter;
}

@keyframes heroGlow {
    0%   { filter: drop-shadow(0 0 20px rgba(255,255,255,0.08)); }
    100% { filter: drop-shadow(0 0 60px rgba(255,255,255,0.22)); }
}

.hero-sub-wrap { overflow: hidden; }

.id-sub-img {
    display: block;
    width: min(420px, 70%);
    height: auto;
}

.scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center;
    gap: 8px; opacity: 0;
}

.scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
    animation: scrollDrop 2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes scrollDrop {
    0%   { transform: scaleY(0); opacity: 1; }
    50%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

.scroll-cue span {
    font-family: var(--f-narrow); font-weight: 500; font-size: 8px;
    letter-spacing: 0.18em; color: rgba(255,255,255,0.28);
}

/* ============================
   IDENTITY
   ============================ */
#identity {
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.id-inner {
    position: relative; z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vh, 80px) var(--pad-x);
    text-align: center;
}

.id-title-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
}

.id-title-block.in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1);
}

.id-tagline {
    font-family: var(--f-narrow);
    font-weight: 500;
    font-size: clamp(44px, 9vw, 128px);
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-align: center;
    text-transform: uppercase;
}

.id-placeholder {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-style: italic;
}

/* Character split — GSAP controls chars */
.char-w { display: inline-block; overflow: hidden; vertical-align: top; }
.char-i { display: inline-block; will-change: transform; }

.id-desc {
    font-family: var(--f-body);
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 300; line-height: 1.85;
    color: #fff;
    text-align: center;
    opacity: 0; transform: translateY(18px);
    transition: opacity .9s ease .5s, transform .9s ease .5s;
}

.id-desc.in { opacity: 1; transform: translateY(0); }

/* ============================
   MISSION · VISION · STRATEGY · VALUE
   ============================ */
#mvvs {
    position: relative;
    min-height: 100vh;
    z-index: 10;
}

.mvvs-bg {
    position: absolute;
    inset: 0;
    background: #640019;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--pad-x);
}

.mvvs-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.mvvs-tabs {
    display: flex;
    align-items: baseline;
    gap: clamp(18px, 4vw, 60px);
    flex-wrap: wrap;
    justify-content: center;
}

.mvvs-tab {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: rgba(0,0,0,0.35);
    font-family: var(--f-narrow);
    font-size: clamp(20px, 3.2vw, 50px);
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.35s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.mvvs-tab:hover { color: rgba(0,0,0,0.65); }
.mvvs-tab.is-active { color: #000; }
.mvvs-tab .oz-char,
.mvvs-col-en .oz-char { font-weight: 500; }

.tab-num {
    font-size: 0.4em;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mvvs-content {
    width: 100%;
    min-height: 160px;
    position: relative;
}

.mvvs-panel {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
}

.mvvs-panel.is-active { pointer-events: auto; }

.mvvs-single {
    font-family: var(--f-body);
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 700;
    line-height: 1.85;
    color: #000;
    text-align: center;
}

.mvvs-cols {
    display: flex;
    gap: clamp(24px, 6vw, 96px);
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.mvvs-col {
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    text-align: center;
}

.mvvs-col p {
    font-family: var(--f-body);
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 700;
    line-height: 1.9;
    color: #000;
}

.mvvs-col-en {
    font-family: var(--f-narrow);
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================
   SHARED BACKGROUND — WHAT WE DO + OPERATING STRENGTH
   background-attachment: fixed makes both sections show the
   same viewport-fixed image, appearing as one continuous bg
   ============================ */
.bg-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.68) 0%,
        rgba(0,0,0,0.44) 35%,
        rgba(0,0,0,0.50) 65%,
        rgba(0,0,0,0.74) 100%
    );
}

/* ============================
   WHAT WE DO
   ============================ */
#space {
    position: relative;
    overflow: hidden;
    padding: 110px var(--pad-x) 90px;
    background: #000;
}

.sec-wrap {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
}

.sec-head { margin-bottom: 52px; }

.sec-h2 {
    font-family: var(--f-narrow); font-weight: 500;
    font-size: clamp(16px, 2.6vw, 34px);
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    position: relative; display: inline-block;
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

.sec-h2.in { opacity: 1; transform: translateY(0); }

.sec-h2::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    height: 1px; width: 0;
    background: rgba(255,255,255,0.2);
    transition: width 1.1s cubic-bezier(0.16,1,0.3,1) .3s;
}

.sec-h2.in::after { width: 100%; }

/* Glitch */
.sec-h2.glitch-active::before {
    content: attr(data-text); position: absolute; inset: 0;
    color: rgba(255,55,55,0.7);
    clip-path: polygon(0 15%, 100% 15%, 100% 45%, 0 45%);
    animation: glitchA .16s steps(1) 3;
}
.sec-h2.glitch-active::after {
    content: attr(data-text); position: absolute; inset: 0;
    color: rgba(50,120,255,0.7);
    clip-path: polygon(0 60%, 100% 60%, 100% 90%, 0 90%);
    animation: glitchB .16s steps(1) 3;
}

@keyframes glitchA {
    0%,100% { transform: translate(0,0); }
    33%  { transform: translate(-3px,0); }
    66%  { transform: translate(3px,0); }
}
@keyframes glitchB {
    0%,100% { transform: translate(0,0); }
    33%  { transform: translate(3px,0); }
    66%  { transform: translate(-3px,0); }
}

.sec-lead {
    font-family: var(--f-body);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300; line-height: 1.7;
    color: #fff;
    max-width: 620px;
}

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.br-mobile { display: none; }
.br-pc { display: block; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* --- Service Stack --- */
.service-stack {
    display: grid;
    grid-template-rows: auto;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    max-width: 860px;
    margin: 0 auto;
}

.service-row {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 52px 0;
    align-items: center;
    will-change: opacity, transform;
}

.sr-left { display: flex; flex-direction: column; justify-content: flex-start; gap: 10px; }

.sr-title {
    font-family: var(--f-narrow); font-weight: 500;
    font-size: clamp(22px, 3.5vw, 46px);
    line-height: 0.95; letter-spacing: 0.01em;
    margin-bottom: 0;
}

.sr-ko {
    font-family: var(--f-body);
    font-size: 15px; font-weight: 400;
    line-height: 1.8; color: #fff;
    max-width: 220px;
}

.sr-right { display: flex; flex-direction: column; padding-top: 0; }

.sr-num {
    font-family: var(--f-narrow); font-weight: 500;
    font-size: 36px; letter-spacing: 0;
    color: #fff;
    display: none; margin-bottom: 18px;
}

.sr-body {
    font-family: var(--f-body);
    font-size: 15px; font-weight: 300;
    line-height: 1.8; color: #fff;
    word-break: keep-all;
}

/* ============================
   OUR OPERATING STRENGTH
   ============================ */
#partners {
    position: relative;
    overflow: hidden;
    padding: 110px var(--pad-x) 90px;
    background: #000;
}

.strength-lead { max-width: 660px; }

.strength-lead p {
    font-family: var(--f-body);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300; line-height: 1.6;
    color: #fff;
    margin-bottom: 12px;
    word-break: keep-all;
}
.strength-lead p:last-child { margin-bottom: 0; }

/* --- Pill Cards --- */
.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.pill-card {
    padding: 0 0 44px;
    opacity: 0; transform: translateY(40px);
    will-change: clip-path, opacity, transform;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}

.pill-label {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    padding: 12px 36px;
    font-family: var(--f-narrow); font-weight: 500;
    font-size: clamp(16px, 2vw, 26px);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    transition: border-color .3s, background .3s;
}

.pill-card:hover .pill-label {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
}

.pill-ko {
    font-family: var(--f-body);
    font-size: 16px; font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
    text-align: center;
}

.pill-body {
    font-family: var(--f-body);
    font-size: 15px; font-weight: 300;
    line-height: 1.8; color: #fff;
    text-align: center;
    max-width: 360px;
    word-break: keep-all;
}

/* ============================
   NEWS
   ============================ */
.news-placeholder {
    min-height: 14vh; background: #000;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 15;
}

.news-text {
    font-family: var(--f-narrow); font-weight: 500;
    font-size: clamp(13px, 2vw, 26px);
    letter-spacing: 0.08em; color: rgba(255,255,255,0.05);
}

/* ============================
   G-PLANET PROJECT
   ============================ */
#gplanet {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 15;
}

#gp-content {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 15;
}

/* 히어로 영상/이미지 */
.gp-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    overflow: hidden;
    min-height: 480px;
    background: url('gwanghwa169.jpg') center / cover no-repeat;
}

.gp-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.90) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.10) 100%
    );
}

.gp-hero-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(32px, 5vw, 64px) clamp(28px, 5vw, 72px) clamp(36px, 5vw, 60px);
}

.gp-info {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 72px);
}

.gp-title {
    font-family: var(--f-narrow);
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 0.95;
}

/* BGM 토글 버튼 */
.gp-bgm-btn {
    position: absolute;
    bottom: clamp(36px, 5vw, 60px);
    right: clamp(28px, 5vw, 72px);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}
.gp-bgm-btn:hover {
    background: rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.6);
}
.gp-bgm-btn svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.gp-bgm-btn .icon-sound-off { display: none; }
.gp-bgm-btn.is-muted .icon-sound-on  { display: none; }
.gp-bgm-btn.is-muted .icon-sound-off { display: block; }

.gp-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(24px, 5vw, 60px);
}

.gp-desc {
    font-family: var(--f-body);
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255,255,255,0.80);
    max-width: 720px;
    word-break: keep-all;
}

.gp-address {
    font-family: var(--f-body);
    font-size: clamp(10px, 0.8vw, 13px);
    line-height: 1.25;
    font-weight: 300;
    line-height: 1.8;
    color: #fff;
    font-style: normal;
    margin-top: clamp(8px, 1vw, 14px);
}
.gp-addr-en {
    font-family: var(--f-body);
    font-size: clamp(10px, 0.8vw, 13px);
    font-weight: 300;
}

/* 피처 항목 */
.gp-features {
    border-top: 1px solid rgba(255,255,255,0.12);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.gp-feature {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(32px, 4vw, 56px) clamp(28px, 5vw, 72px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    gap: clamp(24px, 6vw, 80px);
    position: relative;
    z-index: 2;
}

.gp-feat-left { flex: 1; min-width: 0; }

.gp-feat-heading {
    font-family: var(--f-narrow);
    font-size: clamp(22px, 3.2vw, 48px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: clamp(4px, 0.6vw, 8px);
}

.gp-feat-num {
    font-size: 0.55em;
    font-weight: 500;
    vertical-align: 0.1em;
    opacity: 0.7;
}

.gp-feat-sub {
    font-family: var(--f-body);
    font-size: clamp(13px, 1.1vw, 18px);
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}

.gp-feat-desc {
    font-family: var(--f-body);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 300;
    color: #fff;
    line-height: 1.85;
    text-align: right;
    flex-shrink: 0;
    padding-top: 4px;
}

/* 피처 hover 영상 오버레이 */
.gp-feat-video-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

.gp-feat-video-wrap.is-active { opacity: 1; }

.gp-feat-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gp-feature[data-feat-video="1 MEDIA FACADE.mp4"] .gp-feat-video {
    object-position: 50% 0%;
}

.gp-feature[data-feat-video] { cursor: pointer; }

/* PC 전용: bg-video 숨김 */
@media (min-width: 769px) {
    .gp-feat-bg-video  { display: none; }
    .gp-feat-bg-overlay { display: none; }
}

/* ============================
   FLOOR PLAN SLIDER
   ============================ */
.fp-slider {
    position: relative;
    background: #000;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fp-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.fp-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(20px, 3vw, 48px);
    padding: clamp(40px, 6vw, 80px) clamp(60px, 8vw, 140px);
}

.fp-plan {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: clamp(16px, 2vw, 32px);
}

.fp-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.fp-plan img {
    width: clamp(180px, 30vw, 420px);
    height: auto;
    object-fit: contain;
    display: block;
}

.fp-floor {
    font-family: var(--f-narrow);
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.03em;
}

.fp-label {
    font-family: var(--f-narrow);
    font-size: clamp(13px, 1.4vw, 18px);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #fff;
}

.fp-heading {
    font-family: var(--f-body);
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    word-break: keep-all;
    text-align: center;
}

.fp-desc {
    font-family: var(--f-body);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    word-break: keep-all;
    text-align: center;
    max-width: clamp(260px, 40vw, 500px);
}

/* 화살표 */
.fp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-family: var(--f-narrow);
    font-size: clamp(20px, 2.5vw, 32px);
    cursor: pointer;
    padding: 20px 24px;
    transition: color 0.2s;
    z-index: 10;
    line-height: 1;
}

.fp-arrow:hover { color: #fff; }
.fp-prev { left: clamp(16px, 3vw, 48px); }
.fp-next { right: clamp(16px, 3vw, 48px); }

/* 인디케이터 dots */
.fp-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.fp-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: background 0.3s;
    cursor: pointer;
}

.fp-dot.is-active { background: #fff; }

/* ============================
   CONTACT
   ============================ */
#contact {
    background: #640019;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vh, 60px) var(--pad-x) clamp(20px, 3vh, 44px);
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.contact-inner {
    width: 100%;
    max-width: clamp(300px, 50vw, 640px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(36px, 7vh, 80px);
}

.contact-img {
    width: clamp(120px, 20vw, 280px);
    height: auto;
    display: block;
    filter: brightness(0);
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vh, 14px);
}

.cf-field { width: 100%; }

.cf-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    font-family: var(--f-body);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 300;
    letter-spacing: 0.04em;
    padding: clamp(14px, 2vh, 26px) 0;
    outline: none;
    transition: border-color .3s;
    display: block;
}

.cf-input::placeholder {
    color: rgba(0,0,0,0.35);
    font-family: var(--f-body);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.cf-textarea::placeholder {
    color: rgba(0,0,0,0.35);
    font-family: var(--f-body);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cf-input:focus { border-bottom-color: #000; }

.cf-textarea {
    height: clamp(80px, 14vh, 160px);
    resize: none;
    border-bottom: none;
}

.cf-submit {
    width: 100%;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-family: var(--f-narrow);
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: clamp(14px, 2vh, 24px) clamp(14px, 1.5vw, 22px);
    cursor: inherit;
    transition: background .3s, color .3s;
    margin-top: clamp(8px, 1.2vh, 16px);
}

.cf-submit:hover {
    background: #000;
    color: #640019;
}

.contact-copy {
    margin-top: clamp(12px, 2vh, 40px);
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.14);
    letter-spacing: 0.04em;
}

/* ============================
   O / Z — XWIDE SWAP
   ============================ */
.oz-char {
    font-family: var(--f-display);
    font-weight: 500;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
    :root { --pad-x: 28px; }

    .service-row {
        grid-area: unset;
        grid-template-columns: 1fr;
        gap: 20px; padding: 44px 0;
    }

    .service-stack { display: block; }

    .pill-grid { grid-template-columns: 1fr; }
    .pill-card { padding: 0 0 38px; }

    .fp-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .fp-floor, .fp-label, .fp-heading, .fp-desc, .fp-plan {
        grid-column: 1;
        grid-row: auto;
    }
    .fp-plan {
        width: clamp(160px, 60vw, 320px);
        margin: clamp(16px, 2.5vw, 32px) auto;
    }
}

@media (max-width: 640px) {
    :root { --pad-x: 28px; }
    /* header-center 표시 (PC와 동일하게 로고 노출) */
    .header-center { display: flex; }
    .bg-img { background-attachment: scroll; }
    .id-logo-img { width: clamp(220px, 80vw, 400px); }
}

@media (max-width: 768px) {
    /* identity 섹션: 모바일 패딩 축소 */
    .id-inner {
        padding: 68px var(--pad-x) 20px;
    }
    .id-title-block {
        margin-bottom: 20px;
    }

    /* 헤더: flex로 전환, 로고는 절대위치로 정중앙 고정 */
    #header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 20px var(--pad-x) 14px;
    }
    .hdr-info { display: none; }
    .header-left { display: none; }
    .header-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    /* 로고·메뉴버튼: JS 애니메이션 대기 없이 항상 표시 */
    .header-brand,
    .menu-toggle {
        opacity: 1 !important;
        transform: none !important;
    }

    /* 네비게이션: 플로우에서 분리해 드롭다운으로 전환 */
    #nav-menu {
        position: absolute;
        top: 56px;
        right: var(--pad-x);
        flex-direction: column;
        align-items: flex-end;
        gap: 18px;
        background: rgba(0,0,0,0.95);
        padding: 24px 28px;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border: 1px solid rgba(255,255,255,0.08);
    }
    #nav-menu.open {
        transform: translateY(0);
    }
    #nav-menu .nav-a {
        font-size: 15px;
        letter-spacing: 0.08em;
    }

    /* MVVS 탭 크기 확대 + 가운데 정렬 */
    .mvvs-tabs {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .mvvs-tab {
        font-size: clamp(28px, 8vw, 42px);
        text-align: center;
        color: rgba(0,0,0,0.45);
    }
    .mvvs-tab.is-active {
        color: #000;
    }
    .mvvs-inner {
        align-items: center;
    }
    .mvvs-single,
    .mvvs-cols {
        text-align: center;
    }
    .mvvs-bg {
        padding: 0 var(--pad-x);
        align-items: center;
        justify-content: center;
    }
    .mvvs-inner {
        gap: 24px;
    }
    .mvvs-content {
        min-height: 240px;
    }
    /* MVVS 설명글 — 기준 사이즈 (weight: 500) */
    .mvvs-single,
    .mvvs-col p {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
    }
    .mvvs-col-en {
        font-size: 16px;
    }

    /* 섹션 제목 */
    .sec-h2 {
        font-size: clamp(22px, 6vw, 32px);
        opacity: 1 !important;
        transform: none !important;
        clip-path: inset(0 0% 0 0) !important;
    }

    /* 섹션 헤더 폰트 통일: WHAT WE DO / OUR OPERATING STRENGTH / PARTNERS */
    .pt-title { font-size: clamp(22px, 6vw, 32px); }

    /* 섹션 구분: OUR OPERATING STRENGTH 배경 살짝 다르게 */
    #partners {
        background: #111;
        border-top: 1px solid rgba(255,255,255,0.15);
        min-height: 100vh;
    }

    /* OUR OPERATING STRENGTH 가로 슬라이더 */
    .pill-grid {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 1fr;
        overflow: hidden;
        gap: 0;
        margin-top: 32px;
    }
    .pill-card {
        grid-area: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px var(--pad-x);
        will-change: transform;
    }
    .pill-card:nth-child(2),
    .pill-card:nth-child(3) {
        transform: translateX(100%);
    }

    /* WHAT WE DO 가로 슬라이더 */
    #space { min-height: 100vh; }
    .service-stack {
        display: grid;
        grid-template-rows: auto;
        overflow: hidden;
        max-width: none;
        margin: 0;
        border-bottom: none;
    }
    .service-row {
        grid-area: 1 / 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 52px var(--pad-x) 24px;
        will-change: transform;
        text-align: center;
        align-items: center;
    }
    .sr-02, .sr-03 {
        transform: translateX(100%);
    }

    .br-mobile { display: block; }
    .br-pc { display: none; }

    /* fade-up 요소: ScrollTrigger 미동작 시 숨김 방지 */
    .fade-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    /* pill 카드 clip-path 초기화 */
    .pc-reveal {
        clip-path: inset(0% 0 0 0) !important;
        opacity: 1 !important;
    }

    /* ── 모든 설명글: 14px / weight 400 ── */
    .id-desc,
    .sec-lead,
    .sr-ko,
    .sr-body,
    .strength-lead p,
    .pill-ko,
    .pill-body,
    .gp-desc,
    .gp-feat-sub,
    .gp-feat-desc,
    .gp-address,
    .fp-heading,
    .fp-desc,
    .pt-card-tagline,
    .pt-card-body,
    .pt-bullets li,
    .pt-services li span,
    .pt-proj-body {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.65;
    }
    .strength-lead p { margin-bottom: 4px; }

    .sr-body, .pill-body { font-size: 12px; }
    .gp-desc { font-size: 12px; line-height: 1.7; color: #fff; }
    .gp-address { font-size: 11px; line-height: 1.5; }

    /* G-Planet 히어로 전체화면 + 타이틀 폰트 확대 */
    .gp-hero {
        aspect-ratio: unset;
        min-height: 100vh;
    }
    .gp-title { font-size: clamp(48px, 14vw, 80px); }

    /* 모바일: BGM 버튼 숨김 */
    .gp-bgm-btn { display: none !important; }

    /* GP Features — 모바일 세로 슬라이드 (GSAP 핀) */
    .gp-feat-video-wrap { display: none !important; }
    .gp-features {
        display: block;
        position: relative;
        height: 100dvh;
        background: #000;
        overflow: hidden;
        border-top: none;
    }
    .gp-feature {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: #000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 8px;
        padding: 32px var(--pad-x);
        border-bottom: none;
        will-change: transform;
        overflow: hidden;
    }
    .gp-feat-heading { font-size: clamp(32px, 9vw, 56px) !important; }
    .gp-feat-desc { text-align: left; font-size: 12px !important; }

    /* ── 배경 영상 ── */
    .gp-feat-bg-video {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        z-index: 0;
    }
    .gp-feat-bg-overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1;
    }
    .gp-feature .gp-feat-left {
        position: relative; z-index: 2;
        flex: unset; min-width: unset;
    }
    .gp-feature .gp-feat-desc {
        position: relative; z-index: 2;
        text-align: left; flex-shrink: unset; padding-top: 0;
    }

    /* ── PARTNERS 모바일 탭 슬라이더 ── */
    .pt-mobile-tabs {
        display: flex !important;
        overflow-x: auto;
        gap: 8px;
        padding: 4px var(--pad-x);
        scrollbar-width: none;
        background: #000;
    }
    .pt-mobile-tabs::-webkit-scrollbar { display: none; }

    .pt-mtab {
        flex-shrink: 0;
        padding: 3px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.25);
        background: transparent;
        color: rgba(255,255,255,0.45);
        font-family: var(--f-narrow);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.07em;
        cursor: pointer;
        transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .pt-mtab.is-active {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    .pt-pinned-head { display: none !important; }

    /* 카드: 트랙 가로 슬라이드 */
    #pt-section { overflow-x: hidden; }
    .pt-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        will-change: transform;
        transition: none !important;
    }
    .pt-card {
        flex: 0 0 100vw !important;
        width: 100vw !important;
        display: block !important;
        min-height: auto !important;
        pointer-events: auto;
    }
    .pt-card-left { display: none !important; }
    .pt-card-right {
        padding: 10px var(--pad-x) 16px !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        justify-content: flex-start !important;
        align-items: flex-start !important;
        min-height: auto !important;
        gap: 8px;
    }

    /* ── 헤더: 기존 요소 숨기고 mobile-nav만 표시 ── */
    .menu-toggle   { display: none !important; }
    .header-center { display: none !important; }
    .header-left   { display: none !important; }
    .header-right  { display: none !important; }

    #header {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: max(28px, env(safe-area-inset-top, 28px)) 10px 14px !important;
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    #mobile-nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        overflow-x: auto;
        scrollbar-width: none;
    }
    #mobile-nav::-webkit-scrollbar { display: none; }
    #mobile-nav a {
        font-family: var(--f-display);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.03em;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
    }
}

/* ============================
   HEADER INFO (DATE / TIME / TEMP)
   ============================ */
.hdr-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: opacity 0.3s ease;
}

.hdr-date,
.hdr-time,
.hdr-temp {
    font-family: var(--f-narrow);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* ============================
   PARTNERS SECTION (로고 마퀴 + 카드)
   ============================ */
#pt-section {
    background: #000;
    color: #fff;
}

/* 데스크탑: pt-head, pt-mobile-tabs 숨기고 pt-pinned-head 사용 */
.pt-head { display: none; }
.pt-mobile-tabs { display: none; }

/* 슬라이더 내부 고정 헤더 — 카드 위에 절대 배치, 카드 전환 동안 유지 */
.pt-pinned-head {
    position: absolute;
    top: clamp(100px, 13vh, 140px);
    left: clamp(32px, 5vw, 64px);
    z-index: 10;
    pointer-events: none;
}
.pt-pinned-head .pt-title {
    margin-bottom: clamp(4px, 0.5vw, 8px);
}
.pt-pinned-head .pt-desc {
    border-bottom: none;
    padding-bottom: 0;
}

.pt-title {
    font-family: var(--f-narrow);
    font-weight: 500;
    font-size: clamp(16px, 2.6vw, 34px);
    letter-spacing: 0.03em;
    margin-bottom: clamp(14px, 2vw, 28px);
    color: #fff;
}

.pt-desc {
    font-family: var(--f-body);
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    padding-bottom: clamp(20px, 2.5vw, 36px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* 마퀴 */
.pt-marquee-wrap {
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    padding: clamp(10px, 1.2vw, 18px) 0;
}

@keyframes pt-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.pt-marquee-track {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 60px);
    animation: pt-marquee 28s linear infinite;
    width: max-content;
}

.pt-logo-item {
    font-family: var(--f-narrow);
    font-weight: 500;
    font-size: clamp(9px, 0.75vw, 12px);
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
}

.pt-logo-main strong {
    font-family: var(--f-display);
}

.pt-logo-sm {
    font-family: var(--f-body);
    font-size: clamp(13px, 1.2vw, 20px);
    letter-spacing: 0.03em;
}

.pt-logo-sub {
    font-family: var(--f-body);
    font-size: clamp(7px, 0.6vw, 10px);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pt-logo-yellow { color: #fff; }

.pt-logo-grunge {
    font-family: var(--f-body);
    font-size: clamp(14px, 1.5vw, 22px);
    font-style: italic;
    font-weight: 700;
}

.pt-logo-badge {
    width: clamp(52px, 5vw, 80px);
    height: clamp(52px, 5vw, 80px);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-logo-badge-inner {
    font-family: var(--f-body);
    font-size: clamp(6px, 0.55vw, 9px);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

/* 슬라이더 래퍼 */
.pt-slider-wrap {
    position: relative;
    overflow: hidden;
}

.pt-cards {
    display: flex;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}

/* 파트너 카드 */
.pt-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.pt-card-left {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    min-width: 0;
    overflow: hidden;
}

.pt-card-right {
    background: #000;
    padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(10px, 1.2vw, 18px);
    border-left: 1px solid rgba(255,255,255,0.1);
}

.pt-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.pt-card-logo-wrap {
    display: flex;
    flex-direction: column;
}

.pt-cl-sub {
    font-family: var(--f-body);
    font-size: clamp(8px, 0.7vw, 11px);
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pt-cl-main {
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 48px);
    color: #fff;
    letter-spacing: 0.03em;
}

.pt-cl-main--sm {
    font-size: clamp(16px, 1.8vw, 28px);
}

.pt-card-cat {
    font-family: var(--f-narrow);
    font-weight: 500;
    font-size: clamp(28px, 5vw, 72px);
    letter-spacing: 0.01em;
    color: #fff;
    text-align: center;
    line-height: 1;
}

.pt-card-tagline {
    font-family: var(--f-body);
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.7;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.pt-card-body {
    font-family: var(--f-body);
    font-size: clamp(11px, 0.9vw, 14px);
    line-height: 1.9;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    text-align: left;
}

.pt-services {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: clamp(12px, 1.8vw, 24px);
    display: flex;
    flex-direction: column;
    gap: clamp(7px, 0.8vw, 12px);
    align-items: flex-start;
    width: 100%;
    max-width: 420px;
}

.pt-services li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-family: var(--f-body);
    font-size: clamp(11px, 0.9vw, 14px);
    letter-spacing: 0.03em;
}

.pt-services li span:first-child {
    font-family: var(--f-narrow);
    font-weight: 700;
    color: #fff;
}
.pt-services li span:last-child  { color: #fff; }
.pt-services .oz-char,
.pt-card-cat .oz-char { font-family: var(--f-display) !important; font-weight: 500 !important; }

.pt-bullets {
    list-style: disc;
    padding-left: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 480px;
    gap: clamp(6px, 0.7vw, 10px);
}

.pt-bullets li {
    font-family: var(--f-body);
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.pt-proj {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: clamp(10px, 1.2vw, 18px);
    width: 100%;
    max-width: 480px;
    text-align: left;
}

.pt-proj-title {
    font-family: var(--f-body);
    font-size: clamp(10px, 0.85vw, 13px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.pt-proj-body {
    font-family: var(--f-body);
    font-size: clamp(10px, 0.85vw, 13px);
    font-weight: 700;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

/* 로고 이미지 */
.pt-logo-img {
    max-height: clamp(32px, 4vw, 60px);
    max-width: clamp(120px, 16vw, 240px);
    width: auto;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1) !important;
    mix-blend-mode: screen;
}

/* 우측 배경 이미지 클래스 (사용 안함) */
.pt-img-space,
.pt-img-accel,
.pt-img-content { display: none; }

.pt-img-space,
.pt-img-accel,
.pt-img-content { background: #000; }

/* 슬라이더 네비게이션 */
.pt-nav {
    position: absolute;
    bottom: clamp(24px, 3.5vw, 52px);
    left: 0;
    width: 50%;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
    padding: 0 clamp(40px, 5vw, 80px);
}

.pt-nav-btn {
    display: none;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.pt-nav-btn:hover { opacity: 1; }

.pt-dots {
    display: none;
}

.pt-dot {
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    color: rgba(0,0,0,0.35);
    font-family: var(--f-narrow);
    font-size: clamp(11px, 0.9vw, 14px);
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 2px 0;
    transition: color 0.3s, border-color 0.3s;
}

.pt-dot.active {
    color: #000;
    border-bottom-color: #000;
}

/* 모바일 */
@media (max-width: 900px) {
    /* 모바일: 기존 pt-head 사용, pt-pinned-head 숨김 */
    .pt-head {
        display: block;
        padding: clamp(80px, 14vw, 120px) var(--pad-x) clamp(28px, 5vw, 48px);
    }
    .pt-pinned-head { display: none; }

    .pt-card {
        grid-template-columns: 1fr;
    }
    .pt-card-right {
        min-height: 50vw;
    }
    .pt-nav {
        width: 100%;
        justify-content: center;
    }
}

/* ── 모바일 Partners 최종 오버라이드 (파일 최하단 — 모든 전역/900px 규칙 이후) ── */
@media (max-width: 768px) {
    .pt-mobile-tabs {
        display: flex !important;
    }
    .pt-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        transition: none !important;
    }
    .pt-card {
        flex: 0 0 100vw !important;
        width: 100vw !important;
        display: block !important;
        min-height: auto !important;
    }
    .pt-card-right { min-height: auto !important; }
}

