  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --bg: #0a0806;
    --bg-2: #14110d;
    --gold: #c9a961;
    --gold-bright: #e6c47e;
    --copper: #b8794a;
    --amber: #d49654;
    --text: #f5f0e8;
    --text-muted: #999088;
    --line: rgba(201, 169, 97, 0.15);
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* ========== VOLUMETRIC ATMOSPHERE LAYERS ========== */
  
  /* Shader-based flowing smoke (full screen, fixed) */
  #smoke-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Three.js scene for particles & depth */
  #three-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  /* Top atmospheric light */
  .top-light {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 800px;
    background: radial-gradient(ellipse at center top, rgba(212, 150, 84, 0.08) 0%, rgba(201, 169, 97, 0.03) 30%, transparent 70%);
    z-index: 3;
    pointer-events: none;
  }
  
  /* Vignette */
  .vignette {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 35%, var(--bg) 100%);
    opacity: 0.85;
  }
  
  /* Signature horizon cursor */
  .horizon-line {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
    z-index: 9999;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
  }
  .horizon-line.active { 
    opacity: 0.9; 
    transform: scaleY(2); 
  }
  
  /* Progress indicator */
  .progress-indicator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background: rgba(201, 169, 97, 0.15);
    z-index: 50;
    pointer-events: none;
  }
  .progress-fill {
    position: absolute;
    top: 0; left: -1px;
    width: 3px;
    background: var(--gold);
    transition: height 0.2s ease-out;
    box-shadow: 0 0 12px var(--gold);
  }
  .progress-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
  }
  
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 8, 6, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.4s ease;
  }
  nav.hidden { transform: translateY(-100%); }
  
  .nav-logo {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: letter-spacing 0.4s;
  }
  .nav-logo:hover { letter-spacing: 3px; }
  .nav-logo .logo-first { color: var(--gold); }
  .nav-logo .logo-last { color: var(--text); }
  
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  
  .content {
    position: relative;
    z-index: 5;
  }
  
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
  }
  
  .hero-eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: slideInLeft 1s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    animation: expandLine 1s 0.4s forwards;
  }
  
  .hero-title {
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: clamp(56px, 7vw, 110px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 40px;
    white-space: nowrap;
  }
  .hero-title .word {
    display: inline-block;
    overflow: hidden;
    padding: 0 0 0.05em;
    margin: 0 0.12em -0.05em 0;
  }
  .hero-title .word span {
    display: inline-block;
    transform: translateY(110%);
    animation: revealText 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }
  .hero-title .line-break {
    display: block;
    height: 0;
  }
  .hero-title .word:nth-of-type(1) span { animation-delay: 0.4s; }
  .hero-title .word:nth-of-type(2) span { animation-delay: 0.5s; }
  .hero-title .word:nth-of-type(3) span { animation-delay: 0.6s; }
  .hero-title .word:nth-of-type(4) span { animation-delay: 0.7s; }
  .hero-title .word:nth-of-type(5) span { animation-delay: 0.95s; }
  
  .hero-title .gold-text {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: -3px;
  }
  
  .hero-tagline {
    font-family: 'Jost', sans-serif;
    font-size: clamp(20px, 2vw, 26px);
    color: var(--text);
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: -0.3px;
    line-height: 1.4;
    opacity: 0;
    animation: fadeUp 1s 1.4s forwards;
  }
  .hero-tagline .gold-accent {
    color: var(--gold);
    font-weight: 500;
  }
  
  .hero-subtitle {
    font-size: 19px;
    color: var(--text);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
    font-weight: 300;
  }
  
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 40px;
    border: 1px solid var(--gold);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
    opacity: 0;
    animation: fadeUp 1s 1.7s forwards;
  }
  .hero-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
  }
  .hero-cta:hover { color: var(--bg); }
  .hero-cta:hover::before { left: 0; }
  .hero-cta .arrow { transition: transform 0.4s; }
  .hero-cta:hover .arrow { transform: translateX(8px); }
  
  .hero-image {
    opacity: 0;
    animation: fadeIn 1.5s 0.6s forwards;
    perspective: 1200px;
  }
  .photo-frame {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--bg-2), #1c1812);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }
  .photo-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(212, 150, 84, 0.12) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
  }
  .photo-placeholder {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
  }
  .photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .photo-frame:hover .photo-img {
    transform: scale(1.03);
  }
  .photo-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    transform: translateZ(20px);
    z-index: 3;
  }
  .photo-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
  .photo-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
  
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 30%;
    background: var(--bg);
    animation: scrollLine 2s ease-in-out infinite;
  }
  
  section.content-section {
    padding: 160px 80px;
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
  }
  
  .section-eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  
  .about-content { max-width: 1100px; }
  .about-text {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 50px;
  }
  .about-text .highlight {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
    position: relative;
    display: inline-block;
  }
  .about-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  }
  .about-text.in-view .highlight::after {
    transform: scaleX(1);
  }
  
  .mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    perspective: 1500px;
  }
  .mvv-card {
    padding: 70px 45px;
    border: 1px solid var(--line);
    background: rgba(20, 17, 13, 0.7);
    backdrop-filter: blur(20px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    transform-style: preserve-3d;
  }
  .mvv-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .mvv-card:nth-child(1).in-view { transition-delay: 0s; }
  .mvv-card:nth-child(2).in-view { transition-delay: 0.2s; }
  .mvv-card:nth-child(3).in-view { transition-delay: 0.4s; }
  
  .mvv-card:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.15);
  }
  .mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.6s;
  }
  .mvv-card:hover::before { width: 100%; }
  
  .mvv-number {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 28px;
    font-family: 'Courier New', monospace;
  }
  .mvv-title {
    font-size: 32px;
    font-weight: 200;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
  }
  .mvv-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
  }
  
  .values-list {
    display: flex;
    gap: 20px;
    margin-top: 70px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .value-item {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid var(--line);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    background: rgba(20, 17, 13, 0.5);
    backdrop-filter: blur(10px);
  }
  .value-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
  }
  .value-item:hover {
    color: var(--bg);
    border-color: var(--gold);
  }
  .value-item:hover::before { left: 0; }
  
  .placeholder {
    padding: 100px 60px;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  /* ========== RECOGNITION SECTION ========== */
  .recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
  }
  
  .recognition-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .recognition-right {
    text-align: right;
  }
  
  .rec-eyebrow {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
  }
  
  .rec-headline {
    font-family: 'Jost', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -1px;
  }
  
  .rec-paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 320px;
  }
  .recognition-right .rec-paragraph {
    margin-left: auto;
  }
  
  .rec-quote {
    color: var(--gold);
    border-left: 1px solid var(--gold);
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
  }
  .recognition-right .rec-quote {
    border-left: none;
    border-right: 1px solid var(--gold);
    padding-left: 0;
    padding-right: 16px;
  }
  
  .coin-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
  }
  #coin-canvas {
    width: 100%;
    height: 100%;
    cursor: grab;
    display: block;
  }
  #coin-canvas:active { cursor: grabbing; }
  
  .coin-instruction {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    opacity: 0.6;
    transition: opacity 0.4s;
  }
  .coin-stage:hover .coin-instruction { opacity: 1; }
  
  /* ========== SELECTED WORK SECTION ========== */
  .work-section { padding-top: 180px; }
  
  .work-headline {
    font-family: 'Jost', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 1100px;
  }
  
  .work-subheadline {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text-muted);
    margin-bottom: 80px;
    max-width: 700px;
    line-height: 1.6;
  }
  
  .work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
  }
  
  .work-card {
    background: rgba(20, 17, 13, 0.45);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    cursor: pointer;
  }
  .work-card.in-view { opacity: 1; transform: translateY(0); }
  .work-card:nth-child(2).in-view { transition-delay: 0.1s; }
  .work-card:nth-child(3).in-view { transition-delay: 0.2s; }
  .work-card:nth-child(4).in-view { transition-delay: 0.3s; }
  .work-card:nth-child(5).in-view { transition-delay: 0.4s; }
  
  .work-card:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 97, 0.1);
  }
  
  .work-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(20, 17, 13, 0.6) 0%, rgba(40, 28, 15, 0.4) 100%);
    display: flex;
    align-items: stretch;
    min-height: 380px;
  }
  .work-card-featured .work-card-image {
    width: 45%;
    aspect-ratio: auto;
  }
  .work-card-featured .work-card-content {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .work-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.4), rgba(28, 24, 18, 0.4));
  }
  
  /* ===== FLOATING ELEMENT COMPOSITIONS ===== */
  .float-canvas {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .work-card:hover .float-canvas {
    transform: scale(1.05);
  }
  
  .float-element {
    position: absolute;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s;
  }
  
  /* Floating gold lines */
  .float-line {
    background: var(--gold);
    height: 1px;
    transform-origin: left center;
  }
  .float-line.thin { opacity: 0.3; }
  .float-line.medium { opacity: 0.5; }
  .float-line.bright { opacity: 0.8; height: 1.5px; }
  
  /* Floating shapes */
  .float-circle {
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.4;
  }
  .float-circle-fill {
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
  }
  .float-square {
    border: 1px solid var(--gold);
    opacity: 0.35;
  }
  .float-rect {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.25);
  }
  .float-grid-block {
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.3);
  }
  .float-triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid var(--gold);
    opacity: 0.6;
  }
  
  /* Glyph signatures (small gold letterform/symbol per category) */
  .float-glyph {
    color: var(--gold);
    font-family: 'Jost', serif;
    font-weight: 200;
    line-height: 1;
    user-select: none;
  }
  .float-label {
    color: var(--gold);
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.65;
  }
  
  /* Idle animation - subtle drift */
  @keyframes floatDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, -3px); }
  }
  @keyframes floatDrift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-3px, 4px) rotate(2deg); }
  }
  @keyframes floatDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 2px); }
  }
  @keyframes floatPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
  }
  
  .drift-1 { animation: floatDrift1 7s ease-in-out infinite; }
  .drift-2 { animation: floatDrift2 9s ease-in-out infinite; }
  .drift-3 { animation: floatDrift3 11s ease-in-out infinite; }
  .pulse-anim { animation: floatPulse 4s ease-in-out infinite; }
  
  /* Hover state - elements drift further apart */
  .work-card:hover .drift-out-tl { transform: translate(-8px, -8px); }
  .work-card:hover .drift-out-tr { transform: translate(8px, -8px); }
  .work-card:hover .drift-out-bl { transform: translate(-8px, 8px); }
  .work-card:hover .drift-out-br { transform: translate(8px, 8px); }
  .work-card:hover .drift-out-c { transform: scale(1.08); }
  
  .work-card-content {
    padding: 35px 40px 40px;
  }
  
  .work-card-number {
    font-family: 'Courier New', monospace;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 14px;
  }
  
  .work-card-category {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Courier New', monospace;
  }
  
  .work-card-category-featured {
    color: var(--gold);
  }
  
  .work-card-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  
  .work-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
  }
  
  .work-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .work-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 36px;
    border: 1px solid var(--gold);
    transition: all 0.4s;
    background: transparent;
    position: relative;
    overflow: hidden;
  }
  .work-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
  }
  .work-cta:hover { color: var(--bg); }
  .work-cta:hover::before { left: 0; }
  .work-cta:hover .arrow { transform: translateX(8px); }
  .work-cta .arrow { transition: transform 0.4s; }
  
  /* ========== RESUME SECTION ========== */
  .resume-section { padding-top: 120px; padding-bottom: 180px; }
  
  .resume-headline {
    font-family: 'Jost', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 80px;
  }
  
  .resume-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }
  
  .resume-preview-card {
    perspective: 1200px;
  }
  
  .resume-preview-frame {
    aspect-ratio: 8.5/11;
    background: var(--bg-2);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
  }
  .resume-preview-frame:hover {
    transform: translateY(-8px) rotateY(-3deg);
    border-color: var(--gold);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(201, 169, 97, 0.15);
  }
  
  .resume-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .resume-preview-frame:hover .resume-image {
    transform: scale(1.03);
  }
  
  .resume-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .resume-preview-frame:hover .resume-overlay { opacity: 1; }
  
  .resume-overlay-icon {
    font-size: 40px;
    color: var(--gold);
  }
  
  .resume-overlay-text {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
  }
  
  .resume-info-text {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: -0.3px;
  }
  
  .resume-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .resume-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 36px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    color: var(--text);
    border: 1px solid var(--line);
    background: transparent;
  }
  .resume-contact-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .resume-contact-btn .arrow {
    transition: transform 0.4s;
  }
  .resume-contact-btn:hover .arrow { transform: translateX(8px); }
  
  .resume-contact-line {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .contact-divider { color: var(--gold); opacity: 0.5; }
  .contact-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-link:hover { color: var(--gold); }
  
  /* ========== FOOTER ========== */
  .site-footer {
    border-top: 1px solid var(--line);
    padding: 50px 80px;
    background: rgba(8, 6, 4, 0.6);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 5;
  }
  
  .footer-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-name {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
  }
  
  .footer-tagline {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
  }
  
  .footer-right {
    text-align: right;
  }
  
  .footer-copyright,
  .footer-location {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  
  /* ========== SHOWCASE SECTION (Glimpse Gallery) ========== */
  .showcase-section {
    padding-top: 40px;
  }
  
  .showcase-headline {
    font-family: 'Jost', sans-serif;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 1100px;
  }
  .showcase-headline .gold-text {
    color: var(--gold);
    font-weight: 500;
  }
  
  .showcase-subheadline {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    line-height: 1.6;
  }
  
  /* Filter pills */
  .showcase-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }
  .filter-pill {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
  }
  .filter-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
  }
  .filter-pill:hover {
    color: var(--gold);
    border-color: var(--gold);
  }
  .filter-pill.active {
    color: var(--bg);
    border-color: var(--gold);
    background: var(--gold);
  }
  .filter-count {
    margin-left: 6px;
    font-size: 10px;
    opacity: 0.7;
  }
  
  /* Showcase grid - masonry-like with auto-rows */
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
  
  /* Universal artifact card */
  .artifact-card {
    background: rgba(20, 17, 13, 0.55);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
  }
  .artifact-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .artifact-card.is-hidden {
    display: none;
  }
  .artifact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 97, 0.08);
  }
  .artifact-card:hover .artifact-thumb-content {
    transform: scale(1.04);
  }
  .artifact-card:hover .artifact-overlay {
    opacity: 1;
  }
  
  /* Card sizing variants by media type — drives "shape per format" */
  .artifact-card[data-shape="square"] .artifact-thumb { aspect-ratio: 1 / 1; }
  .artifact-card[data-shape="portrait"] .artifact-thumb { aspect-ratio: 3 / 4; }
  .artifact-card[data-shape="landscape"] .artifact-thumb { aspect-ratio: 16 / 9; }
  .artifact-card[data-shape="document"] .artifact-thumb { aspect-ratio: 8.5 / 11; } /* US Letter */
  .artifact-card[data-shape="wide"] .artifact-thumb { aspect-ratio: 21 / 9; }
  
  /* Featured card spans 2 columns */
  .artifact-card.is-featured {
    grid-column: span 2;
  }
  
  /* Thumbnail container */
  .artifact-thumb {
    width: 100%;
    background: var(--bg-2);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* The actual media element inside */
  .artifact-thumb-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
  }
  .artifact-thumb video.artifact-thumb-content {
    object-fit: cover;
  }
  
  /* Placeholder when no media is set yet (WordPress will replace) */
  .artifact-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
      linear-gradient(135deg, rgba(40, 28, 15, 0.5) 0%, rgba(20, 17, 13, 0.7) 100%);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    text-align: center;
    padding: 30px;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .artifact-placeholder::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    pointer-events: none;
  }
  .artifact-placeholder-icon {
    font-size: 48px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--gold);
    letter-spacing: -2px;
  }
  .artifact-placeholder-type {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
    margin-bottom: 8px;
  }
  .artifact-placeholder-name {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
  }
  
  /* File type badge (top-right corner of thumb) */
  .artifact-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 9px;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
  }
  
  /* Play indicator for video */
  .artifact-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    transition: transform 0.4s, background 0.4s;
  }
  .artifact-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 14px solid var(--gold);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
  }
  .artifact-card:hover .artifact-play {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .artifact-card:hover .artifact-play::before {
    border-left-color: var(--bg);
  }
  
  /* Hover overlay with "view" prompt */
  .artifact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 8, 6, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
    pointer-events: none;
  }
  .artifact-overlay-cta {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .artifact-overlay-cta::after {
    content: '→';
    transition: transform 0.4s;
  }
  .artifact-card:hover .artifact-overlay-cta::after {
    transform: translateX(4px);
  }
  
  /* Card content area */
  .artifact-content {
    padding: 22px 24px 26px;
    border-top: 1px solid var(--line);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .artifact-category {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .artifact-title {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  .artifact-meta {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    margin-top: auto;
    padding-top: 8px;
  }
  
  /* "Add yours" / Drive link card — distinct treatment */
  .artifact-card.is-link {
    background: linear-gradient(135deg, rgba(40, 28, 15, 0.45) 0%, rgba(20, 17, 13, 0.6) 100%);
  }
  .artifact-card.is-link .artifact-thumb {
    background: transparent;
  }
  .artifact-card.is-link .artifact-placeholder {
    background: transparent;
  }
  .artifact-card.is-link .artifact-placeholder-icon {
    font-size: 64px;
    color: var(--gold-bright);
  }
  
  /* Showcase footer note */
  .showcase-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--line);
  }
  .showcase-cta-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  .showcase-cta-link {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: letter-spacing 0.4s, color 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .showcase-cta-link:hover {
    color: var(--gold-bright);
    letter-spacing: 2px;
  }
  .showcase-cta-link::after {
    content: '↗';
    font-size: 16px;
  }
  
  /* ========== LIGHTBOX ========== */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.96);
    backdrop-filter: blur(20px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .lightbox.is-open {
    display: flex;
    opacity: 1;
  }
  .lightbox-stage {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .lightbox-media {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    border: 1px solid var(--gold);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 169, 97, 0.1);
  }
  .lightbox-media[data-type="document"] {
    width: 100%;
    height: 80vh;
    background: var(--bg-2);
  }
  .lightbox-info {
    text-align: center;
  }
  .lightbox-info-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  .lightbox-info-meta {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s, color 0.4s, transform 0.4s;
    font-family: 'Jost', sans-serif;
    font-weight: 200;
  }
  .lightbox-close:hover {
    background: var(--gold);
    color: var(--bg);
    transform: rotate(90deg);
  }
  .lightbox-download {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 12px 28px;
    transition: background 0.4s, color 0.4s;
    display: inline-block;
  }
  .lightbox-download:hover {
    background: var(--gold);
    color: var(--bg);
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .artifact-card.is-featured { grid-column: span 2; }
  }
  @media (max-width: 640px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 18px; }
    .artifact-card.is-featured { grid-column: span 1; }
    .showcase-filters { gap: 8px; }
    .filter-pill { padding: 8px 14px; font-size: 11px; }
    .lightbox { padding: 30px 16px; }
    .lightbox-close { top: 16px; right: 16px; width: 42px; height: 42px; }
  }
  
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes expandLine { from { width: 0; } to { width: 40px; } }
  @keyframes revealText { from { transform: translateY(110%); } to { transform: translateY(0); } }
  @keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(400%); } }
  
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ========== STRONGER SCROLL EFFECTS ========== */
  
  /* Section eyebrow slides in from left dramatically */
  .section-eyebrow.reveal {
    transform: translateX(-100px);
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .section-eyebrow.reveal.in-view {
    transform: translateX(0);
  }
  
  /* About text - large headline with character-by-character reveal */
  .about-text.reveal {
    transform: translateY(60px);
    transition: opacity 1.4s, transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  /* Stats section - new */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 80px 0 0;
    padding: 50px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stat-block {
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .stat-block.in-view { opacity: 1; transform: translateY(0); }
  .stat-block:nth-child(2) { transition-delay: 0.1s; }
  .stat-block:nth-child(3) { transition-delay: 0.2s; }
  .stat-block:nth-child(4) { transition-delay: 0.3s; }
  
  .stat-number {
    font-family: 'Jost', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }
  .stat-label {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  /* Scroll progress glow */
  .progress-fill {
    position: absolute;
    top: 0; left: -1px;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-bright));
    transition: height 0.2s ease-out;
    box-shadow: 0 0 16px var(--gold), 0 0 32px rgba(201, 169, 97, 0.4);
  }
  
  /* Section reveal stagger - paragraphs after eyebrow */
  .stagger-child {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .stagger-child.in-view { opacity: 1; transform: translateY(0); }
  .stagger-child[data-delay="1"].in-view { transition-delay: 0.2s; }
  .stagger-child[data-delay="2"].in-view { transition-delay: 0.4s; }
  .stagger-child[data-delay="3"].in-view { transition-delay: 0.6s; }
  
  /* Parallax content */
  .parallax-slow { will-change: transform; }
  
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { white-space: normal; font-size: clamp(40px, 11vw, 72px); }
    section.content-section { padding: 120px 24px; }
    .mvv-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; gap: 30px; }
    .recognition-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .recognition-right { text-align: center; }
    .recognition-right .rec-paragraph { margin-left: auto; margin-right: auto; }
    .recognition-right .rec-quote { border-right: none; border-left: 1px solid var(--gold); padding-right: 0; padding-left: 16px; text-align: left; }
    .recognition-text .rec-paragraph { margin-left: auto; margin-right: auto; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card-featured { flex-direction: column; }
    .work-card-featured .work-card-image,
    .work-card-featured .work-card-content { width: 100%; }
    .work-card-featured .work-card-content { padding: 30px; }
    .resume-preview-grid { grid-template-columns: 1fr; gap: 40px; }
    .resume-preview-card { max-width: 320px; margin: 0 auto; }
    .resume-actions { flex-direction: column; align-items: stretch; }
    .resume-download-btn, .resume-contact-btn { justify-content: space-between; }
    .resume-contact-line { font-size: 11px; }
    .site-footer { padding: 30px 24px; }
    .footer-content { flex-direction: column; align-items: flex-start; }
    .footer-right { text-align: left; }
    .scroll-indicator, .progress-indicator, .horizon-line { display: none; }
  }
