/*
  Portfolio styles extracted from the original single-file HTML.
  Edit this file for global visual adjustments.
*/

        :root {
            --black: #080808;
            --charcoal: #141414;
            --dark: #1e1e1e;
            --mid-dark: #2c2c2c;
            --mid: #606060;
            --light: #a8a8a8;
            --lighter: #d8d5d0;
            --cream: #f4f1ec;
            --cream-2: #edeae4;
            --white: #f9f7f4;
            --gold: #c8a86a;
            --gold-light: #dfc190;
            --gold-dim: rgba(200, 168, 106, 0.18);
            --serif: 'Georgia', 'STSong', '宋体', serif;
            --sans: -apple-system, 'PingFang SC', 'Helvetica Neue', 'Arial', sans-serif;
            --mono: 'SF Mono', 'Fira Code', monospace;
            --radius: 0px;
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 15px;
        }

        body {
            background: var(--cream);
            color: var(--black);
            font-family: var(--sans);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        ::selection {
            background: var(--gold-dim);
        }

        /* LOADING SCREEN */
        #loader {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-name {
            font-family: var(--serif);
            font-size: 28px;
            color: var(--white);
            letter-spacing: 0.12em;
            font-style: italic;
        }

        .loader-name span {
            color: var(--gold);
        }

        .loader-bar {
            width: 200px;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .loader-fill {
            height: 100%;
            background: var(--gold);
            animation: loadFill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes loadFill {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        /* NAVIGATION */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 56px;
            background: rgba(244, 241, 236, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            transition: background var(--transition);
        }

        nav.dark-nav {
            background: rgba(8, 8, 8, 0.92);
            border-bottom-color: rgba(255, 255, 255, 0.04);
        }

        .nav-logo {
            font-family: var(--serif);
            font-size: 16px;
            color: var(--black);
            letter-spacing: 0.1em;
            font-style: italic;
            transition: color var(--transition);
        }

        .dark-nav .nav-logo {
            color: var(--white);
        }

        .nav-logo em {
            color: var(--gold);
            font-style: normal;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--mid);
            text-decoration: none;
            transition: color var(--transition);
            position: relative;
        }

        .dark-nav .nav-links a {
            color: var(--light);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width var(--transition);
        }

        .nav-links a:hover {
            color: var(--black);
        }

        .dark-nav .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            font-size: 11px;
            padding: 8px 20px;
            border: 1px solid rgba(0, 0, 0, 0.15);
            color: var(--black);
            text-decoration: none;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: all var(--transition);
        }

        .dark-nav .nav-cta {
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .nav-cta:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            background: var(--black);
            display: grid;
            grid-template-columns: 58% 42%;
            padding-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
            pointer-events: none;
            opacity: 0.5;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 96px 80px 96px 88px;
            position: relative;
            z-index: 2;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 36px;
        }

        .hero-tag::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--gold);
        }

        .hero-name {
            font-family: var(--serif);
            font-size: 88px;
            font-weight: 400;
            line-height: 0.95;
            color: var(--white);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .hero-name-en {
            font-family: var(--serif);
            font-size: 20px;
            color: var(--gold);
            font-style: italic;
            margin-bottom: 44px;
            letter-spacing: 0.12em;
        }

        .hero-desc {
            font-size: 15px;
            color: var(--light);
            line-height: 2;
            max-width: 440px;
            margin-bottom: 64px;
            border-left: 2px solid rgba(200, 168, 106, 0.35);
            padding-left: 20px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid rgba(255, 255, 255, 0.06);
            max-width: 400px;
        }

        .stat-item {
            padding: 22px 18px;
            border-right: 1px solid rgba(255, 255, 255, 0.04);
            position: relative;
            overflow: hidden;
            cursor: default;
            transition: background var(--transition);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item:hover {
            background: rgba(200, 168, 106, 0.06);
        }

        .stat-num {
            font-family: var(--serif);
            font-size: 38px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 7px;
        }

        .stat-label {
            font-size: 10px;
            letter-spacing: 0.1em;
            color: var(--mid);
            text-transform: uppercase;
        }

        .hero-right {
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 72px 60px;
            position: relative;
            z-index: 2;
            border-left: 1px solid rgba(255, 255, 255, 0.04);
        }

        .hero-right::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--gold), transparent);
        }

        .hero-quote-mark {
            font-family: var(--serif);
            font-size: 120px;
            color: var(--gold);
            opacity: 0.12;
            line-height: 1;
            margin-bottom: -40px;
            display: block;
        }

        .hero-quote {
            font-family: var(--serif);
            font-size: 22px;
            color: var(--white);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }

        .hero-contact {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--light);
            letter-spacing: 0.02em;
        }

        .contact-dot {
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

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

        .scroll-hint span {
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.2);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(200, 168, 106, 0.6), transparent);
            animation: scrollPulse 2.4s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% {
                opacity: 0.3;
                transform: scaleY(1);
            }
            50% {
                opacity: 1;
                transform: scaleY(1.1);
            }
        }

        /* SECTION SYSTEM */
        section {
            padding: 104px 0;
        }

        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 56px;
        }

        .section-meta {
            display: flex;
            align-items: flex-end;
            gap: 20px;
            margin-bottom: 72px;
        }

        .section-num {
            font-family: var(--mono);
            font-size: 11px;
            color: var(--gold);
            letter-spacing: 0.1em;
            padding-bottom: 2px;
            flex-shrink: 0;
        }

        .section-titles {
            flex: 1;
        }

        .section-sub {
            font-family: var(--serif);
            font-size: 13px;
            color: var(--mid);
            font-style: italic;
            letter-spacing: 0.06em;
            margin-bottom: 4px;
        }

        .section-title {
            font-family: var(--serif);
            font-size: 44px;
            font-weight: 400;
            line-height: 1.08;
            color: var(--black);
            letter-spacing: -0.01em;
        }

        .section-line {
            flex: 1;
            max-width: 100px;
            height: 1px;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.12), transparent);
            margin-bottom: 8px;
            align-self: flex-end;
        }

        .dark-section .section-title {
            color: var(--white);
        }

        .dark-section .section-sub {
            color: var(--mid);
        }

        .dark-section .section-line {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
        }

        /* ABOUT */
        .about-section {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .about-body p {
            font-size: 15.5px;
            color: var(--dark);
            line-height: 1.95;
            margin-bottom: 22px;
        }

        .about-body p strong {
            color: var(--black);
            font-weight: 600;
        }

        .pullquote {
            margin: 32px 0;
            padding: 28px 32px 28px 36px;
            background: var(--cream);
            border-left: 3px solid var(--gold);
            position: relative;
        }

        .pullquote::before {
            content: '"';
            font-family: var(--serif);
            font-size: 64px;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: 8px;
            left: 12px;
            line-height: 1;
        }

        .pullquote p {
            font-family: var(--serif);
            font-size: 17px !important;
            line-height: 1.7 !important;
            margin: 0 !important;
            color: var(--black) !important;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .about-sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .sidebar-block {
            border: 1px solid rgba(0, 0, 0, 0.07);
            padding: 26px 24px;
            background: var(--cream);
        }

        .sidebar-block-title {
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-block-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(0, 0, 0, 0.08);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .tag {
            font-size: 11.5px;
            padding: 4px 12px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: var(--dark);
            letter-spacing: 0.02em;
            cursor: default;
            transition: all var(--transition);
        }

        .tag:hover {
            background: var(--black);
            color: var(--gold);
            border-color: var(--black);
        }

        /* EXPERIENCE */
        .experience-section {
            background: var(--cream);
        }

        .timeline {
            position: relative;
            padding-left: 28px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            bottom: 60px;
            width: 1px;
            background: linear-gradient(to bottom, var(--gold) 0%, rgba(200, 168, 106, 0.1) 100%);
        }

        .timeline-item {
            position: relative;
            padding-left: 44px;
            margin-bottom: 60px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -34px;
            top: 10px;
            width: 14px;
            height: 14px;
            border: 2px solid var(--gold);
            background: var(--cream);
            border-radius: 50%;
            z-index: 1;
            transition: background var(--transition), transform var(--transition);
        }

        .timeline-item:hover .timeline-dot {
            background: var(--gold);
            transform: scale(1.2);
        }

        .t-date {
            font-size: 10px;
            letter-spacing: 0.16em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .t-role {
            font-family: var(--serif);
            font-size: 27px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .t-company {
            font-size: 13px;
            color: var(--mid);
            margin-bottom: 24px;
            letter-spacing: 0.04em;
        }

        .t-achievements {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .t-achievements li {
            font-size: 14px;
            color: var(--dark);
            padding-left: 22px;
            position: relative;
            line-height: 1.75;
        }

        .t-achievements li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-family: var(--serif);
        }

        .t-achievements li.highlight {
            background: rgba(200, 168, 106, 0.07);
            padding: 12px 16px 12px 38px;
            border-left: 2px solid var(--gold);
            color: var(--black);
            font-weight: 500;
        }

        .t-achievements li.highlight::before {
            left: 16px;
        }

        /* METHODOLOGY — DARK */
        .strategy-section {
            background: var(--black);
            color: var(--white);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 72px;
        }

        .proc-step {
            background: var(--black);
            padding: 36px 18px;
            text-align: center;
            position: relative;
            cursor: default;
            transition: background var(--transition);
        }

        .proc-step:hover {
            background: rgba(200, 168, 106, 0.05);
        }

        .proc-num {
            font-family: var(--serif);
            font-size: 48px;
            color: rgba(200, 168, 106, 0.15);
            line-height: 1;
            margin-bottom: 18px;
            transition: color var(--transition);
        }

        .proc-step:hover .proc-num {
            color: rgba(200, 168, 106, 0.35);
        }

        .proc-step h3 {
            font-size: 12px;
            letter-spacing: 0.1em;
            color: var(--white);
            margin-bottom: 14px;
            font-weight: 500;
        }

        .proc-step p {
            font-size: 10.5px;
            color: rgba(168, 168, 168, 0.7);
            line-height: 1.8;
        }

        .proc-arrow {
            position: absolute;
            right: -7px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            clip-path: polygon(0 20%, 55% 20%, 55% 0, 100% 50%, 55% 100%, 55% 80%, 0 80%);
            background: rgba(200, 168, 106, 0.5);
            z-index: 2;
        }

        .proc-step:last-child .proc-arrow {
            display: none;
        }

        .strategy-table-wrap {
            overflow-x: auto;
        }

        table.s-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12.5px;
        }

        .s-table th {
            padding: 14px 20px;
            text-align: left;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--gold);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.02);
            font-weight: 400;
        }

        .s-table td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.035);
            color: var(--light);
            vertical-align: top;
            line-height: 1.65;
            transition: background var(--transition);
        }

        .s-table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        .pill {
            display: inline-block;
            padding: 3px 10px;
            font-size: 10.5px;
            border: 1px solid rgba(200, 168, 106, 0.35);
            color: var(--gold);
            border-radius: 1px;
            letter-spacing: 0.04em;
        }

        /* CASE STUDIES */
        .cases-section {
            background: var(--white);
        }

        .cases-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }

        .case-card {
            background: var(--cream);
            padding: 44px 40px;
            position: relative;
            overflow: hidden;
            cursor: default;
            transition: transform var(--transition);
        }

        .case-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.45s ease;
        }

        .case-card:hover::after {
            width: 100%;
        }

        .case-card:hover {
            transform: translateY(-2px);
        }

        .case-featured {
            grid-column: span 2;
            background: var(--black);
            padding: 72px 80px;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 80px;
            align-items: center;
            color: var(--white);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .case-featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--gold), transparent 70%);
        }

        .case-badge {
            display: inline-block;
            padding: 4px 12px;
            background: var(--gold);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 22px;
        }

        .case-label {
            font-size: 10px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .case-title {
            font-family: var(--serif);
            font-size: 28px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .case-featured .case-title {
            font-size: 38px;
            color: var(--white);
        }

        .case-desc {
            font-size: 14px;
            color: var(--mid);
            line-height: 1.85;
            margin-bottom: 24px;
        }

        .case-featured .case-desc {
            color: var(--light);
            font-size: 14.5px;
        }

        .case-concept {
            display: inline-block;
            margin: 16px 0 24px;
            padding: 6px 16px;
            border: 1px solid rgba(200, 168, 106, 0.4);
            font-family: var(--serif);
            font-size: 13px;
            color: var(--gold);
            font-style: italic;
        }

        .case-result-line {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--dark);
        }

        .case-featured .case-result-line {
            color: var(--light);
        }

        .case-result-line::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--gold);
            flex-shrink: 0;
        }

        .case-metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }

        .metric-box {
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.025);
            transition: background var(--transition);
        }

        .metric-box:hover {
            background: rgba(200, 168, 106, 0.05);
        }

        .metric-val {
            font-family: var(--serif);
            font-size: 38px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 7px;
        }

        .metric-label {
            font-size: 11px;
            color: var(--mid);
            letter-spacing: 0.06em;
        }

        .other-projects {
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.07);
        }

        .other-label {
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--mid);
            margin-bottom: 24px;
            display: block;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* ══════════════════════════════════════════
     PROJECT GALLERY — NEW
  ══════════════════════════════════════════ */
        .gallery-section {
            background: var(--charcoal);
            color: var(--white);
        }

  /* 主网格：3列等宽，间距3px */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* ← 改列数在这里 */
    gap: 3px;                                /* ← 改间距在这里 */
}

/* 每个图片卡片：固定 4:3 比例 */
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;                       /* ← 改宽高比在这里 */
    cursor: pointer;
    background: var(--dark);
}

/* 图片填充方式 */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;                       /* ← cover=裁剪填充, contain=完整显示 */
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85);                /* ← 默认略暗 */
}

/* 悬停效果 */
.gallery-item:hover img {
    transform: scale(1.08);                  /* ← 放大倍数 */
    filter: brightness(1);                   /* ← 悬停变亮 */
}

/* 悬停遮罩层 */
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;                              /* ← 默认隐藏 */
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;                              /* ← 悬停显示 */
}

/* 宽图：横跨2列 */
.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* 高图：纵跨2行 */
.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

        /* ══════════════════════════════════════════
     DATA DASHBOARD — NEW
  ══════════════════════════════════════════ */
        .flipbook-section {
            background: var(--charcoal);
        }

        .flipbook-container {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .flipbook-viewport {
            flex: 1;
            background: #0d0d0d;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .flipbook-viewport img {
            width: 100%;
            height: auto;
            display: block;
            min-height: 300px;
            max-height: 70vh;
            object-fit: contain;
            background: #0a0a0a;
        }

        .flipbook-nav {
            width: 48px;
            height: 48px;
            border: 1px solid rgba(200, 168, 106, 0.3);
            background: transparent;
            color: var(--gold);
            font-size: 20px;
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .flipbook-nav:hover {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }

        .flipbook-controls {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 20px;
        }

        .flipbook-page-info {
            font-family: var(--mono);
            font-size: 12px;
            color: var(--mid);
            letter-spacing: 0.1em;
        }

        .flipbook-thumbnails {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            flex: 1;
        }

        .flipbook-thumb {
            width: 36px;
            height: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            cursor: pointer;
            opacity: 0.4;
            transition: all 0.2s ease;
            overflow: hidden;
        }

        .flipbook-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .flipbook-thumb:hover {
            opacity: 0.7;
        }

        .flipbook-thumb.active {
            border-color: var(--gold);
            opacity: 1;
        }

        @media (max-width: 768px) {
            .flipbook-nav {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .flipbook-thumbnails {
                display: none;
            }
        }

        .dashboard-section {
            background: var(--cream-2);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3px;
        }

        .dash-card {
            background: var(--white);
            padding: 0;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .dash-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .dash-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dash-card .img-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--cream-2), var(--white));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
        }

        .dash-card .img-placeholder::before {
            content: '📊';
            font-size: 24px;
            opacity: 0.35;
        }

        .dash-card .img-placeholder span {
            font-size: 10px;
            color: var(--mid);
            letter-spacing: 0.05em;
        }

        .dash-card:hover img {
            transform: scale(1.04);
        }

        .dash-card .dash-info {
            padding: 16px 18px;
            border-top: 2px solid transparent;
            transition: border-color var(--transition);
        }

        .dash-card:hover .dash-info {
            border-top-color: var(--gold);
        }

        .dash-info h5 {
            font-size: 12px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 3px;
        }

        .dash-info span {
            font-size: 10px;
            letter-spacing: 0.08em;
            color: var(--mid);
            text-transform: uppercase;
        }

        /* ══════════════════════════════════════════
     VIDEO SHOWCASE — NEW
  ══════════════════════════════════════════ */
        .video-section {
            background: var(--black);
            color: var(--white);
        }

        .video-featured {
            position: relative;
            background: var(--charcoal);
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            margin-bottom: 48px;
        }

        .video-featured video {
            width: 100%;
            display: block;
            max-height: 520px;
            object-fit: contain;
            background: #000;
        }

        .video-featured-info {
            padding: 28px 36px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .video-featured-info h3 {
            font-family: var(--serif);
            font-size: 24px;
            color: var(--white);
            margin-bottom: 8px;
        }

        .video-featured-info p {
            font-size: 13px;
            color: var(--light);
            line-height: 1.8;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
        }

        .video-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
            overflow: hidden;
            transition: all var(--transition);
            cursor: pointer;
        }

        .video-card:hover {
            background: rgba(200, 168, 106, 0.05);
            border-color: rgba(200, 168, 106, 0.15);
            transform: translateY(-2px);
        }

        .video-card video {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .video-card .video-placeholder {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
        }

        .video-placeholder::before {
            content: '🎬';
            font-size: 28px;
            opacity: 0.4;
        }

        .video-placeholder span {
            font-size: 10px;
            color: var(--mid);
            letter-spacing: 0.06em;
        }

        /* Video play buttons */
        .video-featured-wrap {
            position: relative;
            cursor: pointer;
        }

        .video-play-btn {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .video-play-btn::before {
            content: '';
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(200, 168, 106, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }

        .video-play-btn::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
            border-left: 26px solid var(--black);
            margin-left: 4px;
        }

        .video-featured-wrap.playing .video-play-btn {
            opacity: 0;
        }

        .video-card-thumb {
            position: relative;
            overflow: hidden;
        }

        .video-play-sm {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .video-play-sm::before {
            content: '';
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(200, 168, 106, 0.85);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
        }

        .video-play-sm::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 16px solid var(--black);
            margin-left: 3px;
        }

        .video-card:hover .video-play-sm {
            background: rgba(0, 0, 0, 0.5);
        }

        .video-card.playing .video-play-sm {
            opacity: 0;
        }

        .video-fallback-msg {
            padding: 32px 24px;
            text-align: center;
            background: var(--charcoal);
            border: 1px dashed rgba(200, 168, 106, 0.2);
            border-radius: 4px;
            margin: 16px 0;
        }

        .video-fallback-msg h4 {
            font-family: var(--serif);
            color: var(--gold);
            margin-bottom: 12px;
            font-weight: 400;
            font-size: 18px;
        }

        .video-fallback-msg p {
            font-size: 12px;
            color: var(--light);
            line-height: 2;
        }

        .video-fallback-msg code {
            background: rgba(255, 255, 255, 0.08);
            padding: 3px 10px;
            border-radius: 3px;
            font-family: var(--mono);
            font-size: 11px;
            color: var(--gold-light);
        }

        .video-card .video-info {
            padding: 16px 18px;
        }

        .video-info h5 {
            font-size: 13px;
            color: var(--white);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .video-info span {
            font-size: 10px;
            color: var(--mid);
            letter-spacing: 0.06em;
        }

        /* CONTENT ACHIEVEMENTS */
        .content-section {
            background: var(--cream-2);
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .content-card {
            background: var(--white);
            padding: 40px 34px;
            border-bottom: 3px solid transparent;
            transition: all var(--transition);
            cursor: default;
        }

        .content-card:hover {
            border-bottom-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        }

        .content-icon {
            font-size: 24px;
            margin-bottom: 22px;
            display: block;
        }

        .content-card h3 {
            font-family: var(--serif);
            font-size: 21px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 14px;
        }

        .content-card p {
            font-size: 13px;
            color: var(--mid);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .content-big-num {
            font-family: var(--serif);
            font-size: 40px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }

        .content-num-label {
            font-size: 11px;
            color: var(--lighter);
            letter-spacing: 0.08em;
        }

        /* BRAND ARCHITECTURE */
        .framework-section {
            background: var(--white);
        }

        .framework-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 72px;
            align-items: start;
        }

        .pyramid-stack {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .pyr-row {
            padding: 20px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: filter var(--transition);
            cursor: default;
        }

        .pyr-row:hover {
            filter: brightness(1.07);
        }

        .pyr-row h4 {
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 4px;
            color: var(--gold);
        }

        .pyr-row p {
            font-size: 11.5px;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.7);
        }

        .p1 {
            background: #0a0a0a;
        }

        .p2 {
            background: #161616;
        }

        .p3 {
            background: #222222;
        }

        .p4 {
            background: #303030;
        }

        .p5 {
            background: #3e3e3e;
        }

        .framework-points {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .fw-point {
            padding: 24px 28px;
            background: var(--cream);
            border-left: 2px solid transparent;
            transition: border-color var(--transition), transform var(--transition);
            cursor: default;
        }

        .fw-point:hover {
            border-left-color: var(--gold);
            transform: translateX(4px);
        }

        .fw-point h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 8px;
            letter-spacing: 0.04em;
        }

        .fw-point p {
            font-size: 13px;
            color: var(--mid);
            line-height: 1.75;
        }

        /* CAMPAIGN PLANNING */
        .campaign-section {
            background: var(--charcoal);
            color: var(--white);
        }

        .phases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            margin-bottom: 64px;
        }

        .phase-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 36px 26px;
            border-top: 2px solid rgba(255, 255, 255, 0.05);
            transition: all var(--transition);
            cursor: default;
        }

        .phase-card:hover {
            background: rgba(200, 168, 106, 0.05);
            border-top-color: var(--gold);
        }

        .phase-num {
            font-family: var(--mono);
            font-size: 10px;
            letter-spacing: 0.18em;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }

        .phase-title {
            font-family: var(--serif);
            font-size: 22px;
            color: var(--white);
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.25;
        }

        .phase-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .phase-list li {
            font-size: 12px;
            color: rgba(168, 168, 168, 0.8);
            padding-left: 14px;
            position: relative;
            line-height: 1.65;
        }

        .phase-list li::before {
            content: '\00B7';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 16px;
            line-height: 1.3;
        }

        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.04);
        }

        .kpi-cell {
            background: var(--charcoal);
            padding: 28px 18px;
            text-align: center;
            transition: background var(--transition);
        }

        .kpi-cell:hover {
            background: rgba(200, 168, 106, 0.04);
        }

        .kpi-cell h5 {
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
            font-weight: 400;
        }

        .kpi-val {
            font-family: var(--serif);
            font-size: 28px;
            color: var(--white);
            margin-bottom: 5px;
            line-height: 1;
        }

        .kpi-sub {
            font-size: 10px;
            color: var(--mid);
            letter-spacing: 0.04em;
        }

        /* WORKING METHOD */
        .method-section {
            background: var(--cream);
        }

        .method-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .method-card {
            background: var(--white);
            padding: 46px 36px;
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .method-bg-num {
            font-family: var(--serif);
            font-size: 64px;
            color: rgba(0, 0, 0, 0.04);
            position: absolute;
            top: 16px;
            right: 24px;
            line-height: 1;
            pointer-events: none;
        }

        .method-card h3 {
            font-family: var(--serif);
            font-size: 22px;
            color: var(--black);
            font-weight: 400;
            margin-bottom: 16px;
        }

        .method-card p {
            font-size: 13px;
            color: var(--mid);
            line-height: 1.85;
            margin-bottom: 22px;
        }

        .method-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.45s ease;
        }

        .method-card:hover::after {
            width: 100%;
        }

        .chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .chip {
            font-size: 11px;
            padding: 3px 9px;
            background: var(--cream);
            color: var(--dark);
            letter-spacing: 0.03em;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* RESULTS — DARK */
        .results-section {
            background: var(--black);
            color: var(--white);
        }

        .results-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2px;
            margin-bottom: 2px;
        }

        .big-num-card {
            background: rgba(200, 168, 106, 0.06);
            padding: 52px 44px;
            border: 1px solid rgba(200, 168, 106, 0.12);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .big-num-card .lbl {
            font-size: 10px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 22px;
        }

        .big-num-card .num {
            font-family: var(--serif);
            font-size: 80px;
            color: var(--white);
            line-height: 1;
            margin-bottom: 16px;
        }

        .big-num-card .num em {
            font-size: 34px;
            color: var(--gold);
            font-style: normal;
            vertical-align: top;
            margin-top: 18px;
            display: inline-block;
        }

        .big-num-card .desc {
            font-size: 13.5px;
            color: var(--mid);
            line-height: 1.75;
            max-width: 260px;
        }

        .results-mini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .r-mini {
            background: rgba(255, 255, 255, 0.02);
            padding: 38px 28px;
            border: 1px solid rgba(255, 255, 255, 0.035);
            transition: background var(--transition);
        }

        .r-mini:hover {
            background: rgba(200, 168, 106, 0.04);
        }

        .r-mini .r-tag {
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(168, 168, 168, 0.6);
            margin-bottom: 16px;
            display: block;
        }

        .r-mini .r-val {
            font-family: var(--serif);
            font-size: 42px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 10px;
        }

        .r-mini .r-desc {
            font-size: 12.5px;
            color: var(--light);
            line-height: 1.65;
        }

        /* EDUCATION & CREDENTIALS */
        .edu-section {
            background: var(--white);
        }

        .edu-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }

        .edu-item {
            padding: 32px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .edu-year {
            font-size: 10px;
            letter-spacing: 0.18em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .edu-degree {
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 6px;
        }

        .edu-school {
            font-size: 13px;
            color: var(--mid);
            margin-bottom: 14px;
        }

        .edu-note {
            font-size: 13px;
            color: var(--dark);
            line-height: 1.75;
        }

        .certs-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .cert-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform var(--transition);
            cursor: default;
        }

        .cert-item:hover {
            transform: translateX(4px);
        }

        .cert-icon {
            width: 38px;
            height: 38px;
            background: var(--cream);
            border: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .cert-info h5 {
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 3px;
            line-height: 1.4;
        }

        .cert-info p {
            font-size: 12px;
            color: var(--mid);
            line-height: 1.5;
        }

        .cert-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 28px;
        }

        .cert-gallery .cert-img-wrap {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 12px;
            transition: all var(--transition);
            cursor: pointer;
        }

        .cert-gallery .cert-img-wrap:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            border-color: rgba(200, 168, 106, 0.3);
        }

        .cert-gallery img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            display: block;
            background: var(--white);
        }

        .cert-gallery .cert-img-caption {
            font-size: 11px;
            font-weight: 600;
            color: var(--black);
            margin-top: 10px;
            text-align: center;
            letter-spacing: 0.02em;
        }

        .cert-gallery .cert-img-sub {
            font-size: 10px;
            color: var(--light);
            text-align: center;
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .cert-gallery {
                grid-template-columns: 1fr;
            }
        }

        /* TOOLS */
        .tools-section {
            background: var(--cream);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2px;
        }

        .tool-item {
            background: var(--white);
            padding: 28px 14px;
            text-align: center;
            transition: all var(--transition);
            cursor: default;
        }

        .tool-item:hover {
            background: var(--black);
            transform: translateY(-3px);
        }

        .tool-icon {
            font-size: 22px;
            display: block;
            margin-bottom: 10px;
        }

        .tool-name {
            font-size: 11.5px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 4px;
            transition: color var(--transition);
            line-height: 1.3;
        }

        .tool-cat {
            font-size: 10px;
            color: var(--light);
            letter-spacing: 0.07em;
            transition: color var(--transition);
        }

        .tool-item:hover .tool-name {
            color: var(--gold);
        }

        .tool-item:hover .tool-cat {
            color: var(--mid);
        }

        /* CTA */
        .cta-section {
            background: var(--charcoal);
            padding: 128px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }

        .cta-eyebrow {
            font-size: 10px;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 36px;
        }

        .cta-headline {
            font-family: var(--serif);
            font-size: 54px;
            font-weight: 400;
            color: var(--white);
            line-height: 1.22;
            margin-bottom: 28px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-sub {
            font-size: 15px;
            color: var(--mid);
            line-height: 1.85;
            max-width: 500px;
            margin: 0 auto 56px;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 44px;
            background: var(--gold);
            color: var(--black);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            transition: all var(--transition);
        }

        .btn-primary:hover {
            background: var(--gold-light);
        }

        .btn-ghost {
            padding: 16px 44px;
            background: transparent;
            color: var(--white);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all var(--transition);
        }

        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .cta-contacts {
            display: flex;
            justify-content: center;
            gap: 56px;
            margin-top: 64px;
            flex-wrap: wrap;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-contact-item {
            text-align: center;
        }

        .cc-label {
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(168, 168, 168, 0.5);
            margin-bottom: 7px;
            display: block;
        }

        .cc-value {
            font-family: var(--serif);
            font-size: 14px;
            color: var(--white);
            font-style: italic;
        }

        /* FOOTER */
        footer {
            background: var(--black);
            padding: 32px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-brand {
            font-family: var(--serif);
            font-size: 15px;
            color: rgba(255, 255, 255, 0.3);
            font-style: italic;
        }

        .footer-brand span {
            color: var(--gold);
        }

        .footer-info {
            font-size: 10px;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.15);
            text-transform: uppercase;
        }

        /* GOLD DIVIDER */
        .gold-rule {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            opacity: 0.25;
            margin: 72px 0;
        }

        /* LIGHTBOX */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 9998;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(12px);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90vw;
            max-height: 88vh;
            object-fit: contain;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 32px;
            font-size: 28px;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: color 0.3s;
            font-family: var(--sans);
            background: none;
            border: none;
        }

        .lightbox-close:hover {
            color: var(--gold);
        }

        /* SCROLL REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        /* HERO ANIMATIONS */
        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-animate {
            opacity: 0;
            animation: heroFadeUp 0.9s ease forwards;
        }

        .ha-1 {
            animation-delay: 1.5s;
        }

        .ha-2 {
            animation-delay: 1.7s;
        }

        .ha-3 {
            animation-delay: 1.85s;
        }

        .ha-4 {
            animation-delay: 2.0s;
        }

        .ha-5 {
            animation-delay: 2.15s;
        }

        /* RESPONSIVE */
        @media (max-width: 1000px) {
            nav {
                padding: 0 24px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
            }

            .hero-right {
                display: none;
            }

            .hero-name {
                font-size: 60px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cases-grid {
                grid-template-columns: 1fr;
            }

            .case-featured {
                grid-column: span 1;
                display: block;
            }

            .case-featured .case-metrics-grid {
                margin-top: 32px;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .framework-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .phases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .method-grid {
                grid-template-columns: 1fr;
            }

            .results-layout {
                grid-template-columns: 1fr;
            }

            .results-mini {
                grid-template-columns: 1fr;
            }

            .tools-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .kpi-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .edu-cols {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .container {
                padding: 0 24px;
            }

            section {
                padding: 72px 0;
            }

            .cta-headline {
                font-size: 36px;
            }

            .section-title {
                font-size: 34px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item.wide {
                grid-column: span 2;
            }

            .dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-grid {
                grid-template-columns: 1fr;
            }
        }


        <
        style id

        =
        "__EDITOR_CSS__"
        >
            /* ═══ EDIT MODE BAR ═══ */
        #ed-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            height: 44px;
            background: #0a0a0a;
            border-bottom: 1px solid #2a2a2a;
            display: none;
            align-items: center;
            padding: 0 16px;
            gap: 4px;
            font-family: -apple-system, 'PingFang SC', 'Helvetica Neue', sans-serif;
        }

        body.ed-active #ed-bar {
            display: flex;
        }

        body.ed-active {
            padding-top: 44px;
        }

        body.ed-active #nav {
            top: 44px;
        }

        .ed-logo {
            font-size: 13px;
            color: #c8a86a;
            font-weight: 600;
            margin-right: 12px;
            white-space: nowrap;
        }

        .ed-sep {
            width: 1px;
            height: 22px;
            background: #2a2a2a;
            margin: 0 8px;
        }

        .ed-btn {
            padding: 5px 12px;
            border-radius: 4px;
            border: 1px solid transparent;
            background: transparent;
            color: #c8c4be;
            font-size: 12px;
            cursor: pointer;
            font-family: inherit;
            transition: all .15s;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .ed-btn:hover {
            background: rgba(200, 168, 106, 0.12);
            border-color: #2a2a2a;
        }

        .ed-btn.active {
            background: rgba(200, 168, 106, 0.2);
            border-color: #c8a86a;
            color: #c8a86a;
        }

        .ed-btn.primary {
            background: #c8a86a;
            color: #0a0a0a;
            border-color: #c8a86a;
            font-weight: 600;
        }

        .ed-btn.primary:hover {
            background: rgba(200, 168, 106, 0.2);
            color: #c8a86a;
        }

        .ed-spacer {
            flex: 1;
        }

        /* ═══ EDIT MODE TOGGLE BUTTON ═══ */
        #ed-toggle {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #c8a86a;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all .2s;
            color: #0a0a0a;
            font-size: 20px;
        }

        #ed-toggle:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(200, 168, 106, 0.4);
        }

        body.ed-active #ed-toggle {
            background: #c45c5c;
            color: #fff;
        }

        #ed-toggle svg {
            width: 22px;
            height: 22px;
        }

        /* ═══ CONTENT EDITABLE (visual indicators) ═══ */
        body.ed-active [data-ed] {
            outline: 2px dashed transparent;
            outline-offset: 3px;
            transition: outline-color .2s, background .2s;
            cursor: text;
            min-height: 1em;
        }

        body.ed-active [data-ed]:hover {
            outline-color: rgba(200, 168, 106, 0.4);
            background: rgba(200, 168, 106, 0.06);
        }

        body.ed-active [data-ed][contenteditable="true"] {
            outline-color: rgba(200, 168, 106, 0.7);
            outline-style: solid;
            background: rgba(200, 168, 106, 0.1);
        }

        /* ═══ IMAGE EDITABLE ═══ */
        body.ed-active [data-ed-img] {
            cursor: pointer;
            position: relative;
        }

        body.ed-active [data-ed-img]:hover::after {
            content: '\1F4F7 \70B9\51FB\66FF\6362\56FE\7247';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-family: -apple-system, sans-serif;
            white-space: nowrap;
            z-index: 5;
        }

        /* ═══ SECTION CONTROLS ═══ */
        .ed-sec-ctrl {
            display: none;
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 100;
            gap: 4px;
        }

        body.ed-active .ed-sec-ctrl {
            display: flex !important;
        }

        .ed-sec-btn {
            width: 28px;
            height: 28px;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .15s;
            backdrop-filter: blur(8px);
        }

        .ed-sec-btn:hover {
            background: rgba(200, 168, 106, 0.8);
            color: #0a0a0a;
        }

        .ed-sec-btn.del:hover {
            background: rgba(196, 92, 92, 0.8);
        }

        body.ed-active section {
            position: relative;
        }

        /* ═══ ADD SECTION ═══ */
        .ed-add-sec {
            display: none;
            justify-content: center;
            padding: 32px;
            margin: 0 auto;
            max-width: 960px;
        }

        body.ed-active .ed-add-sec {
            display: flex !important;
        }

        .ed-add-sec button {
            width: 100%;
            padding: 16px;
            border: 2px dashed rgba(200, 168, 106, 0.4);
            border-radius: 4px;
            background: transparent;
            color: #c8a86a;
            font-size: 14px;
            cursor: pointer;
            font-family: inherit;
        }

        .ed-add-sec button:hover {
            border-color: #c8a86a;
            background: rgba(200, 168, 106, 0.08);
        }

        /* ═══ MODALS ═══ */
        .ed-modal {
            position: fixed;
            inset: 0;
            z-index: 10001;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, 'PingFang SC', 'Helvetica Neue', sans-serif;
        }

        .ed-modal.show {
            display: flex;
        }

        .ed-modal-box {
            background: #151515;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            padding: 24px;
            width: 420px;
            max-width: 90vw;
        }

        .ed-modal-box h3 {
            color: #c8c4be;
            margin-bottom: 16px;
            font-size: 16px;
        }

        .ed-modal-box label {
            display: block;
            color: #666;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .ed-modal-box input[type="text"] {
            width: 100%;
            padding: 8px 10px;
            background: #222;
            border: 1px solid #2a2a2a;
            border-radius: 4px;
            color: #c8c4be;
            font-size: 13px;
            outline: none;
            margin-bottom: 12px;
        }

        .ed-modal-box input[type="text"]:focus {
            border-color: #c8a86a;
        }

        .ed-modal-btns {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .ed-modal-btns button {
            flex: 1;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #2a2a2a;
            background: #222;
            color: #c8c4be;
            font-size: 13px;
            cursor: pointer;
            font-family: inherit;
        }

        .ed-modal-btns button:hover {
            border-color: #c8a86a;
            color: #c8a86a;
        }

        .ed-modal-btns button.primary {
            background: #c8a86a;
            color: #0a0a0a;
            border-color: #c8a86a;
        }

        /* ═══ ADD SECTION MODAL ═══ */
        #ed-add-modal-box {
            width: 480px;
        }

        .ed-add-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 16px;
        }

        .ed-add-tpl {
            padding: 14px 12px;
            border: 1px solid #2a2a2a;
            border-radius: 6px;
            background: #222;
            color: #c8c4be;
            cursor: pointer;
            font-size: 13px;
            font-family: inherit;
            text-align: center;
            transition: all .15s;
        }

        .ed-add-tpl:hover {
            border-color: #c8a86a;
            color: #c8a86a;
            background: rgba(200, 168, 106, 0.08);
        }

        .ed-add-tpl .tpl-icon {
            font-size: 24px;
            display: block;
            margin-bottom: 6px;
        }

        .ed-cancel {
            width: 100%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #2a2a2a;
            background: transparent;
            color: #666;
            cursor: pointer;
            font-family: inherit;
            font-size: 12px;
        }

        .ed-cancel:hover {
            color: #c8c4be;
            border-color: #444;
        }

        /* ═══ CONFIRM ═══ */
        #ed-confirm-box {
            width: 360px;
            text-align: center;
        }

        #ed-confirm-box p {
            color: #c8c4be;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.6;
            white-space: pre-line;
        }

        .ed-confirm-btns {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .ed-confirm-btns button {
            padding: 8px 24px;
            border-radius: 4px;
            border: 1px solid #2a2a2a;
            background: #222;
            color: #c8c4be;
            cursor: pointer;
            font-family: inherit;
            font-size: 13px;
        }

        .ed-confirm-btns button.yes {
            background: rgba(196, 92, 92, 0.8);
            color: #fff;
            border-color: transparent;
        }

        .ed-confirm-btns button:hover {
            opacity: 0.8;
        }

        /* ═══ TOAST ═══ */
        #ed-toast {
            position: fixed;
            bottom: 88px;
            right: 24px;
            z-index: 10002;
            background: #222;
            color: #c8c4be;
            padding: 10px 18px;
            border-radius: 6px;
            font-size: 13px;
            border: 1px solid #2a2a2a;
            opacity: 0;
            transition: opacity .3s;
            pointer-events: none;
            font-family: -apple-system, 'PingFang SC', sans-serif;
        }

        #ed-toast.show {
            opacity: 1;
        }

        /* ═══ CODE VIEW ═══ */
        #ed-code-panel {
            position: fixed;
            inset: 0;
            z-index: 10003;
            background: #0a0a0a;
            display: none;
        }

        #ed-code-panel.show {
            display: flex;
            flex-direction: column;
        }

        #ed-code-header {
            height: 44px;
            background: #151515;
            border-bottom: 1px solid #2a2a2a;
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 8px;
            font-family: -apple-system, 'PingFang SC', sans-serif;
        }

        #ed-code-header span {
            color: #666;
            font-size: 12px;
            flex: 1;
        }

        #ed-code-area {
            flex: 1;
            background: #0a0a0a;
            border: none;
            color: #c8a86a;
            font-family: 'SF Mono', 'Fira Code', monospace;
            font-size: 12px;
            padding: 20px;
            resize: none;
            outline: none;
            line-height: 1.6;
            tab-size: 2;
        }
    

/* Body-level inline styles from the original HTML */

    [contenteditable]:focus {
        outline: 2px dashed rgba(200, 168, 106, 0.4);
        outline-offset: 2px;
    }

    img {
        cursor: pointer;
        border: 2px solid transparent;
        transition: border-color 0.15s;
    }

    img:hover {
        border-color: rgba(200, 168, 106, 0.6);
    }
