﻿:root {
            --bg: #030303;
            --fg: #F4F4F4;
            --grey: #888888;
            --accent: #E8FF47; 
            
            --f-head: 'Syncopate', sans-serif;
            --f-serif: 'Instrument Serif', serif;
            --f-sans: 'Inter', sans-serif;
            --f-mono: monospace;
            
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Reset & Accessibility */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: initial; }
        
        body {
            background-color: var(--bg); color: var(--fg);
            font-family: var(--f-sans); overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        @media (pointer: fine) { body { cursor: none; } }

        a, button, [tabindex="0"] { 
            color: inherit; text-decoration: none; outline: none; border: none; background: none; font-family: inherit; cursor: pointer;
        }

        :focus-visible { outline: 2px solid var(--fg); outline-offset: 6px; border-radius: 2px; }
        ::selection { background: var(--fg); color: var(--bg); }
        ::-webkit-scrollbar { display: none; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }

        /* WebGL & Fallbacks */
        #webgl-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; }
        
        .mobile-fallback-bg { display: none; position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle at 50% 50%, #111 0%, #030303 100%); }

        @media (max-width: 768px) { #webgl-canvas { display: none !important; } .mobile-fallback-bg { display: block; } }

        /* Film Grain */
        .noise {
            position: fixed; inset: 0; z-index: 9999; pointer-events: none;
            opacity: 0.06; mix-blend-mode: overlay;
            background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
        }

        /* Morphing Custom Cursor */
        .cursor {
            position: fixed; top: 0; left: 0; width: 12px; height: 12px;
            background: var(--fg); border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2);
            pointer-events: none; z-index: 10000; transform: translate(-50%, -50%);
            mix-blend-mode: difference; display: flex; justify-content: center; align-items: center;
            transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), transform 0.1s;
        }
        .cursor-text {
            font-family: var(--f-mono); font-size: 10px; color: var(--bg);
            opacity: 0; text-transform: uppercase; letter-spacing: 0.1em; transition: opacity 0.2s var(--ease-out);
        }
        .cursor.active { width: 80px; height: 80px; }
        .cursor.view-mode { width: 90px; height: 90px; }
        .cursor.view-mode .cursor-text { opacity: 1; }
        body:active .cursor { transform: translate(-50%, -50%) scale(0.8); }

        @media (max-width: 768px) { .cursor { display: none; } }

        /* Preloader Boot Sequence */
        .loader {
            position: fixed; inset: 0; background: var(--bg); z-index: 99999;
            display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 4vw, 60px);
            font-family: var(--f-mono); font-size: clamp(12px, 1vw, 16px); color: var(--grey);
        }
        .loader-percent {
            font-family: var(--f-head); font-size: clamp(40px, 8vw, 120px); color: var(--fg);
            position: absolute; bottom: 4vw; right: 4vw; mix-blend-mode: difference;
        }

        /* Core Layout */
        .main-wrap { position: relative; z-index: 1; }
        
        nav {
            position: fixed; top: 0; width: 100%; padding: clamp(20px, 2vw, 40px) clamp(20px, 4vw, 80px);
            display: flex; justify-content: space-between; align-items: center; mix-blend-mode: difference; z-index: 100;
        }
        .nav-logo { font-family: var(--f-head); font-size: clamp(14px, 1vw, 20px); text-transform: uppercase; letter-spacing: 0.2em; cursor: pointer; }
        
        .nav-right { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); }
        .resume-btn {
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 4px;
            transition: all 0.3s; color: var(--fg);
        }
        .resume-btn:hover { background: var(--fg); color: var(--bg); }
        
        .nav-status { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
        .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px rgba(232, 255, 71, 0.4); animation: pulse 2s infinite; }

        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

        /* Hero Typography */
        header { 
            height: 100vh; display: flex; flex-direction: column; justify-content: center; 
            padding: clamp(56px, 6vw, 88px) clamp(20px, 4vw, 80px) 0; mix-blend-mode: difference; 
        }
        
        /* The New Kicker */
        .h-kicker {
            font-family: var(--f-mono); font-size: clamp(10px, 1vw, 14px);
            color: var(--accent); text-transform: uppercase; letter-spacing: 0.25em;
            margin-bottom: clamp(16px, 2vw, 32px);
        }

        .h-title {
            font-family: var(--f-head); font-size: clamp(3rem, 11vw, 14rem); 
            line-height: 0.85; text-transform: uppercase; color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.25); position: relative; cursor: default;
        }
        .h-title:hover { -webkit-text-stroke: 1px var(--fg); color: var(--fg); transition: all 0.5s ease; }
        .h-title .fill { color: var(--fg); -webkit-text-stroke: 0; }
        .h-title i { font-family: var(--f-serif); font-weight: 400; font-style: italic; text-transform: none; }
        
        .h-sub { 
            font-family: var(--f-sans); font-size: clamp(14px, 1.2vw, 20px); 
            max-width: clamp(300px, 35vw, 600px); line-height: 1.6; margin-top: clamp(20px, 4vw, 60px); color: #AAA; 
        }
        .hero-actions {
            display: flex; flex-wrap: wrap; gap: 14px;
            margin-top: clamp(24px, 3vw, 36px);
        }
        .cta-btn {
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 180px; padding: 14px 22px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
            transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
        }
        .cta-btn:hover { transform: translateY(-2px); }
        .cta-primary { background: var(--fg); color: var(--bg); }
        .cta-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
        .cta-secondary { color: var(--fg); }
        .cta-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

        /* Spec Metrics */
        .specs { 
            padding: clamp(60px, 10vw, 160px) clamp(20px, 4vw, 80px); 
            border-top: 1px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; 
        }
        .spec-large { font-family: var(--f-serif); font-size: clamp(2rem, 4.5vw, 6rem); line-height: 1.1; }
        .spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); }
        .sg-item p { font-family: var(--f-mono); font-size: 11px; color: rgba(244,244,244,0.7); text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.08em; }
        .sg-item h4 { font-family: var(--f-head); font-size: clamp(1.5rem, 2vw, 3rem); letter-spacing: -0.05em; display: inline-block; }

        /* About Section */
        .about { padding: clamp(60px, 10vw, 160px) clamp(20px, 4vw, 80px); border-top: 1px solid rgba(255,255,255,0.1); }
        .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8vw; }
        .a-title { font-family: var(--f-head); font-size: clamp(3rem, 7vw, 10rem); line-height: 0.9; text-transform: uppercase; letter-spacing: -0.02em; }
        .a-title i { font-family: var(--f-serif); font-weight: 400; font-style: italic; text-transform: none; color: var(--grey); }
        
        .portrait-wrapper {
            position: relative; width: 100%; max-width: 280px; margin-top: 4vw;
            overflow: hidden; background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .author-portrait {
            width: 100%; height: auto; display: block;
            filter: grayscale(100%) contrast(140%) brightness(85%);
            mix-blend-mode: luminosity; transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
        }
        .portrait-scanline {
            position: absolute; inset: 0; pointer-events: none;
            background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
            z-index: 2;
        }
        .portrait-wrapper:hover .author-portrait { transform: scale(1.03); filter: grayscale(100%) contrast(120%) brightness(95%); }

        .about-right { display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 3vw, 40px); }
        .a-text { font-family: var(--f-sans); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.65; font-weight: 300; color: rgba(244,244,244,0.9); max-width: 66ch; }
        .a-text strong { color: var(--fg); font-weight: 500; }
        
        .testimonial {
            border-left: 2px solid var(--accent); padding: clamp(18px, 2vw, 28px) 0 clamp(18px, 2vw, 28px) clamp(20px, 2.5vw, 32px);
            margin-top: 2vw; font-family: var(--f-serif); font-size: clamp(26px, 3vw, 42px); font-style: italic; color: var(--fg); line-height: 1.2;
            background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent);
        }
        .testimonial span { display: block; font-family: var(--f-mono); font-size: 11px; font-style: normal; color: rgba(244,244,244,0.62); margin-top: 16px; text-transform: uppercase; letter-spacing: 0.12em; }
        .about .testimonial { display: none; }
        .about-socials { display: flex; flex-wrap: wrap; gap: 14px; }
        .icon-button {
            display: inline-flex; align-items: center; gap: 12px;
            min-width: 160px; padding: 14px 18px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18); color: var(--fg);
            background: rgba(255,255,255,0.02);
            transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
        }
        .icon-button:hover {
            transform: translateY(-2px);
            border-color: rgba(232,255,71,0.55);
            background: rgba(232,255,71,0.08);
            color: #FFF;
        }
        .icon-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
        .icon-button span { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }

        .a-stats { display: flex; flex-wrap: wrap; gap: clamp(30px, 6vw, 80px); margin-top: 4vw; padding-top: 4vw; border-top: 1px solid rgba(255,255,255,0.1); }
        .a-stat { display: flex; flex-direction: column; gap: 8px; font-family: var(--f-mono); font-size: 12px; color: var(--fg); text-transform: uppercase; }
        .a-stat span { color: var(--grey); font-size: 10px; }

        /* Projects Section */
        .work { padding: clamp(60px, 10vw, 160px) 0; overflow: hidden; }
        .section-title { padding: 0 clamp(20px, 4vw, 80px); font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; color: var(--grey); margin-bottom: 5vw; letter-spacing: 0.1em; }
        .work-head {
            padding: 0 clamp(20px, 4vw, 80px);
            display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 5vw;
        }
        .work-head .section-title { padding: 0; margin-bottom: 0; }
        .section-link {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 12px 18px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18);
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
            transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
        }
        .section-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.05); }
        .list-wrap { border-top: 1px solid rgba(255,255,255,0.1); }
        
        .list-item-wrapper { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .list-item {
            padding: clamp(20px, 3vw, 60px) clamp(20px, 4vw, 80px); display: flex; justify-content: space-between; align-items: center;
            transform-origin: left center; will-change: transform; cursor: pointer; transition: background 0.3s;
        }
        .li-name { flex: 1 1 auto; min-width: 0; font-family: var(--f-head); font-size: clamp(2rem, 5vw, 8rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; transition: transform 0.4s var(--ease-out); }
        .li-meta { flex: 0 0 auto; max-width: min(22vw, 280px); display: flex; align-items: center; gap: clamp(10px, 2vw, 20px); font-family: var(--f-sans); font-size: clamp(14px, 1.2vw, 18px); text-align: right; color: var(--grey); transition: color 0.3s; }
        .li-meta-copy { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
        .li-badges { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
        .li-badge {
            padding: 6px 10px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.16);
            font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; color: rgba(244,244,244,0.82);
        }
        
        .ext-arrow { transition: transform 0.4s var(--ease-out); transform: rotate(90deg); stroke: currentColor; }
        
        .list-item:hover .li-name { transform: translateX(1.2vw); color: var(--fg); }
        .list-item:hover .li-meta { color: var(--fg); }
        .list-item.active .ext-arrow { transform: rotate(180deg); stroke: var(--accent); }
        .list-item.active .li-name { color: var(--fg); }

        .project-drawer { height: 0; overflow: hidden; }
        .drawer-inner { padding: 0 clamp(20px, 4vw, 80px) clamp(40px, 4vw, 80px); }
        .project-pill-group {
            display: flex; flex-direction: column; gap: 12px;
            border-top: 1px dashed rgba(255,255,255,0.2);
            padding-top: 24px; margin-bottom: 28px;
        }
        .project-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
        .project-pill {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 8px 14px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.16);
            font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: rgba(244,244,244,0.86);
        }
        .project-pill.metric { color: var(--accent); border-color: rgba(232,255,71,0.28); }
        .project-actions { display: flex; flex-wrap: wrap; gap: 12px; }
        .project-link-btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 12px 18px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
            transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
        }
        .project-link-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.36); }
        .drawer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4vw; border-top: 1px dashed rgba(255,255,255,0.2); padding-top: 4vw; }
        .drawer-grid h5 { font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; color: var(--grey); margin-bottom: 12px; }
        .drawer-grid p { font-family: var(--f-sans); font-size: clamp(14px, 1.2vw, 18px); color: #CCC; line-height: 1.6; }
        .ascii-diagram { font-family: var(--f-mono) !important; color: var(--accent) !important; font-size: 12px !important; }
        .work .list-item-wrapper:nth-of-type(2) .drawer-grid > div:nth-child(2) { display: none; }

        /* Skills Matrix: Marquee Core + Detailed Breakdown */
        .skills { padding: clamp(60px, 10vw, 160px) 0; border-top: 1px solid rgba(255,255,255,0.1); }
        .skills-matrix { 
            padding: 0 clamp(20px, 4vw, 80px); display: flex; flex-wrap: wrap; gap: clamp(10px, 2vw, 40px) clamp(20px, 4vw, 80px); 
            margin-top: 2vw; transition: opacity 0.3s;
        }
        .s-node {
            font-family: var(--f-head); font-size: clamp(2.5rem, 6vw, 9rem); text-transform: uppercase;
            line-height: 0.9; color: var(--fg); cursor: default;
            transition: color 0.3s, opacity 0.3s, transform 0.3s var(--ease-out);
        }
        .skills-matrix:hover .s-node:not(:hover) { opacity: 0.15; }
        .skills-matrix .s-node:hover { transform: scale(1.02); color: #FFF; }

        /* Technical Matrix (Resume Integration) */
        .sd-grid { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8vw; }
        .sd-row { 
            display: grid; grid-template-columns: 1fr 2fr; gap: 4vw; align-items: center; 
            padding: clamp(40px, 6vw, 100px) clamp(20px, 4vw, 80px); 
            border-bottom: 1px solid rgba(255,255,255,0.1); transition: background 0.4s var(--ease-out); 
        }
        .sd-row:hover { background: rgba(255,255,255,0.02); }
        
        .sd-cat { 
            font-family: var(--f-serif); font-size: clamp(2.5rem, 5vw, 6rem); 
            color: var(--grey); font-style: italic; line-height: 1; 
            transition: color 0.4s var(--ease-out), transform 0.4s var(--ease-out); 
        }
        .sd-row:hover .sd-cat { color: var(--fg); transform: translateX(1vw); }
        
        .sd-items { display: flex; flex-wrap: wrap; gap: clamp(8px, 1vw, 16px); }
        
        .skill-chip {
            font-family: var(--f-mono); font-size: clamp(13px, 0.95vw, 15px); text-transform: uppercase; 
            color: var(--fg); border: 1px solid rgba(255,255,255,0.24); 
            padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px); border-radius: 100px;
            transition: all 0.3s var(--ease-out); cursor: default;
        }
        .skill-chip:hover {
            background: var(--accent); color: var(--bg); border-color: var(--accent);
            transform: translateY(-4px); box-shadow: 0 10px 20px rgba(232, 255, 71, 0.15);
        }

        /* Tactile Footer */
        footer { 
            min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; gap: clamp(24px, 4vw, 48px);
            padding: clamp(20px, 4vw, 80px); border-top: 1px solid rgba(255,255,255,0.1); position: relative;
            mix-blend-mode: difference;
        }
        .f-top { display: flex; justify-content: center; margin-top: 2vw; }
        .f-status-badge {
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; color: var(--fg);
            display: flex; align-items: center; gap: 12px;
            border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px; border-radius: 100px;
        }
        .contact-stack {
            flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;
            gap: clamp(24px, 4vw, 40px);
        }
        .contact-form {
            width: min(100%, 760px); display: flex; flex-direction: column; gap: 16px;
            padding: clamp(18px, 2vw, 24px);
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.02);
        }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .contact-field { display: flex; flex-direction: column; gap: 10px; }
        .contact-field span {
            font-family: var(--f-mono); font-size: 11px; text-transform: uppercase;
            letter-spacing: 0.12em; color: var(--grey);
        }
        .contact-field input,
        .contact-field textarea {
            width: 100%; padding: 14px 16px;
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(0,0,0,0.36); color: var(--fg);
            font-family: var(--f-sans); font-size: 16px;
        }
        .contact-field textarea { min-height: 148px; resize: vertical; }
        .contact-send {
            align-self: flex-start; padding: 14px 22px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
            background: var(--fg); color: var(--bg);
            transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
        }
        .contact-send:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); }
        
        .f-mail {
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            font-family: var(--f-head); font-size: clamp(2rem, 7.5vw, 10rem); line-height: 0.9; text-transform: uppercase;
            text-align: center; color: var(--fg); transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }
        .f-mail:hover { transform: scale(1.03); }
        .f-mail:active { transform: scale(0.98); } 
        .f-mail span { display: block; }
        .f-mail i { font-family: var(--f-serif); font-weight: 400; font-style: italic; text-transform: none; color: var(--grey); transition: color 0.4s; }
        .f-mail:hover i { color: #FFF; }

        .f-links { 
            display: flex; justify-content: space-between; align-items: center; width: 100%;
            font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; color: var(--grey);
        }
        .footer-socials { display: flex; align-items: center; gap: 12px; }
        .footer-socials .icon-button { min-width: auto; padding: 12px 16px; }
        .footer-contact-links { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 16px; }
        .f-link { position: relative; display: inline-block; padding-bottom: 4px; color: var(--fg) !important; cursor: pointer; }
        .f-link::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
            background: var(--fg); transform: scaleX(0); transform-origin: right;
            transition: transform 0.4s var(--ease-out);
        }
        .f-link:hover::after, .f-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
        
        #live-time { color: var(--accent); font-weight: 700; }

        @media (max-width: 768px) {
            nav { padding: 20px; }
            .nav-status { display: none; }
            .specs { grid-template-columns: 1fr; }
            .about-grid { grid-template-columns: 1fr; gap: 12vw; }
            .spec-grid { grid-template-columns: 1fr; }
            .hero-actions { width: 100%; }
            .cta-btn { width: 100%; }
            .icon-button { width: 100%; justify-content: center; }
            .work-head { flex-direction: column; align-items: flex-start; }
            .li-meta { align-items: flex-start; }
            .li-meta-copy { align-items: flex-start; text-align: left; }
            .li-badges { justify-content: flex-start; }
            .f-links { flex-direction: column; align-items: center; gap: 24px; }
            .footer-socials { flex-wrap: wrap; justify-content: center; }
            .footer-contact-links { justify-content: center; }
            .contact-grid { grid-template-columns: 1fr; }
            .drawer-grid { grid-template-columns: 1fr; }
            .sd-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px; }
            .sd-cat { font-size: 3rem; }
        }


