        .nav-links a.active {
            color: var(--accent);
        }
        .nav-links a.active::after {
            width: 100%;
            background: var(--accent);
        }

        /* ─── HERO ─── */
        .hero {
            position: relative;
            height: 50vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://img.youtube.com/vi/_OEmKQj8NP0/maxresdefault.jpg') center center / cover no-repeat;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg,
                    rgba(10,10,10,0.5) 0%,
                    rgba(10,10,10,0.3) 40%,
                    rgba(10,10,10,0.5) 70%,
                    rgba(10,10,10,0.95) 100%
                );
        }

        /* Letterbox bars */
        .letterbox-top,
        .letterbox-bottom {
            position: absolute;
            left: 0; right: 0;
            height: 12%;
            background: #000;
            z-index: 2;
        }
        .letterbox-top { top: 0; }
        .letterbox-bottom { bottom: 0; }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 5rem);
            letter-spacing: 8px;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .hero-content h1 span {
            display: block;
            color: var(--accent);
        }

        .hero-sub {
            font-family: var(--font-serif);
            font-size: clamp(1rem, 2vw, 1.4rem);
            color: var(--text-secondary);
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ─── SECTIONS ─── */
        section {
            padding: 6rem 3rem;
            position: relative;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: 3px;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        /* ─── ORIGIN STORY ─── */
        .origin {
            background: var(--bg-primary);
        }

        .origin-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .origin-image {
            position: relative;
        }

        .origin-image .frame {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            aspect-ratio: 16/9;
        }

        .origin-image .frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85) contrast(1.05);
            transition: transform 0.6s ease;
        }

        .origin-image .frame:hover img {
            transform: scale(1.03);
        }

        .origin-image .frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid var(--border);
            pointer-events: none;
        }

        .origin-image .accent-bar {
            position: absolute;
            bottom: -12px;
            left: 30px;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .origin-text p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
        }

        .origin-text p strong {
            color: var(--text-primary);
            font-weight: 500;
        }

        .origin-text .highlight {
            font-family: var(--font-serif);
            font-size: 1.35rem;
            color: var(--accent);
            font-style: italic;
            line-height: 1.6;
            border-left: 2px solid var(--accent-dim);
            padding-left: 1.25rem;
            margin: 2rem 0;
        }

        /* ─── MEET MARK ─── */
        .founder {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .founder-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 5rem;
            align-items: start;
        }

        .founder-photo {
            position: relative;
        }

        .founder-photo .frame {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            aspect-ratio: 3/4;
        }

        .founder-photo .frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            filter: brightness(0.9) contrast(1.05);
        }

        .founder-photo .frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid var(--border);
            pointer-events: none;
        }

        .founder-photo .photo-accent {
            position: absolute;
            top: -8px;
            right: -8px;
            bottom: 8px;
            left: 8px;
            border: 1px solid var(--accent-dim);
            border-radius: 2px;
            z-index: -1;
        }

        .founder-info .founder-name {
            font-family: var(--font-display);
            font-size: clamp(3rem, 5vw, 4.5rem);
            letter-spacing: 4px;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .founder-info .founder-title {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2.5rem;
        }

        .founder-info .bio {
            font-size: 1rem;
            line-height: 1.9;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .founder-info .bio:last-of-type {
            margin-bottom: 2.5rem;
        }

        .founder-contact {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .founder-contact a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color 0.3s;
        }

        .founder-contact a:hover {
            color: var(--accent);
        }

        .founder-contact svg {
            width: 16px;
            height: 16px;
            stroke: var(--accent);
        }

        /* ─── VALUES ─── */
        .values {
            background: var(--bg-primary);
        }

        .values-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .values-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: border-color 0.4s, transform 0.4s;
        }

        .value-card:hover {
            border-color: var(--accent-dim);
            transform: translateY(-4px);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dim));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-number {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--border);
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .value-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ─── STATS BAR ─── */
        .stats-bar {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 3rem;
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }

        .stat-item .stat-value {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.2;
        }

        .stat-item .stat-label {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-top: 0.3rem;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: var(--border);
        }

        /* ─── CTA ─── */
        .cta-section {
            background: var(--bg-primary);
            text-align: center;
            padding: 7rem 3rem;
        }

        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 4px;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 2.5rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: var(--bg-primary);
            font-family: var(--font-display);
            font-size: 1.1rem;
            letter-spacing: 3px;
            border: none;
            cursor: pointer;
            transition: all 0.4s;
            text-decoration: none;
        }

        .cta-btn:hover {
            background: var(--accent-bright);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(200, 164, 86, 0.25);
        }

        .cta-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
        }

        .cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            section { padding: 5rem 2rem; }
            .origin-grid { grid-template-columns: 1fr; gap: 3rem; }
            .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
            .founder-photo { max-width: 350px; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            section { padding: 4rem 1.25rem; }
            .values-grid { grid-template-columns: 1fr; }
            .founder-inner { grid-template-columns: 1fr; }
            .founder-photo { max-width: 100%; }
            .stats-inner { flex-direction: column; }
            .stat-divider { width: 40px; height: 1px; }
            .origin-grid { gap: 2.5rem; }
            .hero-content h1 { letter-spacing: 3px; }
            .founder-contact { flex-direction: column; gap: 1rem; }
        }

        /* ─── STAGGERED REVEALS ─── */
        .values-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
        .values-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

        /* ─── INDUSTRIES ─── */
        .industries {
            background: var(--bg-primary);
        }

        .industries-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .industries-header .section-label { justify-content: center; }

        .industries-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .industry-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .industry-card:hover {
            border-color: var(--accent-dim);
            transform: translateY(-3px);
        }

        .industry-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .industry-card h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            letter-spacing: 1.5px;
            color: var(--text-primary);
        }

        .industry-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        @media (max-width: 768px) {
            .industries-grid { grid-template-columns: repeat(2, 1fr); }
        }