/* /skin/css/css.css */
/* 反主流 · 红白触感 · 拒绝纯平与完美居中 */
:root {
    --red-primary: #c12b2b;
    --red-deep: #8f1e1e;
    --red-bright: #e03a3a;
    --white-soft: #fefaf5;
    --white-pure: #ffffff;
    --gray-ink: #1e1e1e;
    --gray-light: #4a4a4a;
    --border-heavy: 3px solid var(--red-primary);
    --shadow-offset: 8px 8px 0 rgba(193, 43, 43, 0.2);
    --transition-custom: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white-soft);
    color: var(--gray-ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    line-height: 1.5;
    position: relative;
    min-height: 100vh;
    font-weight: 400;
}

/* 噪点纹理 —— 拒绝纯平背景 */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 999;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wMjUiIC8+PC9zdmc+');
    opacity: 0.4;
    mix-blend-mode: multiply;
}

/* 装饰网格线 */
.grid-lines {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(193,43,43,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(193,43,43,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

body > *:not(.noise-overlay):not(.grid-lines) {
    position: relative;
    z-index: 5;
}

/* 头部 —— 左对齐、非居中 */
.page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    padding: 24px 32px 12px 32px;
    border-bottom: var(--border-heavy);
    margin-bottom: 8px;
    background: var(--white-pure);
    box-shadow: 0 4px 0 rgba(0,0,0,0.02);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.logo-main { height: 42px; width: auto; }
.logo-secondary { height: 30px; width: auto; opacity: 0.7; }
.company-tagline {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--red-primary);
    border-left: 2px solid var(--red-primary);
    padding-left: 15px;
    font-size: 1.1rem;
}

.primary-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
}
.nav-link {
    text-decoration: none;
    color: var(--gray-ink);
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: var(--transition-custom);
}
.nav-link:hover { border-bottom-color: var(--red-primary); color: var(--red-primary); }
.nav-divider { color: var(--red-primary); opacity: 0.6; margin: 0 4px; }

.quick-contact {
    display: flex;
    gap: 24px;
    background: var(--white-soft);
    padding: 8px 18px;
    border: 1.5px solid var(--red-primary);
    box-shadow: 4px 4px 0 var(--red-primary);
}
.quick-tel, .quick-wechat { font-weight: 600; color: var(--red-deep); }

/* 主视觉 —— 非对称，偏移 */
.intro-visual {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding: 30px 32px 40px;
    background: var(--white-pure);
    margin: 0 0 20px 0;
    border-bottom: 2px dashed var(--red-primary);
}

.visual-text-block { align-self: end; }
.manager-name {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--gray-ink);
    text-transform: uppercase;
    border-left: 12px solid var(--red-primary);
    padding-left: 24px;
}
.title-tag {
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 20px;
    color: var(--red-primary);
    background: transparent;
    border: 1.5px solid currentColor;
    padding: 4px 12px;
    vertical-align: middle;
}
.intro-statement { margin-top: 30px; }
.large-statement {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 90%;
}
.support-line {
    margin-top: 16px;
    font-size: 1.2rem;
    color: var(--gray-light);
}

.banner-strip {
    display: flex;
    margin-top: 40px;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.banner-thumb {
    height: 80px;
    width: auto;
    border: 2px solid var(--red-primary);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.05);
    filter: grayscale(30%);
    transition: var(--transition-custom);
}
.banner-thumb:hover { filter: none; box-shadow: 5px 5px 0 var(--red-primary); }

.visual-image-block { position: relative; }
.main-banner-figure {
    border: 3px solid var(--gray-ink);
    box-shadow: 15px 15px 0 var(--red-primary);
    transform: rotate(0.5deg);
    background: var(--white-pure);
}
.banner-main {
    width: 100%;
    height: auto;
    display: block;
}
.banner-caption {
    padding: 12px 16px;
    background: var(--red-primary);
    color: white;
    font-weight: 600;
    text-align: left;
}
.floating-text {
    position: absolute;
    bottom: -15px; left: -20px;
    background: var(--white-pure);
    border: 2px solid var(--red-primary);
    padding: 8px 18px;
    font-weight: bold;
    box-shadow: 6px 6px 0 #0000000d;
}
.floating-text-secondary {
    position: absolute;
    top: -10px; right: -15px;
    background: var(--red-primary);
    color: white;
    padding: 6px 16px;
    font-weight: 500;
}

/* 通用section */
.content-section {
    padding: 40px 32px;
    margin-bottom: 10px;
    background: var(--white-pure);
    border-top: 1px solid rgba(193,43,43,0.2);
}
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.label-index {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--red-primary);
    opacity: 0.3;
    line-height: 1;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.title-decoration {
    height: 8px;
    width: 80px;
    background: var(--red-primary);
    margin-left: auto;
}

/* 简历区 */
.resume-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.resume-text-block { font-size: 1.1rem; }
.dropcap:first-letter {
    font-size: 4em;
    float: left;
    padding: 0 8px 0 0;
    line-height: 0.8;
    color: var(--red-primary);
    font-weight: 700;
}
.resume-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.visual-ad, .visual-article {
    width: 100%;
    height: auto;
    border: 2px solid var(--gray-ink);
    box-shadow: 6px 6px 0 var(--red-primary);
}
.visual-quote {
    grid-column: span 2;
    background: var(--red-primary);
    color: white;
    padding: 16px;
    font-weight: bold;
    font-size: 1.4rem;
}

/* 双列区域 */
.two-column-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 32px 20px;
}
.qual-list { list-style: none; }
.qual-item {
    padding: 12px 0;
    border-bottom: 1px dashed var(--red-primary);
    font-weight: 500;
}
.ad-cluster { display: flex; gap: 10px; margin-top: 30px; }
.ad-cluster img { height: 50px; border: 1px solid var(--red-primary); }

.timeline { margin-bottom: 25px; }
.timeline-entry {
    display: flex;
    margin-bottom: 18px;
    border-left: 4px solid var(--red-primary);
    padding-left: 20px;
}
.year { font-weight: 800; min-width: 70px; color: var(--red-deep); }
.event { font-weight: 500; }
.article-thumb-strip { display: flex; gap: 8px; flex-wrap: wrap; }
.article-thumb-strip img { height: 70px; border: 1px solid; }

/* 责任 */
.duty-lead { font-size: 1.4rem; margin-bottom: 30px; }
.duty-blocks {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.duty-block {
    background: var(--white-soft);
    padding: 20px;
    border-left: 8px solid var(--red-primary);
    box-shadow: 6px 6px 0 #ddd;
}
.duty-footer-text { margin-top: 35px; font-size: 1.15rem; }
.duty-gallery { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.duty-gallery img { height: 100px; border: 2px solid var(--red-primary); }

/* 联系区 */
.contact-panel {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    border: 2px solid var(--red-primary);
    background: white;
    cursor: pointer;
    transition: var(--transition-custom);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.05);
}
.contact-item:hover { background: var(--red-primary); color: white; box-shadow: 8px 8px 0 var(--red-deep); }
.contact-type { font-weight: 700; width: 70px; }
.contact-value { flex:1; font-size: 1.3rem; }
.copy-hint { font-size: 0.8rem; opacity: 0.7; }
.contact-message { background: var(--white-soft); padding: 30px; border: 2px solid; }
.contact-note { margin-top: 20px; color: var(--red-deep); }
.contact-imagery { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.contact-imagery img { height: 80px; }

/* 页脚 */
.page-footer {
    margin-top: 40px;
    padding: 30px 32px;
    background: var(--red-primary);
    color: white;
}
.footer-logo-strip { display: flex; align-items: center; gap: 20px; }
.footer-logo-strip img { height: 40px; filter: brightness(0) invert(1); }
.footer-text { font-size: 1.5rem; font-weight: 600; }
.footer-meta { margin: 20px 0; display: flex; gap: 12px; }
.footer-extra-img { display: flex; gap: 8px; }
.footer-extra-img img { height: 50px; border: 1px solid white; }

@media (max-width: 800px) {
    .intro-visual, .resume-grid, .two-column-zone, .contact-panel { grid-template-columns: 1fr; }
    .page-header { flex-direction: column; gap: 20px; }
}