/* ========================================
   VARIABLES Y RESET
   ======================================== */
   *, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
  }
  
  :root {
    --cream: #f0ebe3; 
    --ink: #1a1a18; 
    --accent: #c8a96e;
    --accent-dim: rgba(200,169,110,0.15); 
    --red: #d44;
    --gray: #8a8a85; 
    --light-line: rgba(26,26,24,0.08);
  }
  
  html { 
    scroll-behavior: smooth; 
  }
  
  body { 
    background: var(--cream); 
    color: var(--ink); 
    font-family: 'Cormorant Garamond', Georgia, serif; 
    overflow-x: hidden; 
    cursor: none; 
  }
  
  /* ========================================
   CURSOR PERSONALIZADO
   ======================================== */
.cursor, .cursor-dot { 
    position: fixed; 
    top: 0; 
    left: 0; 
    pointer-events: none; 
    z-index: 10000; 
    transform: translate(-50%, -50%); 
  }
  
  .cursor { 
    width: 40px; 
    height: 40px; 
    border: 1.5px solid var(--ink); 
    border-radius: 50%; 
    transition: width .3s cubic-bezier(.68,-.55,.265,1.55), 
                height .3s cubic-bezier(.68,-.55,.265,1.55), 
                background .3s, 
                border-color .3s; 
    mix-blend-mode: difference; 
  }
  
  .cursor-dot { 
    width: 5px; 
    height: 5px; 
    background: var(--ink); 
    border-radius: 50%; 
  }
  
  .cursor-grow .cursor { 
    width: 80px; 
    height: 80px; 
    background: var(--accent-dim); 
    border-color: var(--accent); 
  }
  
  
  /* Desactivar cursor personalizado en tablets y móviles */
  @media(max-width: 1024px) {
    .cursor, .cursor-dot {
      display: none !important;
    }
    
    body {
      cursor: auto !important;
    }
    
    /* Restaurar cursores normales en elementos interactivos */
    a, button, input, textarea, select, 
    .project-card, .stack-item, .interest-card, 
    .project-feature, .faq-btn {
      cursor: pointer !important;
    }
  }
  
  /* ========================================
     NOISE TEXTURE
     ======================================== */
  .noise { 
    position: fixed; 
    inset: 0; 
    z-index: 9999; 
    pointer-events: none; 
    opacity: .035; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); 
  }
  
  /* ========================================
     BARRA DE PROGRESO
     ======================================== */
  .progress-bar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    height: 2px; 
    background: var(--accent); 
    z-index: 100; 
    width: 0%; 
    transition: width .1s linear; 
  }
  
  /* ========================================
     NAVEGACIÓN
     ======================================== */
  nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 50; 
    padding: 28px 48px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    mix-blend-mode: difference; 
  }
  
  .nav-logo { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: 1.1rem; 
    color: #fff; 
    letter-spacing: .05em; 
    text-decoration: none; 
  }
  
  .nav-links { 
    display: flex; 
    gap: 36px; 
  }
  
  .nav-links a { 
    font-family: 'Space Mono', monospace; 
    font-size: .7rem; 
    color: #fff; 
    text-decoration: none; 
    letter-spacing: .15em; 
    text-transform: uppercase; 
    position: relative; 
    padding-bottom: 4px; 
  }
  
  .nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 1px; 
    background: var(--accent); 
    transition: width .4s cubic-bezier(.68,-.55,.265,1.55); 
  }
  
  .nav-links a:hover::after, 
  .nav-links a.active::after { 
    width: 100%; 
  }
  
  /* ========================================
     HERO SECTION
     ======================================== */
  .hero { 
    min-height: 100vh; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr auto; 
    position: relative; 
  }
  
  .hero-bg { 
    position: absolute; 
    inset: 0; 
    background: var(--ink); 
  }
  
  .hero-bg::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: radial-gradient(ellipse 60% 50% at 70% 40%, #2a2420 0%, transparent 70%), 
                radial-gradient(ellipse 40% 60% at 20% 70%, #1f2a1f 0%, transparent 60%); 
  }
  
  .orb { 
    position: absolute; 
    border-radius: 50%; 
    filter: blur(60px); 
    opacity: .25; 
    animation: drift 12s ease-in-out infinite alternate; 
  }
  
  .orb-1 { 
    width: 300px; 
    height: 300px; 
    background: #c8a96e; 
    top: 10%; 
    right: 15%; 
  }
  
  .orb-2 { 
    width: 200px; 
    height: 200px; 
    background: #d44; 
    top: 55%; 
    left: 10%; 
    animation-delay: -4s; 
    opacity: .15; 
  }
  
  .orb-3 { 
    width: 250px; 
    height: 250px; 
    background: #6e8a9e; 
    bottom: 10%; 
    right: 40%; 
    animation-delay: -8s; 
    opacity: .18; 
  }
  
  @keyframes drift { 
    to { 
      transform: translate(40px, -30px) scale(1.15); 
    } 
  }
  
  .hero-content { 
    grid-column: 1; 
    grid-row: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 0 48px 80px; 
    position: relative; 
    z-index: 2; 
  }
  
  .hero-eyebrow { 
    font-family: 'Space Mono', monospace; 
    font-size: .65rem; 
    color: var(--accent); 
    letter-spacing: .25em; 
    text-transform: uppercase; 
    margin-bottom: 24px; 
    opacity: 0; 
    animation: fadeUp .8s .3s forwards; 
  }
  
  .hero-title { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: clamp(3.2rem, 7.5vw, 7rem); 
    line-height: .95; 
    color: #fff; 
    opacity: 0; 
    animation: fadeUp .8s .5s forwards; 
  }
  
  .hero-title em { 
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
    font-weight: 300; 
    color: var(--accent); 
  }
  
  .hero-desc { 
    margin-top: 32px; 
    font-size: 1.15rem; 
    font-weight: 300; 
    color: rgba(255,255,255,.55); 
    max-width: 380px; 
    line-height: 1.7; 
    opacity: 0; 
    animation: fadeUp .8s .7s forwards; 
  }
  
  .hero-side { 
    grid-column: 2; 
    grid-row: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    z-index: 2; 
  }
  
  .hero-avatar-wrap { 
    width: 260px; 
    height: 260px; 
    position: relative; 
    opacity: 0; 
    animation: fadeUp .9s .6s forwards; 
  }
  
  .hero-avatar-ring { 
    position: absolute; 
    inset: -12px; 
    border: 1px solid rgba(200,169,110,.3); 
    border-radius: 50%; 
    animation: spinSlow 30s linear infinite; 
  }
  
  .hero-avatar-ring::after { 
    content: ''; 
    position: absolute; 
    top: -3px; 
    left: 50%; 
    width: 6px; 
    height: 6px; 
    background: var(--accent); 
    border-radius: 50%; 
    transform: translateX(-50%); 
  }
  
  @keyframes spinSlow { 
    to { 
      transform: rotate(360deg); 
    } 
  }
  
  .hero-avatar { 
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #2c2825 30%, #3a3530 100%); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
  }
  
  .avatar-initials { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: 4.2rem; 
    color: var(--accent); 
    opacity: .8; 
  }
  
  .hero-bottom { 
    grid-column: 1/-1; 
    grid-row: 2; 
    display: flex; 
    align-items: flex-end; 
    justify-content: space-between; 
    padding: 0 48px 36px; 
    position: relative; 
    z-index: 2; 
  }
  
  .hero-scroll-hint { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    color: rgba(255,255,255,.35); 
    letter-spacing: .2em; 
    text-transform: uppercase; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
  }
  
  .scroll-line { 
    width: 1px; 
    height: 40px; 
    background: var(--accent); 
    animation: scrollPulse 2s ease-in-out infinite; 
  }
  
  @keyframes scrollPulse { 
    0%, 100% { 
      height: 40px; 
      opacity: 1; 
    } 
    50% { 
      height: 16px; 
      opacity: .3; 
    } 
  }
  
  .hero-year { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: 1rem; 
    color: rgba(255,255,255,.2); 
    letter-spacing: .1em; 
  }
  
  @keyframes fadeUp { 
    from { 
      opacity: 0; 
      transform: translateY(30px); 
    } 
    to { 
      opacity: 1; 
      transform: translateY(0); 
    } 
  }
  
  /* ========================================
     DIVIDER
     ======================================== */
  .divider { 
    width: 100%; 
    height: 1px; 
    background: var(--light-line); 
  }
  
  /* ========================================
     ABOUT SECTION
     ======================================== */
  .about { 
    display: grid; 
    grid-template-columns: 280px 1fr 1fr; 
    gap: 0; 
    padding: 120px 48px; 
  }
  
  .about-label { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    letter-spacing: .2em; 
    text-transform: uppercase; 
    color: var(--gray); 
    padding-top: 8px; 
  }
  
  .about-text { 
    font-size: clamp(1.5rem, 2.6vw, 2.2rem); 
    font-weight: 300; 
    line-height: 1.55; 
    color: var(--ink); 
    border-left: 1px solid var(--light-line); 
    padding-left: 48px; 
  }
  
  .about-text .highlight { 
    color: var(--accent); 
    font-style: italic; 
  }
  
  .about-stats { 
    border-left: 1px solid var(--light-line); 
    padding-left: 48px; 
    display: flex; 
    flex-direction: column; 
    gap: 36px; 
  }
  
  .stat-item .stat-num { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: 2.8rem; 
    color: var(--ink); 
    line-height: 1; 
  }
  
  .stat-item .stat-label { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    color: var(--gray); 
    letter-spacing: .15em; 
    text-transform: uppercase; 
    margin-top: 6px; 
  }
  
  /* ========================================
     SKILLS MARQUEE
     ======================================== */
  .skills-strip { 
    background: var(--ink); 
    padding: 28px 0; 
    overflow: hidden; 
    white-space: nowrap; 
  }
  
  .marquee-track { 
    display: inline-flex; 
    animation: marquee 25s linear infinite; 
  }
  
  .marquee-track span { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: clamp(1.5rem, 3vw, 2.6rem); 
    color: transparent; 
    -webkit-text-stroke: 1px rgba(200,169,110,.4); 
    padding: 0 48px; 
    text-transform: uppercase; 
    letter-spacing: .04em; 
    transition: -webkit-text-stroke .3s, color .3s; 
  }
  
  .marquee-track span:hover { 
    color: var(--accent); 
    -webkit-text-stroke: 1px var(--accent); 
  }
  
  @keyframes marquee { 
    to { 
      transform: translateX(-50%); 
    } 
  }
  
  /* ========================================
     PROJECTS SECTION
     ======================================== */
  .projects { 
    padding: 120px 48px 80px; 
  }
  
  .section-header { 
    display: flex; 
    align-items: flex-end; 
    justify-content: space-between; 
    margin-bottom: 80px; 
  }
  
  .section-header h2 { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: clamp(2.8rem, 6vw, 5rem); 
    line-height: .95; 
    color: var(--ink); 
  }
  
  .section-header h2 em { 
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
    font-weight: 300; 
    color: var(--accent); 
  }
  
  .section-count { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    color: var(--gray); 
    letter-spacing: .15em; 
    text-transform: uppercase; 
  }
  
  .project-grid { 
    display: grid; 
    grid-template-columns: 1.2fr .8fr; 
    gap: 24px; 
  }
  
  .project-card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 4px; 
    background: #e8e2d8; 
    text-decoration: none; 
    display: block; 
    transition: transform .5s cubic-bezier(.68,-.55,.265,1.55); 
  }
  
  .project-card:hover { 
    transform: translateY(-6px); 
  }
  
  .card-visual { 
    width: 100%; 
    aspect-ratio: 16/9; 
    position: relative; 
    overflow: hidden; 
  }
  
  .project-card:nth-child(1) .card-visual { 
    aspect-ratio: 16/10; 
  }
  
  .project-card:nth-child(2) .card-visual { 
    aspect-ratio: 4/3; 
  }
  
  .project-card:nth-child(3) { 
    grid-column: span 2; 
  }
  
  .project-card:nth-child(3) .card-visual { 
    aspect-ratio: 21/8; 
  }
  
  .card-bg { 
    width: 100%; 
    height: 100%; 
    transition: transform .6s cubic-bezier(.25,.46,.45,.94); 
  }
  
  .project-card:hover .card-bg { 
    transform: scale(1.06); 
  }
  
  .proj-1 .card-bg { 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); 
  }
  
  .proj-2 .card-bg { 
    background: linear-gradient(135deg, #2d1b2e 0%, #4a2040 60%, #1a1a2e 100%); 
  }
  
  .proj-3 .card-bg { 
    background: linear-gradient(135deg, #1b2838 0%, #2c3e50 50%, #1a2a3a 100%); 
  }
  
  .card-shape { 
    position: absolute; 
    border-radius: 50%; 
    filter: blur(40px); 
    opacity: .3; 
  }
  
  .proj-1 .s1 { 
    width: 180px; 
    height: 180px; 
    background: #c8a96e; 
    top: 20%; 
    right: 15%; 
  }
  
  .proj-1 .s2 { 
    width: 120px; 
    height: 120px; 
    background: #6e9ec8; 
    bottom: 10%; 
    left: 20%; 
  }
  
  .proj-2 .s1 { 
    width: 150px; 
    height: 150px; 
    background: #c86e8a; 
    top: 30%; 
    left: 40%; 
  }
  
  .proj-2 .s2 { 
    width: 100px; 
    height: 100px; 
    background: #c8a96e; 
    bottom: 15%; 
    right: 20%; 
  }
  
  .proj-3 .s1 { 
    width: 200px; 
    height: 200px; 
    background: #6ec8a9; 
    top: 10%; 
    left: 60%; 
  }
  
  .proj-3 .s2 { 
    width: 140px; 
    height: 140px; 
    background: #c8a96e; 
    bottom: 20%; 
    left: 30%; 
  }
  
  .card-info { 
    padding: 28px 32px; 
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between; 
  }
  
  .card-tag { 
    font-family: 'Space Mono', monospace; 
    font-size: .58rem; 
    color: var(--gray); 
    letter-spacing: .18em; 
    text-transform: uppercase; 
    margin-bottom: 8px; 
  }
  
  .card-title { 
    font-family: 'Syne', sans-serif; 
    font-weight: 700; 
    font-size: 1.25rem; 
    color: var(--ink); 
  }
  
  .card-arrow { 
    width: 36px; 
    height: 36px; 
    border: 1px solid var(--light-line); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: background .3s, border-color .3s, transform .4s cubic-bezier(.68,-.55,.265,1.55); 
    flex-shrink: 0; 
  }
  
  .project-card:hover .card-arrow { 
    background: var(--accent); 
    border-color: var(--accent); 
    transform: rotate(45deg); 
  }
  
  .card-arrow svg { 
    width: 14px; 
    height: 14px; 
    stroke: var(--ink); 
    transition: stroke .3s; 
  }
  
  .project-card:hover .card-arrow svg { 
    stroke: #fff; 
  }
  
  /* ========================================
     TECH STACK SECTION
     ======================================== */
  .stack-section { 
    padding: 100px 48px; 
    display: grid; 
    grid-template-columns: 280px 1fr; 
  }
  
  .stack-label { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    letter-spacing: .2em; 
    text-transform: uppercase; 
    color: var(--gray); 
  }
  
  .stack-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2px; 
  }
  
  .stack-item { 
    background: rgba(26,26,24,.04); 
    padding: 32px 24px; 
    position: relative; 
    transition: background .3s; 
    overflow: hidden; 
  }
  
  .stack-item:hover { 
    background: var(--accent-dim); 
  }
  
  .stack-item .stack-icon { 
    font-size: 1.6rem; 
    margin-bottom: 14px; 
    display: block; 
  }
  
  .stack-item .stack-name { 
    font-family: 'Syne', sans-serif; 
    font-weight: 700; 
    font-size: .95rem; 
    color: var(--ink); 
  }
  
  .stack-item .stack-exp { 
    font-family: 'Space Mono', monospace; 
    font-size: .55rem; 
    color: var(--gray); 
    letter-spacing: .12em; 
    text-transform: uppercase; 
    margin-top: 4px; 
  }
  
  .stack-item::after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--accent); 
    transition: width .4s cubic-bezier(.68,-.55,.265,1.55); 
  }
  
  .stack-item:hover::after { 
    width: 100%; 
  }
  
  /* ========================================
     CONTACT SECTION
     ======================================== */
  .contact { 
    background: var(--ink); 
    padding: 140px 48px; 
    position: relative; 
    overflow: hidden; 
  }
  
  .contact-orb { 
    position: absolute; 
    border-radius: 50%; 
    filter: blur(80px); 
  }
  
  .contact-orb-1 { 
    width: 400px; 
    height: 400px; 
    background: #c8a96e; 
    opacity: .12; 
    top: -100px; 
    right: -80px; 
  }
  
  .contact-orb-2 { 
    width: 300px; 
    height: 300px; 
    background: #d44; 
    opacity: .08; 
    bottom: -60px; 
    left: -60px; 
  }
  
  .contact-inner { 
    position: relative; 
    z-index: 2; 
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center; 
  }
  
  .contact-eyebrow { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    color: var(--accent); 
    letter-spacing: .25em; 
    text-transform: uppercase; 
    margin-bottom: 28px; 
  }
  
  .contact-title { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: clamp(2.5rem, 5.5vw, 4.5rem); 
    color: #fff; 
    line-height: 1.05; 
    margin-bottom: 24px; 
  }
  
  .contact-title em { 
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
    font-weight: 300; 
    color: var(--accent); 
  }
  
  .contact-sub { 
    font-size: 1.1rem; 
    font-weight: 300; 
    color: rgba(255,255,255,.45); 
    max-width: 420px; 
    margin: 0 auto 56px; 
    line-height: 1.7; 
  }
  
  .btn-contact { 
    display: inline-flex; 
    align-items: center; 
    gap: 14px; 
    font-family: 'Space Mono', monospace; 
    font-size: .7rem; 
    letter-spacing: .2em; 
    text-transform: uppercase; 
    color: var(--ink); 
    background: var(--accent); 
    padding: 18px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    transition: transform .4s cubic-bezier(.68,-.55,.265,1.55), box-shadow .4s; 
    position: relative; 
    overflow: hidden; 
  }
  
  .btn-contact::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); 
    transform: translateX(-100%); 
    transition: transform .6s; 
  }
  
  .btn-contact:hover::before { 
    transform: translateX(100%); 
  }
  
  .btn-contact:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 40px rgba(200,169,110,.3); 
  }
  
  .btn-arrow { 
    width: 16px; 
    height: 16px; 
    transition: transform .3s; 
  }
  
  .btn-contact:hover .btn-arrow { 
    transform: translateX(4px); 
  }
  
  .contact-socials { 
    display: flex; 
    justify-content: center; 
    gap: 32px; 
    margin-top: 64px; 
  }
  
  .social-link { 
    font-family: 'Space Mono', monospace; 
    font-size: .6rem; 
    color: rgba(255,255,255,.3); 
    letter-spacing: .15em; 
    text-transform: uppercase; 
    text-decoration: none; 
    padding-bottom: 4px; 
    border-bottom: 1px solid transparent; 
    transition: color .3s, border-color .3s; 
  }
  
  .social-link:hover { 
    color: var(--accent); 
    border-color: var(--accent); 
  }
  
  /* ========================================
     FOOTER
     ======================================== */
  footer { 
    background: var(--ink); 
    border-top: 1px solid rgba(255,255,255,.06); 
    padding: 32px 48px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
  }
  
  .foot-left { 
    font-family: 'Space Mono', monospace; 
    font-size: .58rem; 
    color: rgba(255,255,255,.25); 
    letter-spacing: .12em; 
  }
  
  .foot-right { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: .95rem; 
    font-style: italic; 
    color: rgba(255,255,255,.2); 
  }
  
  /* ========================================
     REVEAL ANIMATION
     ======================================== */
  .reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity .8s cubic-bezier(.25,.46,.45,.94), 
                transform .8s cubic-bezier(.25,.46,.45,.94); 
  }
  
  .reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
  }
  
  /* ========================================
     RESPONSIVE DESIGN
     ======================================== */
  @media(max-width: 900px) {
    .hero { 
      grid-template-columns: 1fr; 
    }
    
    .hero-side { 
      display: none; 
    }
    
    .about { 
      grid-template-columns: 1fr; 
      gap: 40px; 
    }
    
    .about-text, .about-stats { 
      border-left: none; 
      padding-left: 0; 
    }
    
    .project-grid { 
      grid-template-columns: 1fr; 
    }
    
    .project-card:nth-child(3) { 
      grid-column: span 1; 
    }
    
    .stack-section { 
      grid-template-columns: 1fr; 
      gap: 32px; 
    }
    
    .stack-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
    
    nav { 
      padding: 24px 28px; 
    }
    
    .nav-links { 
      gap: 20px; 
    }
  }
  
  @media(max-width: 600px) {
    .hero-title { 
      font-size: 2.8rem; 
    }
    
    .stack-grid { 
      grid-template-columns: 1fr 1fr; 
    }
    
    .projects, .about, .stack-section { 
      padding-left: 28px; 
      padding-right: 28px; 
    }
  }
  /* ========================================
   PAGE HERO (About, Work, Contact)
   ======================================== */
.page-hero {
    min-height: 50vh;
    background: var(--ink);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 48px 80px;
    overflow: hidden;
  }
  
  .page-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
  }
  
  .page-hero .o1 {
    width: 320px;
    height: 320px;
    background: #c8a96e;
    opacity: .15;
    top: -60px;
    right: 10%;
  }
  
  .page-hero .o2 {
    width: 200px;
    height: 200px;
    background: #6e8a9e;
    opacity: .12;
    bottom: 20%;
    left: 15%;
  }
  
  .page-hero .o3 {
    width: 160px;
    height: 160px;
    background: #d44;
    opacity: .1;
    top: 40%;
    right: 40%;
  }
  
  .page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  .page-hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--accent);
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .7s .2s forwards;
  }
  
  .page-hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .92;
    color: #fff;
    opacity: 0;
    animation: fadeUp .8s .35s forwards;
  }
  
  .page-hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  /* ========================================
     BIO SECTION
     ======================================== */
  .bio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 120px 48px 100px;
    align-items: start;
  }
  
  .bio-left .bio-label {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 32px;
  }
  
  .bio-left .bio-text {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
  }
  
  .bio-left .bio-text p {
    margin-bottom: 24px;
  }
  
  .bio-left .bio-text .hl {
    color: var(--accent);
    font-style: italic;
  }
  
  .bio-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 48px;
  }
  
  .bio-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-line);
  }
  
  .bio-detail-row:last-child {
    border-bottom: none;
  }
  
  .bio-detail-label {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  
  .bio-detail-val {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
  }
  
  /* ========================================
     TIMELINE SECTION
     ======================================== */
  .timeline-section {
    padding: 0 48px 120px;
  }
  
  .timeline-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  
  .timeline-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: .95;
    color: var(--ink);
  }
  
  .timeline-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .timeline {
    display: grid;
    grid-template-columns: 280px 2px 1fr;
    gap: 0;
  }
  
  .timeline-year {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--ink);
    text-align: right;
    padding-right: 40px;
    padding-bottom: 56px;
    opacity: .18;
  }
  
  .timeline-line {
    background: var(--light-line);
    position: relative;
  }
  
  .timeline-line .dot {
    position: absolute;
    left: 50%;
    top: 12px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--accent);
  }
  
  .timeline-content {
    padding-left: 40px;
    padding-bottom: 56px;
  }
  
  .timeline-content .t-role {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 6px;
  }
  
  .timeline-content .t-company {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--accent);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .timeline-content .t-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
    max-width: 520px;
  }
  
  /* ========================================
     PHILOSOPHY SECTION
     ======================================== */
  .philosophy {
    background: var(--ink);
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
  }
  
  .phil-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
  }
  
  .phil-orb-1 {
    width: 350px;
    height: 350px;
    background: #c8a96e;
    opacity: .1;
    top: -80px;
    left: -60px;
  }
  
  .phil-orb-2 {
    width: 280px;
    height: 280px;
    background: #6e8a9e;
    opacity: .08;
    bottom: -40px;
    right: -40px;
  }
  
  .phil-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
  }
  
  .phil-label {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
  }
  
  .phil-content {
    border-left: 1px solid rgba(255,255,255,.08);
    padding-left: 48px;
  }
  
  .phil-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 48px;
  }
  
  .phil-quote .hl {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
  }
  
  .phil-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .pillar .pillar-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--accent);
    opacity: .4;
    line-height: 1;
    margin-bottom: 12px;
  }
  
  .pillar .pillar-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 8px;
  }
  
  .pillar .pillar-desc {
    font-size: .95rem;
    font-weight: 300;
    color: rgba(255,255,255,.4);
    line-height: 1.6;
  }
  
  /* ========================================
     INTERESTS SECTION
     ======================================== */
  .interests-section {
    padding: 100px 48px;
  }
  
  .interests-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }
  
  .interests-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: .95;
    color: var(--ink);
  }
  
  .interests-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .interests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .interest-card {
    background: rgba(26,26,24,.04);
    border-radius: 4px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background .4s;
  }
  
  .interest-card:hover {
    background: var(--accent-dim);
  }
  
  .interest-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .06;
    transition: transform .5s cubic-bezier(.68,-.55,.265,1.55);
  }
  
  .interest-card:hover::before {
    transform: scale(1.6);
  }
  
  .interest-icon {
    font-size: 1.8rem;
    margin-bottom: 18px;
    display: block;
  }
  
  .interest-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 6px;
  }
  
  .interest-desc {
    font-size: .92rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.5;
  }
  
  /* ========================================
     CTA BAND
     ======================================== */
  .cta-band {
    background: var(--ink);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-band .cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
  }
  
  .cta-band .co1 {
    width: 300px;
    height: 300px;
    background: #c8a96e;
    opacity: .1;
    top: -80px;
    right: 20%;
  }
  
  .cta-band .co2 {
    width: 200px;
    height: 200px;
    background: #d44;
    opacity: .08;
    bottom: -50px;
    left: 30%;
  }
  
  .cta-inner {
    position: relative;
    z-index: 2;
  }
  
  .cta-inner p.cta-eye {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--accent);
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  
  .cta-inner h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 40px;
  }
  
  .cta-inner h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  /* ========================================
     RESPONSIVE - ABOUT PAGE
     ======================================== */
  @media(max-width: 900px) {
    .bio {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    
    .timeline {
      grid-template-columns: 80px 2px 1fr;
    }
    
    .timeline-year {
      font-size: 1.1rem;
      padding-right: 20px;
    }
    
    .phil-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .phil-content {
      border-left: none;
      padding-left: 0;
    }
    
    .phil-pillars {
      grid-template-columns: 1fr;
    }
    
    .interests-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media(max-width: 600px) {
    .page-hero {
      padding: 0 28px 60px;
      min-height: 40vh;
    }
    
    .bio, .timeline-section, .interests-section {
      padding-left: 28px;
      padding-right: 28px;
    }
    
    .interests-grid {
      grid-template-columns: 1fr;
    }
    
    .timeline {
      grid-template-columns: 60px 2px 1fr;
    }
  }
  /* ========================================
   CONTACT PAGE - FULL SPLIT LAYOUT
   ======================================== */
.contact-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
  }
  
  /* ========================================
     LEFT PANEL - DARK INFO SECTION
     ======================================== */
  .contact-left {
    background: var(--ink);
    padding: 140px 56px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .cl-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
  }
  
  .cl-orb-1 {
    width: 350px;
    height: 350px;
    background: #c8a96e;
    opacity: .1;
    top: -100px;
    left: -80px;
  }
  
  .cl-orb-2 {
    width: 240px;
    height: 240px;
    background: #6e9ec8;
    opacity: .08;
    bottom: -60px;
    right: -40px;
  }
  
  .cl-orb-3 {
    width: 180px;
    height: 180px;
    background: #d44;
    opacity: .06;
    top: 50%;
    left: 60%;
  }
  
  .cl-content {
    position: relative;
    z-index: 2;
  }
  
  .cl-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--accent);
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .7s .2s forwards;
  }
  
  .cl-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: .92;
    color: #fff;
    opacity: 0;
    animation: fadeUp .8s .35s forwards;
  }
  
  .cl-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .cl-desc {
    margin-top: 28px;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 380px;
    opacity: 0;
    animation: fadeUp .8s .5s forwards;
  }
  
  /* Contact Info List */
  .cl-info {
    margin-top: 64px;
    opacity: 0;
    animation: fadeUp .8s .65s forwards;
  }
  
  .cl-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  
  .cl-info-item:last-child {
    border-bottom: none;
  }
  
  .cl-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    color: var(--accent);
  }
  
  .cl-info-text .cl-info-label {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: rgba(255,255,255,.3);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  
  .cl-info-text .cl-info-val {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
  }
  
  /* Social Links Bottom */
  .cl-bottom {
    position: relative;
    z-index: 2;
  }
  
  .cl-socials {
    display: flex;
    gap: 24px;
  }
  
  .cl-social {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    color: rgba(255,255,255,.3);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: color .3s, border-color .3s;
  }
  
  .cl-social:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
  
  /* ========================================
     RIGHT PANEL - FORM SECTION
     ======================================== */
  .contact-right {
    background: var(--cream);
    padding: 140px 56px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  
  .cr-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--gray);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 48px;
  }
  
  /* Form Fields */
  .form-field {
    margin-bottom: 36px;
    position: relative;
  }
  
  .form-field label {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
    letter-spacing: .16em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    transition: color .3s;
  }
  
  .form-field:focus-within label {
    color: var(--accent);
  }
  
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--light-line);
    padding: 14px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    transition: border-color .3s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
  }
  
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-bottom-color: var(--accent);
  }
  
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(26,26,24,.25);
  }
  
  .form-field textarea {
    resize: none;
    min-height: 120px;
    line-height: 1.6;
  }
  
  /* Animated Underline */
  .field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.68,-.55,.265,1.55);
  }
  
  .form-field:focus-within .field-line {
    width: 100%;
  }
  
  /* Select Custom Styling */
  .form-field select {
    cursor: pointer;
    color: rgba(26,26,24,.5);
  }
  
  .form-field select option {
    color: var(--ink);
  }
  
  .form-field select:valid {
    color: var(--ink);
  }
  
  /* Form Row (two columns) */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  /* Submit Button */
  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Space Mono', monospace;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--accent);
    padding: 18px 44px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.68,-.55,.265,1.55), box-shadow .4s;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
  }
  
  .btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transform: translateX(-100%);
    transition: transform .6s;
  }
  
  .btn-submit:hover::before {
    transform: translateX(100%);
  }
  
  .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,169,110,.3);
  }
  
  .btn-submit .btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform .3s;
  }
  
  .btn-submit:hover .btn-arrow {
    transform: translateX(4px);
  }
  
  /* Form Success State */
  .form-success {
    display: none;
    text-align: center;
    padding: 60px 0;
  }
  
  .form-success.show {
    display: block;
  }
  
  .form-success .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.6rem;
    color: var(--accent);
  }
  
  .form-success h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 12px;
  }
  
  .form-success p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
  }
  
  /* ========================================
     FAQ SECTION
     ======================================== */
  .faq-section {
    grid-column: 1/-1;
    background: var(--cream);
    padding: 100px 48px;
  }
  
  .faq-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .faq-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    line-height: .95;
  }
  
  .faq-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  /* FAQ Accordion */
  .faq-item {
    border-bottom: 1px solid var(--light-line);
  }
  
  .faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
  }
  
  .faq-btn-text {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink);
    transition: color .3s;
  }
  
  .faq-btn:hover .faq-btn-text {
    color: var(--accent);
  }
  
  .faq-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--light-line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s cubic-bezier(.68,-.55,.265,1.55), background .3s, border-color .3s;
    flex-shrink: 0;
  }
  
  .faq-item.open .faq-btn-icon {
    transform: rotate(45deg);
    background: var(--accent);
    border-color: var(--accent);
  }
  
  .faq-btn-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--ink);
    transition: stroke .3s;
  }
  
  .faq-item.open .faq-btn-icon svg {
    stroke: #fff;
  }
  
  .faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.25,.46,.45,.94), padding .4s;
  }
  
  .faq-item.open .faq-panel {
    max-height: 200px;
    padding-bottom: 24px;
  }
  
  .faq-panel p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.75;
  }
  
  /* ========================================
     RESPONSIVE - CONTACT PAGE
     ======================================== */
  @media(max-width: 900px) {
    .contact-page {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
    }
    
    .contact-left {
      padding: 140px 36px 72px;
      min-height: auto;
    }
    
    .contact-right {
      padding: 72px 36px;
      min-height: auto;
    }
    
    .faq-section {
      padding: 80px 36px;
    }
  }
  
  @media(max-width: 600px) {
    .contact-left {
      padding: 120px 28px 60px;
    }
    
    .contact-right {
      padding: 56px 28px;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .faq-section {
      padding: 60px 28px;
    }
  }
  /* ========================================
   PROJECT PAGES - HERO SECTION
   ======================================== */
.proj-hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  
  /* Gradient backgrounds for different projects */
  .proj-hero.analytiq {
    background: linear-gradient(145deg, #2d1b2e 0%, #4a2040 55%, #1a1a2e 100%);
  }
  
  .proj-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
  }
  
  .proj-hero .o1 {
    width: 300px;
    height: 300px;
    background: #c86e8a;
    opacity: .18;
    top: -40px;
    left: 10%;
  }
  
  .proj-hero .o2 {
    width: 220px;
    height: 220px;
    background: #c8a96e;
    opacity: .15;
    bottom: 20%;
    right: 15%;
  }
  
  .proj-hero .o3 {
    width: 160px;
    height: 160px;
    background: #6e9ec8;
    opacity: .1;
    top: 60%;
    left: 40%;
  }
  
  .proj-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 100px;
    position: relative;
    z-index: 2;
  }
  
  .proj-back {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
    transition: color .3s;
  }
  
  .proj-back:hover {
    color: var(--accent);
  }
  
  .proj-back svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform .3s;
  }
  
  .proj-back:hover svg {
    transform: translateX(-3px);
  }
  
  .proj-hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--accent);
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .7s .3s forwards;
  }
  
  .proj-hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: .92;
    color: #fff;
    opacity: 0;
    animation: fadeUp .8s .45s forwards;
  }
  
  .proj-hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .proj-hero-desc {
    margin-top: 24px;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 420px;
    opacity: 0;
    animation: fadeUp .8s .6s forwards;
  }
  
  /* ========================================
     DASHBOARD MOCKUP (Right side)
     ======================================== */
  .proj-hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 100px 0;
  }
  
  .dashboard-mock {
    width: min(460px, 88%);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .dash-topbar {
    height: 40px;
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
  }
  
  .dash-topbar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
  }
  
  .dash-topbar .dot:first-child {
    background: var(--accent);
    opacity: .6;
  }
  
  .dash-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .dash-card {
    background: rgba(255,255,255,.04);
    border-radius: 8px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.05);
  }
  
  .dash-card.wide {
    grid-column: span 2;
  }
  
  .dash-card-label {
    font-family: 'Space Mono', monospace;
    font-size: .48rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .dash-card-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
  }
  
  .dash-card-num .acc {
    color: var(--accent);
  }
  
  /* Mini bar chart */
  .dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
    margin-top: 12px;
  }
  
  .dash-bar {
    width: 100%;
    border-radius: 2px 2px 0 0;
    background: rgba(200,169,110,.25);
    transition: background .3s;
  }
  
  .dash-bar:hover {
    background: var(--accent);
  }
  
  /* ========================================
     PROJECT META ROW
     ======================================== */
  .meta-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding: 0 48px;
  }
  
  .meta-item {
    background: rgba(26,26,24,.04);
    padding: 28px 24px;
  }
  
  .meta-label {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: var(--gray);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .meta-val {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
  }
  
  /* ========================================
     PROCESS STEPS SECTION
     ======================================== */
  .process-section {
    padding: 100px 48px;
  }
  
  .process-header {
    margin-bottom: 72px;
  }
  
  .process-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink);
    line-height: .95;
  }
  
  .process-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  
  .process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-line);
  }
  
  .step {
    position: relative;
    padding-top: 56px;
  }
  
  .step-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--light-line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 24px;
    z-index: 2;
    transition: border-color .3s, background .3s;
  }
  
  .step:hover .step-dot {
    border-color: var(--accent);
    background: var(--accent-dim);
  }
  
  .step-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: var(--accent);
  }
  
  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 10px;
  }
  
  .step-desc {
    font-size: .95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
    max-width: 240px;
  }
  
  /* ========================================
     FEATURES HORIZONTAL SCROLL
     ======================================== */
  .features-strip {
    overflow: hidden;
    padding: 0 48px 100px;
  }
  
  .features-header {
    margin-bottom: 48px;
  }
  
  .features-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    line-height: .95;
  }
  
  .features-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .features-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
  }
  
  .features-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .feature-card {
    min-width: 300px;
    background: rgba(26,26,24,.04);
    border-radius: 6px;
    padding: 36px 28px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: background .3s;
  }
  
  .feature-card:hover {
    background: var(--accent-dim);
  }
  
  .feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .5s cubic-bezier(.68,-.55,.265,1.55);
  }
  
  .feature-card:hover::after {
    width: 100%;
  }
  
  .feature-icon {
    font-size: 1.6rem;
    margin-bottom: 18px;
    display: block;
  }
  
  .feature-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 8px;
  }
  
  .feature-desc {
    font-size: .95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
  }
  
  /* ========================================
     TECH STACK ROW
     ======================================== */
  .tech-row {
    background: var(--ink);
    padding: 60px 48px;
  }
  
  .tech-row-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .tech-row-label {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: var(--accent);
    letter-spacing: .2em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  
  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tech-tag {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 3px;
    transition: border-color .3s, color .3s;
  }
  
  .tech-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  
  /* ========================================
     PROJECT NAVIGATION (Prev/Next)
     ======================================== */
  .proj-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--light-line);
  }
  
  .proj-nav-item {
    padding: 48px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background .3s;
    position: relative;
  }
  
  .proj-nav-item:first-child {
    border-right: 1px solid var(--light-line);
  }
  
  .proj-nav-item:hover {
    background: var(--accent-dim);
  }
  
  .proj-nav-dir {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: var(--gray);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .proj-nav-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    transition: color .3s;
  }
  
  .proj-nav-item:hover .proj-nav-name {
    color: var(--accent);
  }
  
  .proj-nav-arrow {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 1px solid var(--light-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s;
  }
  
  .proj-nav-item:first-child .proj-nav-arrow {
    right: auto;
    left: 28px;
    transform: translateY(-50%) rotate(180deg);
  }
  
  .proj-nav-item:hover .proj-nav-arrow {
    background: var(--accent);
    border-color: var(--accent);
  }
  
  .proj-nav-arrow svg {
    width: 12px;
    height: 12px;
    stroke: var(--ink);
    transition: stroke .3s;
  }
  
  .proj-nav-item:hover .proj-nav-arrow svg {
    stroke: #fff;
  }
  
  /* ========================================
     RESPONSIVE - PROJECT PAGES
     ======================================== */
  @media(max-width: 900px) {
    .proj-hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    
    .proj-hero-right {
      display: none;
    }
    
    .proj-hero-left {
      padding-bottom: 72px;
    }
    
    .meta-row {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    
    .process-steps::before {
      display: none;
    }
    
    .step {
      padding-top: 56px;
    }
  }
  
  @media(max-width: 600px) {
    .proj-hero-left {
      padding: 0 28px 56px;
    }
    
    .meta-row, .process-section, .features-strip {
      padding-left: 28px;
      padding-right: 28px;
    }
    
    .process-steps {
      grid-template-columns: 1fr;
    }
  }
  /* ========================================
   PROJECT MERIDIAN - CINEMATIC HERO
   ======================================== */
.proj-hero.meridian {
    background: linear-gradient(145deg, #1b2838 0%, #2c3e50 50%, #1a2a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Collaboration Visual - Abstract Network */
  .collab-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .18;
  }
  
  .collab-svg {
    width: min(700px, 90vw);
    height: min(500px, 70vh);
  }
  
  .proj-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 48px;
  }
  
  /* ========================================
     BEFORE/AFTER COMPARISON
     ======================================== */
  .compare-section {
    padding: 100px 48px;
  }
  
  .compare-header {
    margin-bottom: 64px;
  }
  
  .compare-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink);
    line-height: .95;
  }
  
  .compare-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: start;
  }
  
  .compare-col .compare-badge {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 24px;
  }
  
  .compare-col.before .compare-badge {
    background: rgba(212,68,68,.1);
    color: #d44;
  }
  
  .compare-col.after .compare-badge {
    background: var(--accent-dim);
    color: var(--accent);
  }
  
  .compare-col h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 20px;
  }
  
  .compare-list {
    list-style: none;
  }
  
  .compare-list li {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-line);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .compare-list li:last-child {
    border-bottom: none;
  }
  
  .compare-list .ci {
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .compare-col.before .ci {
    color: #d44;
  }
  
  .compare-col.after .ci {
    color: var(--accent);
  }
  
  .compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
  }
  
  .vs-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .vs-circle span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    color: #fff;
    letter-spacing: .05em;
  }
  
  /* ========================================
     FEATURE BANNER - FULL BLEED
     ======================================== */
  .feature-banner {
    background: var(--ink);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }
  
  .fb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
  }
  
  .fb-orb-1 {
    width: 350px;
    height: 350px;
    background: #6ec8a9;
    opacity: .1;
    top: -60px;
    right: -40px;
  }
  
  .fb-orb-2 {
    width: 250px;
    height: 250px;
    background: #c8a96e;
    opacity: .08;
    bottom: -50px;
    left: 10%;
  }
  
  .fb-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .fb-text .fb-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    color: var(--accent);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  
  .fb-text h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.8vw, 3rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  
  .fb-text h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .fb-text p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
  }
  
  .fb-text p + p {
    margin-top: 16px;
  }
  
  /* Collaboration Mockup */
  .collab-mock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .cm-user {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .cm-user-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cm-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .6rem;
    color: #fff;
  }
  
  .cm-avatar.a1 {
    background: var(--accent);
    opacity: .7;
  }
  
  .cm-avatar.a2 {
    background: #6ec8a9;
    opacity: .7;
  }
  
  .cm-avatar.a3 {
    background: #c86e8a;
    opacity: .6;
  }
  
  .cm-avatar.a4 {
    background: #6e9ec8;
    opacity: .6;
  }
  
  .cm-name {
    font-family: 'Space Mono', monospace;
    font-size: .5rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
  }
  
  .cm-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.08);
  }
  
  .cm-bar span {
    display: block;
    height: 100%;
    border-radius: 2px;
    background: var(--accent);
    opacity: .5;
  }
  
  .cm-user:nth-child(2) .cm-bar span {
    background: #6ec8a9;
  }
  
  .cm-user:nth-child(3) .cm-bar span {
    background: #c86e8a;
  }
  
  .cm-user:nth-child(4) .cm-bar span {
    background: #6e9ec8;
  }
  
  .cm-user.wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  
  .cm-user.wide .cm-bar {
    flex: 1;
  }
  
  /* ========================================
     TESTIMONIAL SECTION
     ======================================== */
  .testimonial {
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
  }
  
  .testimonial-label {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray);
  }
  
  .testimonial-content {
    border-left: 1px solid var(--light-line);
    padding-left: 48px;
  }
  
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  
  .testimonial-quote .hl {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-avatar span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    color: var(--accent);
  }
  
  .testimonial-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
  }
  
  .testimonial-role {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: var(--gray);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 3px;
  }
  
  /* ========================================
     RESPONSIVE - PROJECT MERIDIAN
     ======================================== */
  @media(max-width: 900px) {
    .compare-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .compare-vs {
      display: none;
    }
    
    .fb-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    
    .testimonial {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .testimonial-content {
      border-left: none;
      padding-left: 0;
    }
  }
  
  @media(max-width: 600px) {
    .proj-hero-content {
      padding: 0 28px;
    }
    
    .meta-row, .compare-section, .testimonial {
      padding-left: 28px;
      padding-right: 28px;
    }
    
    .feature-banner {
      padding-left: 28px;
      padding-right: 28px;
    }
    
    .collab-mock {
      grid-template-columns: 1fr;
    }
  }
  /* ========================================
   PROJECT NOVA - E-COMMERCE HERO
   ======================================== */
.proj-hero.nova {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 45%, #0f3460 100%);
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 100px;
  }
  
  /* Browser Mockup */
  .proj-mockup {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-55%);
    width: min(480px, 45vw);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(2px);
  }
  
  .mockup-bar {
    height: 36px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
  }
  
  .mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  
  .mockup-dot:nth-child(1) {
    background: #d44;
    opacity: .6;
  }
  
  .mockup-dot:nth-child(2) {
    background: #c8a96e;
    opacity: .5;
  }
  
  .mockup-dot:nth-child(3) {
    background: #6ec8a9;
    opacity: .5;
  }
  
  .mockup-body {
    height: 240px;
    background: rgba(255,255,255,.02);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 24px;
    width: 100%;
  }
  
  .mockup-card {
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    height: 80px;
    position: relative;
    overflow: hidden;
  }
  
  .mockup-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: .4;
  }
  
  .mockup-card:nth-child(2)::after {
    background: #6e9ec8;
  }
  
  .mockup-card:nth-child(3)::after {
    background: #c86e8a;
  }
  
  .proj-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 580px;
  }
  
  /* ========================================
     CHALLENGE / SOLUTION SECTION
     ======================================== */
  .cs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 100px 48px;
  }
  
  .cs-col {
    padding-right: 60px;
  }
  
  .cs-col:last-child {
    padding-right: 0;
    padding-left: 60px;
    border-left: 1px solid var(--light-line);
  }
  
  .cs-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    color: var(--accent);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .cs-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.1;
  }
  
  .cs-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.75;
  }
  
  .cs-text p {
    margin-bottom: 16px;
  }
  
  /* ========================================
     ARCHITECTURE SECTION
     ======================================== */
  .arch-section {
    background: var(--ink);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }
  
  .arch-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
  }
  
  .arch-orb-1 {
    width: 300px;
    height: 300px;
    background: #c8a96e;
    opacity: .08;
    top: -80px;
    right: -60px;
  }
  
  .arch-inner {
    position: relative;
    z-index: 2;
  }
  
  .arch-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
  }
  
  .arch-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: .95;
  }
  
  .arch-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .arch-layer {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 6px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
  }
  
  .arch-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: .4;
  }
  
  .arch-layer-label {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: var(--accent);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .arch-layer-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
  }
  
  .arch-layer-items {
    list-style: none;
  }
  
  .arch-layer-items li {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .08em;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  
  .arch-layer-items li:last-child {
    border-bottom: none;
  }
  
  /* ========================================
     METRICS SECTION
     ======================================== */
  .metrics-section {
    padding: 100px 48px;
  }
  
  .metrics-header {
    margin-bottom: 56px;
  }
  
  .metrics-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    line-height: .95;
  }
  
  .metrics-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  
  .metric-card {
    background: rgba(26,26,24,.04);
    padding: 44px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .3s;
  }
  
  .metric-card:hover {
    background: var(--accent-dim);
  }
  
  .metric-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .metric-num .accent {
    color: var(--accent);
  }
  
  .metric-label {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: var(--gray);
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  
  /* ========================================
     RESPONSIVE - PROJECT NOVA
     ======================================== */
  @media(max-width: 900px) {
    .proj-mockup {
      display: none;
    }
    
    .proj-hero {
      min-height: 60vh;
      padding-bottom: 72px;
    }
    
    .cs-section {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .cs-col:last-child {
      padding-left: 0;
      border-left: none;
    }
    
    .arch-grid {
      grid-template-columns: 1fr;
    }
    
    .metrics-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media(max-width: 600px) {
    .proj-hero {
      padding: 0 28px 56px;
    }
    
    .meta-row, .cs-section, .metrics-section {
      padding-left: 28px;
      padding-right: 28px;
    }
    
    .arch-section {
      padding-left: 28px;
      padding-right: 28px;
    }
  }
  /* ========================================
   WORK PAGE - FILTER BAR
   ======================================== */
.filter-bar {
    padding: 56px 48px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .filter-btn {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gray);
    background: transparent;
    border: 1px solid var(--light-line);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  
  /* ========================================
     PROJECT LIST - EDITORIAL LAYOUT
     ======================================== */
  .project-list {
    padding: 64px 48px 100px;
  }
  
  .project-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
    margin-bottom: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  }
  
  .project-feature:hover {
    transform: translateY(-4px);
  }
  
  /* Alternate: even projects flip layout */
  .project-feature.flip {
    direction: rtl;
  }
  
  .project-feature.flip > * {
    direction: ltr;
  }
  
  .pf-visual {
    position: relative;
    overflow: hidden;
  }
  
  .pf-visual .pf-bg {
    width: 100%;
    height: 100%;
    min-height: 420px;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  }
  
  .project-feature:hover .pf-bg {
    transform: scale(1.05);
  }
  
  /* Project-specific gradients */
  .pf-1 .pf-bg {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 45%, #0f3460 100%);
  }
  
  .pf-2 .pf-bg {
    background: linear-gradient(145deg, #2d1b2e 0%, #4a2040 55%, #1a1a2e 100%);
  }
  
  .pf-3 .pf-bg {
    background: linear-gradient(145deg, #1b2838 0%, #2c3e50 50%, #1a2a3a 100%);
  }
  
  .pf-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
  }
  
  .pf-1 .sh1 {
    width: 200px;
    height: 200px;
    background: #c8a96e;
    top: 15%;
    right: 10%;
    opacity: .3;
  }
  
  .pf-1 .sh2 {
    width: 140px;
    height: 140px;
    background: #6e9ec8;
    bottom: 20%;
    left: 15%;
    opacity: .25;
  }
  
  .pf-2 .sh1 {
    width: 180px;
    height: 180px;
    background: #c86e8a;
    top: 25%;
    left: 35%;
    opacity: .3;
  }
  
  .pf-2 .sh2 {
    width: 120px;
    height: 120px;
    background: #c8a96e;
    bottom: 10%;
    right: 25%;
    opacity: .25;
  }
  
  .pf-3 .sh1 {
    width: 220px;
    height: 220px;
    background: #6ec8a9;
    top: 5%;
    left: 55%;
    opacity: .28;
  }
  
  .pf-3 .sh2 {
    width: 150px;
    height: 150px;
    background: #c8a96e;
    bottom: 15%;
    left: 20%;
    opacity: .25;
  }
  
  /* Number watermark on visual */
  .pf-num {
    position: absolute;
    bottom: 20px;
    left: 28px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    color: rgba(255,255,255,.06);
    line-height: 1;
    z-index: 1;
  }
  
  .pf-info {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 52px;
    position: relative;
  }
  
  .pf-info::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--light-line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s, transform .4s cubic-bezier(.68,-.55,.265,1.55);
  }
  
  .project-feature:hover .pf-info::before {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(45deg);
  }
  
  .pf-tag {
    font-family: 'Space Mono', monospace;
    font-size: .58rem;
    color: var(--accent);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .pf-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .pf-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 28px;
  }
  
  .pf-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pf-tech {
    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    color: var(--gray);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(26,26,24,.05);
    padding: 6px 12px;
    border-radius: 3px;
  }
  
  /* Arrow icon in corner */
  .pf-arrow-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
  }
  
  .pf-arrow-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--ink);
    transition: stroke .3s;
  }
  
  .project-feature:hover .pf-arrow-icon svg {
    stroke: #fff;
  }
  
  /* ========================================
     RESPONSIVE - WORK PAGE
     ======================================== */
  @media(max-width: 850px) {
    .project-feature {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    
    .project-feature.flip {
      direction: ltr;
    }
    
    .pf-visual .pf-bg {
      min-height: 280px;
    }
    
    .pf-info {
      padding: 40px 36px;
    }
  }
  
  @media(max-width: 600px) {
    .filter-bar, .project-list {
      padding-left: 28px;
      padding-right: 28px;
    }
    
    .pf-visual .pf-bg {
      min-height: 220px;
    }
  }